StandardizationRules
How raw values are cleaned into a single canonical form before comparison.
Create a standardization rule
Defines how an attribute's incoming values are normalised — a name to title case, a phone to international format, a date to a single calendar format, an address into its parts. The standardized form is what the platform stores and matches on, so this is where you decide the canonical shape of your data. A configuration the engine cannot execute is rejected when you create it. Requires `standardization-rule.create`.
List standardization rules
Returns standardization rules, filterable by entity type and attribute, in execution order. Requires `standardization-rule.read`.
Get a standardization rule
Returns one standardization rule and its configuration. Requires `standardization-rule.read`.
Update a standardization rule
Changes a rule's configuration or its position in the order rules run. Values already stored keep the form they were given; a rescore or reload applies the new rule. Requires `standardization-rule.update`.
Delete a standardization rule
Soft-deletes a standardization rule. New values arrive unnormalised from then on. Requires `standardization-rule.delete`.
Restore a deleted standardization rule
Reinstates a soft-deleted standardization rule. It applies again from the next value written. Requires `standardization-rule.update`.