A field within a field configuration.

interface FieldConfigurationItem {
    description?: string;
    id: string;
    isHidden?: boolean;
    isRequired?: boolean;
    renderer?: string;
}

Properties

description?: string

The description of the field within the field configuration.

id: string

The ID of the field within the field configuration.

isHidden?: boolean

Whether the field is hidden in the field configuration.

isRequired?: boolean

Whether the field is required in the field configuration.

renderer?: string

The renderer type for the field within the field configuration.