providerplaneai
    Preparing search index...

    Provider-agnostic JSON schema descriptor for structured OCR annotations.

    interface ClientOCRAnnotationSchema {
        description?: string;
        name: string;
        schema: Record<string, unknown>;
        strict?: boolean;
    }
    Index

    Properties

    description?: string

    Optional human-readable schema description.

    name: string

    Stable schema name required by providers that expose schema-enforced output modes.

    schema: Record<string, unknown>

    JSON Schema definition for the expected OCR annotation payload.

    strict?: boolean

    Whether the provider should enforce strict adherence to the schema.