interface JSONSchema {
    description?: string;
    enum?: string[];
    examples?: any[];
    items?: JSONSchema;
    properties?: {
        [key: string]: JSONSchema;
    };
    type?: string;
    x-train?: boolean;
}

Properties

description?: string
enum?: string[]
examples?: any[]
items?: JSONSchema
properties?: {
    [key: string]: JSONSchema;
}
type?: string
x-train?: boolean