Type Alias ModelFieldConfig

ModelFieldConfig: {
    config: Record<string, unknown> | null;
    default: string | number | boolean | null;
    description: string;
    localizable: boolean;
    mutable: boolean;
    readOnly: boolean;
    required: boolean;
    unique: boolean;
    title: string;
    type: string;
    validation: string | null;
}

Type declaration

  • config: Record<string, unknown> | null
  • default: string | number | boolean | null
  • description: string
  • localizable: boolean
  • mutable: boolean
  • readOnly: boolean
  • required: boolean
  • unique: boolean
  • title: string
  • type: string
  • validation: string | null