schema-components - v3.7.0
    Preparing search index...

    Interface SchemaMeta

    Metadata attached to schemas via .meta() or passed as props to <SchemaComponent>. Every field is also available as a top-level prop on <SchemaComponent> (with TypeScript-enforced exclusivity between prop and meta).

    interface SchemaMeta {
        readOnly?: boolean;
        writeOnly?: boolean;
        description?: string;
        title?: string;
        deprecated?: boolean;
        component?: string;
        order?: number;
        [key: string]: unknown;
    }

    Indexable

    • [key: string]: unknown

      Arbitrary UI hints passed through to theme adapters.

    Index

    Properties

    readOnly?: boolean
    writeOnly?: boolean
    description?: string
    title?: string
    deprecated?: boolean
    component?: string

    Component hint — resolved before theme adapter.

    order?: number

    Sort order for object fields. Lower values render first.