Skip to content
Go to Micro

Properties

Get metadata properties by object type
client.Prism.Properties.List(ctx, objectType, params) (*PrismPropertyListResponse, error)
GET/v2/prism/{teamId}/{objectType}/properties
Get metadata properties
client.Prism.Properties.ListAll(ctx, params) (*PrismPropertyListAllResponse, error)
GET/v2/prism/{teamId}/properties
Create a property definition
client.Prism.Properties.New(ctx, objectType, params) (*PropertyDefinition, error)
POST/v2/prism/{teamId}/{objectType}/properties
Update a property definition
client.Prism.Properties.Update(ctx, objectType, propertyID, params) (*PropertyDefinition, error)
PATCH/v2/prism/{teamId}/{objectType}/properties/{propertyId}
Delete a property definition
client.Prism.Properties.Delete(ctx, objectType, propertyID, params) error
DELETE/v2/prism/{teamId}/{objectType}/properties/{propertyId}
ModelsExpand Collapse
type PropertyDefinition struct{…}

Definition for a single property on an object type. Definitions with team_id and crm_id null are shared defaults; values may be scoped to a team and/or list (crm).

ID string
formatuuid
Slug string
Type PropertyDefinitionType

Storage type for a property definition. Determines which per-type table holds the values, and which display formats the property can take.

One of the following:
const PropertyDefinitionTypeNum PropertyDefinitionType = "num"
const PropertyDefinitionTypeStr PropertyDefinitionType = "str"
const PropertyDefinitionTypeBool PropertyDefinitionType = "bool"
const PropertyDefinitionTypeDate PropertyDefinitionType = "date"
const PropertyDefinitionTypeText PropertyDefinitionType = "text"
const PropertyDefinitionTypeByte PropertyDefinitionType = "byte"
const PropertyDefinitionTypeSelectStr PropertyDefinitionType = "select_str"
const PropertyDefinitionTypeMultiStr PropertyDefinitionType = "multi_str"
const PropertyDefinitionTypeMultiselectStr PropertyDefinitionType = "multiselect_str"
const PropertyDefinitionTypeJsonb PropertyDefinitionType = "jsonb"
const PropertyDefinitionTypeRefIdentity PropertyDefinitionType = "ref_identity"
const PropertyDefinitionTypeRefUser PropertyDefinitionType = "ref_user"
const PropertyDefinitionTypeRefOrganization PropertyDefinitionType = "ref_organization"
const PropertyDefinitionTypeRefContact PropertyDefinitionType = "ref_contact"
const PropertyDefinitionTypeRefThread PropertyDefinitionType = "ref_thread"
const PropertyDefinitionTypeRefMessage PropertyDefinitionType = "ref_message"
const PropertyDefinitionTypeRefEvent PropertyDefinitionType = "ref_event"
const PropertyDefinitionTypeRefAccount PropertyDefinitionType = "ref_account"
const PropertyDefinitionTypeRefAIChatThread PropertyDefinitionType = "ref_ai_chat_thread"
const PropertyDefinitionTypeRefAIChatMessage PropertyDefinitionType = "ref_ai_chat_message"
const PropertyDefinitionTypeMultirefAIChatMessage PropertyDefinitionType = "multiref_ai_chat_message"
const PropertyDefinitionTypeMultirefAgentSite PropertyDefinitionType = "multiref_agent_site"
const PropertyDefinitionTypeMultirefAction PropertyDefinitionType = "multiref_action"
const PropertyDefinitionTypeMultirefComment PropertyDefinitionType = "multiref_comment"
const PropertyDefinitionTypeMultirefContact PropertyDefinitionType = "multiref_contact"
const PropertyDefinitionTypeMultirefLabel PropertyDefinitionType = "multiref_label"
const PropertyDefinitionTypeMultirefThread PropertyDefinitionType = "multiref_thread"
const PropertyDefinitionTypeMultirefMessages PropertyDefinitionType = "multiref_messages"
const PropertyDefinitionTypeMultirefDocument PropertyDefinitionType = "multiref_document"
const PropertyDefinitionTypeMultirefIdentity PropertyDefinitionType = "multiref_identity"
const PropertyDefinitionTypeMultirefOrganization PropertyDefinitionType = "multiref_organization"
const PropertyDefinitionTypeMultirefEngagement PropertyDefinitionType = "multiref_engagement"
const PropertyDefinitionTypeMultirefAttendee PropertyDefinitionType = "multiref_attendee"
const PropertyDefinitionTypeMultirefMeetingEntry PropertyDefinitionType = "multiref_meeting_entry"
const PropertyDefinitionTypeMultirefReadReceipt PropertyDefinitionType = "multiref_read_receipt"
const PropertyDefinitionTypeMultirefAccount PropertyDefinitionType = "multiref_account"
const PropertyDefinitionTypeMultirefSource PropertyDefinitionType = "multiref_source"
Alias PropertyDefinitionAliasOptional

Reserved alias naming this definition, or null. app_stage marks the list pipeline stage definition. Resolve stages by this field rather than by name, slug, or team_id: a superseded native status definition can coexist with the pipeline one and is otherwise identical on the wire.

CRMID stringOptional

Identifier of the list this definition is scoped to, when applicable.

formatuuid
ListID stringOptional

Canonical identifier of the list this definition is scoped to.

formatuuid
Locked boolOptional
Name stringOptional
Native boolOptional
Options []PropertyOptionOptional

Present only for select_str and multiselect_str types.

ID string
formatuuid
Slug string
ColorScheme stringOptional
DeprecatedCRMID stringOptional
formatuuid
Description stringOptional
Icon stringOptional
ListID stringOptional
formatuuid
OptionGroup stringOptional
SortIndex int64Optional
Value stringOptional

Display value for the option.

Required boolOptional

When true, records of this object type must carry a non-empty value for this property on create, and a patch may not clear it.

RoleID stringOptional

The property’s display format. Always populated on definitions created through this API; a null here means the definition predates that and will render as an unknown format until it is patched.

formatuuid
TeamID stringOptional
formatuuid
type PropertyDefinitionCreate struct{…}

New property definition. Check for an existing property first (GET the same path with term) and reuse it rather than defining a near-duplicate — writes address properties by slug, so two definitions sharing a slug leave no addressable winner. For select_str/multiselect_str types you may pre-seed choices via options.

Name string

Human-readable name, unique within the scope the definition is created in. A name already taken in that scope returns 409; the message names the existing definition’s id, slug and type so you can write to it instead.

Type PropertyDefinitionCreateType

Storage type for a property definition. Determines which per-type table holds the values, and which display formats the property can take.

One of the following:
const PropertyDefinitionCreateTypeNum PropertyDefinitionCreateType = "num"
const PropertyDefinitionCreateTypeStr PropertyDefinitionCreateType = "str"
const PropertyDefinitionCreateTypeBool PropertyDefinitionCreateType = "bool"
const PropertyDefinitionCreateTypeDate PropertyDefinitionCreateType = "date"
const PropertyDefinitionCreateTypeText PropertyDefinitionCreateType = "text"
const PropertyDefinitionCreateTypeByte PropertyDefinitionCreateType = "byte"
const PropertyDefinitionCreateTypeSelectStr PropertyDefinitionCreateType = "select_str"
const PropertyDefinitionCreateTypeMultiStr PropertyDefinitionCreateType = "multi_str"
const PropertyDefinitionCreateTypeMultiselectStr PropertyDefinitionCreateType = "multiselect_str"
const PropertyDefinitionCreateTypeJsonb PropertyDefinitionCreateType = "jsonb"
const PropertyDefinitionCreateTypeRefIdentity PropertyDefinitionCreateType = "ref_identity"
const PropertyDefinitionCreateTypeRefUser PropertyDefinitionCreateType = "ref_user"
const PropertyDefinitionCreateTypeRefOrganization PropertyDefinitionCreateType = "ref_organization"
const PropertyDefinitionCreateTypeRefContact PropertyDefinitionCreateType = "ref_contact"
const PropertyDefinitionCreateTypeRefThread PropertyDefinitionCreateType = "ref_thread"
const PropertyDefinitionCreateTypeRefMessage PropertyDefinitionCreateType = "ref_message"
const PropertyDefinitionCreateTypeRefEvent PropertyDefinitionCreateType = "ref_event"
const PropertyDefinitionCreateTypeRefAccount PropertyDefinitionCreateType = "ref_account"
const PropertyDefinitionCreateTypeRefAIChatThread PropertyDefinitionCreateType = "ref_ai_chat_thread"
const PropertyDefinitionCreateTypeRefAIChatMessage PropertyDefinitionCreateType = "ref_ai_chat_message"
const PropertyDefinitionCreateTypeMultirefAIChatMessage PropertyDefinitionCreateType = "multiref_ai_chat_message"
const PropertyDefinitionCreateTypeMultirefAgentSite PropertyDefinitionCreateType = "multiref_agent_site"
const PropertyDefinitionCreateTypeMultirefAction PropertyDefinitionCreateType = "multiref_action"
const PropertyDefinitionCreateTypeMultirefComment PropertyDefinitionCreateType = "multiref_comment"
const PropertyDefinitionCreateTypeMultirefContact PropertyDefinitionCreateType = "multiref_contact"
const PropertyDefinitionCreateTypeMultirefLabel PropertyDefinitionCreateType = "multiref_label"
const PropertyDefinitionCreateTypeMultirefThread PropertyDefinitionCreateType = "multiref_thread"
const PropertyDefinitionCreateTypeMultirefMessages PropertyDefinitionCreateType = "multiref_messages"
const PropertyDefinitionCreateTypeMultirefDocument PropertyDefinitionCreateType = "multiref_document"
const PropertyDefinitionCreateTypeMultirefIdentity PropertyDefinitionCreateType = "multiref_identity"
const PropertyDefinitionCreateTypeMultirefOrganization PropertyDefinitionCreateType = "multiref_organization"
const PropertyDefinitionCreateTypeMultirefEngagement PropertyDefinitionCreateType = "multiref_engagement"
const PropertyDefinitionCreateTypeMultirefAttendee PropertyDefinitionCreateType = "multiref_attendee"
const PropertyDefinitionCreateTypeMultirefMeetingEntry PropertyDefinitionCreateType = "multiref_meeting_entry"
const PropertyDefinitionCreateTypeMultirefReadReceipt PropertyDefinitionCreateType = "multiref_read_receipt"
const PropertyDefinitionCreateTypeMultirefAccount PropertyDefinitionCreateType = "multiref_account"
const PropertyDefinitionCreateTypeMultirefSource PropertyDefinitionCreateType = "multiref_source"
Icon stringOptional
ListID stringOptional

Scopes the definition to one list/app. Omit it only for a property that genuinely belongs to the whole workspace: a definition created without list_id is workspace-global and surfaces on every list of this object type.

formatuuid
Options []PropertyDefinitionCreateOptionOptional

Only honored when type is select_str or multiselect_str.

Value string
ColorScheme stringOptional
Description stringOptional
Icon stringOptional
OptionGroup stringOptional
Slug stringOptional
SortIndex int64Optional
Required boolOptional

When true, records must carry a non-empty value for this property on create. Defaults to false.

RoleID stringOptional

Optional display format for the property, drawn from the workspace’s property roles. Omit it and the canonical role for type is applied (plain text, plain number, checkbox). Supply it only to pick a narrower format such as email, URL or currency; the role’s data type must match type.

formatuuid
Slug stringOptional

URL-safe identifier. When omitted it defaults to a slugified name and is disambiguated with a numeric suffix on conflict. When supplied explicitly it is treated as part of your write contract and is never silently renamed — a collision returns 409 instead.

type PropertyDefinitionPatch struct{…}

Partial update of a property definition. Only name, icon, enabled, and required are editable. type identifies the per-type table to write.

Type PropertyDefinitionPatchType

Storage type for a property definition. Determines which per-type table holds the values, and which display formats the property can take.

One of the following:
const PropertyDefinitionPatchTypeNum PropertyDefinitionPatchType = "num"
const PropertyDefinitionPatchTypeStr PropertyDefinitionPatchType = "str"
const PropertyDefinitionPatchTypeBool PropertyDefinitionPatchType = "bool"
const PropertyDefinitionPatchTypeDate PropertyDefinitionPatchType = "date"
const PropertyDefinitionPatchTypeText PropertyDefinitionPatchType = "text"
const PropertyDefinitionPatchTypeByte PropertyDefinitionPatchType = "byte"
const PropertyDefinitionPatchTypeSelectStr PropertyDefinitionPatchType = "select_str"
const PropertyDefinitionPatchTypeMultiStr PropertyDefinitionPatchType = "multi_str"
const PropertyDefinitionPatchTypeMultiselectStr PropertyDefinitionPatchType = "multiselect_str"
const PropertyDefinitionPatchTypeJsonb PropertyDefinitionPatchType = "jsonb"
const PropertyDefinitionPatchTypeRefIdentity PropertyDefinitionPatchType = "ref_identity"
const PropertyDefinitionPatchTypeRefUser PropertyDefinitionPatchType = "ref_user"
const PropertyDefinitionPatchTypeRefOrganization PropertyDefinitionPatchType = "ref_organization"
const PropertyDefinitionPatchTypeRefContact PropertyDefinitionPatchType = "ref_contact"
const PropertyDefinitionPatchTypeRefThread PropertyDefinitionPatchType = "ref_thread"
const PropertyDefinitionPatchTypeRefMessage PropertyDefinitionPatchType = "ref_message"
const PropertyDefinitionPatchTypeRefEvent PropertyDefinitionPatchType = "ref_event"
const PropertyDefinitionPatchTypeRefAccount PropertyDefinitionPatchType = "ref_account"
const PropertyDefinitionPatchTypeRefAIChatThread PropertyDefinitionPatchType = "ref_ai_chat_thread"
const PropertyDefinitionPatchTypeRefAIChatMessage PropertyDefinitionPatchType = "ref_ai_chat_message"
const PropertyDefinitionPatchTypeMultirefAIChatMessage PropertyDefinitionPatchType = "multiref_ai_chat_message"
const PropertyDefinitionPatchTypeMultirefAgentSite PropertyDefinitionPatchType = "multiref_agent_site"
const PropertyDefinitionPatchTypeMultirefAction PropertyDefinitionPatchType = "multiref_action"
const PropertyDefinitionPatchTypeMultirefComment PropertyDefinitionPatchType = "multiref_comment"
const PropertyDefinitionPatchTypeMultirefContact PropertyDefinitionPatchType = "multiref_contact"
const PropertyDefinitionPatchTypeMultirefLabel PropertyDefinitionPatchType = "multiref_label"
const PropertyDefinitionPatchTypeMultirefThread PropertyDefinitionPatchType = "multiref_thread"
const PropertyDefinitionPatchTypeMultirefMessages PropertyDefinitionPatchType = "multiref_messages"
const PropertyDefinitionPatchTypeMultirefDocument PropertyDefinitionPatchType = "multiref_document"
const PropertyDefinitionPatchTypeMultirefIdentity PropertyDefinitionPatchType = "multiref_identity"
const PropertyDefinitionPatchTypeMultirefOrganization PropertyDefinitionPatchType = "multiref_organization"
const PropertyDefinitionPatchTypeMultirefEngagement PropertyDefinitionPatchType = "multiref_engagement"
const PropertyDefinitionPatchTypeMultirefAttendee PropertyDefinitionPatchType = "multiref_attendee"
const PropertyDefinitionPatchTypeMultirefMeetingEntry PropertyDefinitionPatchType = "multiref_meeting_entry"
const PropertyDefinitionPatchTypeMultirefReadReceipt PropertyDefinitionPatchType = "multiref_read_receipt"
const PropertyDefinitionPatchTypeMultirefAccount PropertyDefinitionPatchType = "multiref_account"
const PropertyDefinitionPatchTypeMultirefSource PropertyDefinitionPatchType = "multiref_source"
Enabled boolOptional
Icon stringOptional
ListID stringOptional
formatuuid
Name stringOptional
Required boolOptional

PropertiesOptions

Add an option to a select property
client.Prism.Properties.Options.New(ctx, objectType, propertyID, params) (*PropertyOption, error)
POST/v2/prism/{teamId}/{objectType}/properties/{propertyId}/options
Update a property option
client.Prism.Properties.Options.Update(ctx, objectType, propertyID, optionID, params) (*PropertyOption, error)
PATCH/v2/prism/{teamId}/{objectType}/properties/{propertyId}/options/{optionId}
Delete a property option
client.Prism.Properties.Options.Delete(ctx, objectType, propertyID, optionID, params) error
DELETE/v2/prism/{teamId}/{objectType}/properties/{propertyId}/options/{optionId}
ModelsExpand Collapse
type PropertyOption struct{…}

An enabled option for a select_str or multiselect_str property definition.

ID string
formatuuid
Slug string
ColorScheme stringOptional
DeprecatedCRMID stringOptional
formatuuid
Description stringOptional
Icon stringOptional
ListID stringOptional
formatuuid
OptionGroup stringOptional
SortIndex int64Optional
Value stringOptional

Display value for the option.

type PropertyOptionCreate struct{…}

New option for a select_str or multiselect_str property. type identifies the per-type option table to write.

Type PropertyOptionCreateType

Storage type for a property definition. Determines which per-type table holds the values, and which display formats the property can take.

One of the following:
const PropertyOptionCreateTypeNum PropertyOptionCreateType = "num"
const PropertyOptionCreateTypeStr PropertyOptionCreateType = "str"
const PropertyOptionCreateTypeBool PropertyOptionCreateType = "bool"
const PropertyOptionCreateTypeDate PropertyOptionCreateType = "date"
const PropertyOptionCreateTypeText PropertyOptionCreateType = "text"
const PropertyOptionCreateTypeByte PropertyOptionCreateType = "byte"
const PropertyOptionCreateTypeSelectStr PropertyOptionCreateType = "select_str"
const PropertyOptionCreateTypeMultiStr PropertyOptionCreateType = "multi_str"
const PropertyOptionCreateTypeMultiselectStr PropertyOptionCreateType = "multiselect_str"
const PropertyOptionCreateTypeJsonb PropertyOptionCreateType = "jsonb"
const PropertyOptionCreateTypeRefIdentity PropertyOptionCreateType = "ref_identity"
const PropertyOptionCreateTypeRefUser PropertyOptionCreateType = "ref_user"
const PropertyOptionCreateTypeRefOrganization PropertyOptionCreateType = "ref_organization"
const PropertyOptionCreateTypeRefContact PropertyOptionCreateType = "ref_contact"
const PropertyOptionCreateTypeRefThread PropertyOptionCreateType = "ref_thread"
const PropertyOptionCreateTypeRefMessage PropertyOptionCreateType = "ref_message"
const PropertyOptionCreateTypeRefEvent PropertyOptionCreateType = "ref_event"
const PropertyOptionCreateTypeRefAccount PropertyOptionCreateType = "ref_account"
const PropertyOptionCreateTypeRefAIChatThread PropertyOptionCreateType = "ref_ai_chat_thread"
const PropertyOptionCreateTypeRefAIChatMessage PropertyOptionCreateType = "ref_ai_chat_message"
const PropertyOptionCreateTypeMultirefAIChatMessage PropertyOptionCreateType = "multiref_ai_chat_message"
const PropertyOptionCreateTypeMultirefAgentSite PropertyOptionCreateType = "multiref_agent_site"
const PropertyOptionCreateTypeMultirefAction PropertyOptionCreateType = "multiref_action"
const PropertyOptionCreateTypeMultirefComment PropertyOptionCreateType = "multiref_comment"
const PropertyOptionCreateTypeMultirefContact PropertyOptionCreateType = "multiref_contact"
const PropertyOptionCreateTypeMultirefLabel PropertyOptionCreateType = "multiref_label"
const PropertyOptionCreateTypeMultirefThread PropertyOptionCreateType = "multiref_thread"
const PropertyOptionCreateTypeMultirefMessages PropertyOptionCreateType = "multiref_messages"
const PropertyOptionCreateTypeMultirefDocument PropertyOptionCreateType = "multiref_document"
const PropertyOptionCreateTypeMultirefIdentity PropertyOptionCreateType = "multiref_identity"
const PropertyOptionCreateTypeMultirefOrganization PropertyOptionCreateType = "multiref_organization"
const PropertyOptionCreateTypeMultirefEngagement PropertyOptionCreateType = "multiref_engagement"
const PropertyOptionCreateTypeMultirefAttendee PropertyOptionCreateType = "multiref_attendee"
const PropertyOptionCreateTypeMultirefMeetingEntry PropertyOptionCreateType = "multiref_meeting_entry"
const PropertyOptionCreateTypeMultirefReadReceipt PropertyOptionCreateType = "multiref_read_receipt"
const PropertyOptionCreateTypeMultirefAccount PropertyOptionCreateType = "multiref_account"
const PropertyOptionCreateTypeMultirefSource PropertyOptionCreateType = "multiref_source"
Value string

Display value for the option.

ColorScheme stringOptional
Description stringOptional
Icon stringOptional
ListID stringOptional

Scope the option to a specific list/app.

formatuuid
OptionGroup stringOptional
Slug stringOptional

URL-safe identifier. Defaults to a slugified value.

SortIndex int64Optional
type PropertyOptionPatch struct{…}

Partial update of a property option. type identifies the per-type option table to write.

Type PropertyOptionPatchType

Storage type for a property definition. Determines which per-type table holds the values, and which display formats the property can take.

One of the following:
const PropertyOptionPatchTypeNum PropertyOptionPatchType = "num"
const PropertyOptionPatchTypeStr PropertyOptionPatchType = "str"
const PropertyOptionPatchTypeBool PropertyOptionPatchType = "bool"
const PropertyOptionPatchTypeDate PropertyOptionPatchType = "date"
const PropertyOptionPatchTypeText PropertyOptionPatchType = "text"
const PropertyOptionPatchTypeByte PropertyOptionPatchType = "byte"
const PropertyOptionPatchTypeSelectStr PropertyOptionPatchType = "select_str"
const PropertyOptionPatchTypeMultiStr PropertyOptionPatchType = "multi_str"
const PropertyOptionPatchTypeMultiselectStr PropertyOptionPatchType = "multiselect_str"
const PropertyOptionPatchTypeJsonb PropertyOptionPatchType = "jsonb"
const PropertyOptionPatchTypeRefIdentity PropertyOptionPatchType = "ref_identity"
const PropertyOptionPatchTypeRefUser PropertyOptionPatchType = "ref_user"
const PropertyOptionPatchTypeRefOrganization PropertyOptionPatchType = "ref_organization"
const PropertyOptionPatchTypeRefContact PropertyOptionPatchType = "ref_contact"
const PropertyOptionPatchTypeRefThread PropertyOptionPatchType = "ref_thread"
const PropertyOptionPatchTypeRefMessage PropertyOptionPatchType = "ref_message"
const PropertyOptionPatchTypeRefEvent PropertyOptionPatchType = "ref_event"
const PropertyOptionPatchTypeRefAccount PropertyOptionPatchType = "ref_account"
const PropertyOptionPatchTypeRefAIChatThread PropertyOptionPatchType = "ref_ai_chat_thread"
const PropertyOptionPatchTypeRefAIChatMessage PropertyOptionPatchType = "ref_ai_chat_message"
const PropertyOptionPatchTypeMultirefAIChatMessage PropertyOptionPatchType = "multiref_ai_chat_message"
const PropertyOptionPatchTypeMultirefAgentSite PropertyOptionPatchType = "multiref_agent_site"
const PropertyOptionPatchTypeMultirefAction PropertyOptionPatchType = "multiref_action"
const PropertyOptionPatchTypeMultirefComment PropertyOptionPatchType = "multiref_comment"
const PropertyOptionPatchTypeMultirefContact PropertyOptionPatchType = "multiref_contact"
const PropertyOptionPatchTypeMultirefLabel PropertyOptionPatchType = "multiref_label"
const PropertyOptionPatchTypeMultirefThread PropertyOptionPatchType = "multiref_thread"
const PropertyOptionPatchTypeMultirefMessages PropertyOptionPatchType = "multiref_messages"
const PropertyOptionPatchTypeMultirefDocument PropertyOptionPatchType = "multiref_document"
const PropertyOptionPatchTypeMultirefIdentity PropertyOptionPatchType = "multiref_identity"
const PropertyOptionPatchTypeMultirefOrganization PropertyOptionPatchType = "multiref_organization"
const PropertyOptionPatchTypeMultirefEngagement PropertyOptionPatchType = "multiref_engagement"
const PropertyOptionPatchTypeMultirefAttendee PropertyOptionPatchType = "multiref_attendee"
const PropertyOptionPatchTypeMultirefMeetingEntry PropertyOptionPatchType = "multiref_meeting_entry"
const PropertyOptionPatchTypeMultirefReadReceipt PropertyOptionPatchType = "multiref_read_receipt"
const PropertyOptionPatchTypeMultirefAccount PropertyOptionPatchType = "multiref_account"
const PropertyOptionPatchTypeMultirefSource PropertyOptionPatchType = "multiref_source"
ColorScheme stringOptional
Description stringOptional
Enabled boolOptional
Icon stringOptional
ListID stringOptional
formatuuid
OptionGroup stringOptional
Slug stringOptional
SortIndex int64Optional
Value stringOptional