A property-scoped trigger applies to a specific property within an object. Only the property itself is in scope for the trigger. No other properties in the object should be accessed during execution of the trigger. Unless otherwise specified, the order of execution of property-scoped triggers is intentionally left undefined.
- onValidate
-
Validates a given property value after its retrieval from and prior to its storage in the data store. Throws an exception in the event of a validation failure.
- onRetrieve
-
Called after an object is retrieved from the data store. Typically used to transform a given property after its object's retrieval.
- onStore
-
Called prior to when an object is stored in the data store. Typically used to transform a given property prior to its object's storage.

