Interface JFormSchema

interface JFormSchema {
    $id: string;
    $schema: "http://json-schema.org/draft-07/schema#";
    definitions: {};
    properties: JFormSchemaProperties;
    required: string[];
    type: "object";
}

Properties

$id: string
$schema: "http://json-schema.org/draft-07/schema#"
definitions: {}

Type declaration

    required: string[]
    type: "object"