Skip to content

ObjectConstraints

Defined in: core/field/types/Object.ts:16

Object-specific constraints

  • BaseConstraints

optional enum: string[] | Record<string, any>[]

Defined in: core/field/types/Object.ts:36

Restrict values to a specified set of objects Serialized as JSON strings or object literals


optional jsonSchema: Record<string, any>

Defined in: core/field/types/Object.ts:30

JSON Schema object for validating the object structure and properties


optional maxLength: number

Defined in: core/field/types/Object.ts:25

Maximum number of properties


optional minLength: number

Defined in: core/field/types/Object.ts:20

Minimum number of properties


optional required: boolean

Defined in: core/field/types/Base.ts:52

Indicates if field is allowed to be null/empty

BaseConstraints.required


optional unique: boolean

Defined in: core/field/types/Base.ts:57

Indicates if values must be unique within the column

BaseConstraints.unique