Interface IOutlineSchemaFormat

Interface representing a format definition using a JSON schema. Specifies the type and the associated JSON schema object for validation. Used when the outline format is defined by a complete JSON schema.

interface IOutlineSchemaFormat {
    json_schema: object;
    type: string;
}

Properties

Properties

json_schema: object

The JSON schema object defining the structure and validation rules.

type: string

The type of the outline format (e.g., "json_schema").