interface FormSchemaProperty {
    default?: any;
    format?: string;
    maximum?: number;
    minimum?: number;
    oneOf?: {
        const: null | string | number;
        title?: string;
    }[];
    title?: string;
    type: FORMSCHEMA_TYPES | FORMSCHEMA_TYPES[];
}

Properties

default?: any
format?: string
maximum?: number
minimum?: number
oneOf?: {
    const: null | string | number;
    title?: string;
}[]

Type declaration

  • const: null | string | number
  • Optional title?: string
title?: string