form-schema-runtime - v1.0.0
    Preparing search index...

    Interface FormSchema

    Declarative schema passed to createForm.

    interface FormSchema {
        description?: string;
        fields: SchemaNode[];
        id: string;
        resetLabel?: string;
        submitLabel?: string;
        title?: string;
    }
    Index

    Properties

    description?: string

    Optional safe text rendered under the form title.

    fields: SchemaNode[]

    Top-level fields and sections rendered by the runtime.

    id: string

    Stable schema identifier used for generated DOM IDs.

    resetLabel?: string

    Reset button label. Defaults to Reset.

    submitLabel?: string

    Submit button label. Defaults to Submit.

    title?: string

    Optional form heading rendered above the fields.