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

    Interface SectionSchema

    Section/group node used to organize fields without creating a value.

    interface SectionSchema {
        description?: string;
        fields: SchemaNode[];
        id?: string;
        title: string;
        type: "section";
        visibleWhen?: VisibilityRule;
    }

    Hierarchy

    • BaseSchemaNode
      • SectionSchema
    Index

    Properties

    description?: string

    Optional explanatory text rendered safely below the section title.

    fields: SchemaNode[]

    Child fields or nested sections contained by this section.

    id?: string

    Optional stable identifier used when deriving DOM IDs and schema paths.

    title: string

    Visible section heading rendered as a fieldset legend.

    type: "section"

    Discriminator used by the runtime to render a non-value grouping node.

    visibleWhen?: VisibilityRule

    Declarative condition that controls whether this node is currently visible.