Interface: NumberPropertyValidationSchema
Validation rules for numbers
Extends​
Properties​
integer?​
optional
integer:boolean
Defined in​
packages/firecms_core/src/types/properties.ts:667
lessThan?​
optional
lessThan:number
Defined in​
packages/firecms_core/src/types/properties.ts:663
max?​
optional
max:number
Defined in​
packages/firecms_core/src/types/properties.ts:662
min?​
optional
min:number
Defined in​
packages/firecms_core/src/types/properties.ts:661
moreThan?​
optional
moreThan:number
Defined in​
packages/firecms_core/src/types/properties.ts:664
negative?​
optional
negative:boolean
Defined in​
packages/firecms_core/src/types/properties.ts:666
positive?​
optional
positive:boolean
Defined in​
packages/firecms_core/src/types/properties.ts:665
required?​
optional
required:boolean
Is this field required
Inherited from​
PropertyValidationSchema
.required
Defined in​
packages/firecms_core/src/types/properties.ts:634
requiredMessage?​
optional
requiredMessage:string
Customize the required message when the property is not set
Inherited from​
PropertyValidationSchema
.requiredMessage
Defined in​
packages/firecms_core/src/types/properties.ts:639
unique?​
optional
unique:boolean
If the unique flag is set to true
, you can only have one entity in the
collection with this value.
Inherited from​
PropertyValidationSchema
.unique
Defined in​
packages/firecms_core/src/types/properties.ts:645
uniqueInArray?​
optional
uniqueInArray:boolean
If the uniqueInArray flag is set to true
, you can only have this value
once per entry in the parent ArrayProperty
. It has no effect if this
property is not a child of an ArrayProperty
. It works on direct
children of an ArrayProperty
or first level children of MapProperty
Inherited from​
PropertyValidationSchema
.uniqueInArray