Interface JJsonFormSchema

interface JJsonFormSchema {
    properties: {
        [key: string]: {
            format?: string;
            type: string;
        };
    };
    required: string[];
    type: "object";
}

Properties

properties: {
    [key: string]: {
        format?: string;
        type: string;
    };
}

Type declaration

  • [key: string]: {
        format?: string;
        type: string;
    }
    • Optional format?: string
    • type: string
required: string[]
type: "object"