interface FormSchemaProperty {
    oneOf?: {
        const: null | string | number;
        title?: string;
    }[];
    type: FORMSCHEMA_TYPES | FORMSCHEMA_TYPES[];
}

Hierarchy

  • Pick<JsonSchema7, "format" | "title" | "default" | "minimum" | "maximum">
    • FormSchemaProperty

Properties

Properties

oneOf?: {
    const: null | string | number;
    title?: string;
}[]

Type declaration

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