@makehq/sdk
    Preparing search index...

    Type Alias CustomPropertyStructureItem

    Represents one field definition within a custom property structure.

    type CustomPropertyStructureItem = {
        description?: string;
        id: number;
        label: string;
        name: string;
        options?: CustomPropertyStructureItemOption[] | null;
        required: boolean;
        type: CustomPropertyStructureItemType;
    }
    Index

    Properties

    description?: string

    Description shown in the Scenario properties tab of the Organization dashboard

    id: number

    Unique identifier of the structure item

    label: string

    Label shown to users in the scenario table header

    name: string

    Unique name of the item within its structure; used as the key in scenario data

    Available choices for 'dropdown'/'multiselect' items. Based on testing: create()/ update() always include this key (null for other types); list() omits the key entirely for other types instead of sending null.

    required: boolean

    Whether filling in this item is mandatory when setting scenario custom properties data

    Data type of the item