A property group represents a logical grouping of schema properties that can be used for display or informational purposes.

Export

PropertyGroup

interface PropertyGroup {
    description?: string;
    propertyNames?: string[];
    title?: string;
}

Properties

description?: string

The description of the property group.

Memberof

PropertyGroup

propertyNames?: string[]

The names of the schema properties for the property group.

Memberof

PropertyGroup

title?: string

The display label of the property group.

Memberof

PropertyGroup