Optional
Readonly
autoIf the value should be created automatically. Used in date creation.
Optional
Readonly
choicesPossible limiting choices of what the property can be.
Optional
Readonly
defaultA default value if one is never given.
Optional
Readonly
fetcherIf you are using ModelReferences, this is required. A fetcher used for getting model references. This configuration item is used within the AdvancedModelReferenceProperty and any other property that is lazy loading (atomically) models.
Optional
Readonly
isDetermines if this value needs to go through denormalization.
Optional
Readonly
lazyA lazy loading method, which will only run when the value is actually retrieved. IMPORTANT: Do not include promises as part of this because they are not thread safe.
The current value
The models current data
Optional
Readonly
lazyA thread safe (Atomic) version of lazyLoadMethod. Use this for all lazy loadings that requires Promises.
The current value
The models current data.
Optional
Readonly
maxThe maximum length of the value. (Drives validation)
Optional
Readonly
maxThe maximum size of the value. (Drives validation)
Optional
Readonly
minThe minimum length of the value. (Drives validation)
Optional
Readonly
minThe minimum size of the value. (Drives validation)
Optional
Readonly
typeA type override to override the property type of a property.
Optional
Readonly
validatorsAdditional validators for the property.
Optional
Readonly
valueThe value of the property (if provided)
Optional
Readonly
valueAn optional function that can select a "part" of the value to return.
Standard configuration options for properties.