Query
customAttributeSchemas
Retrieve custom attribute schemas to interpret customAttributes values. Returns at most 1000 rows; this field is not paginated.
Arguments
Object, input and enum types open in place — use + to reveal their fields. A type that is already open above the row stops at a ↻ circular marker, and anything nested past the depth limit links out to its own page instead.
- entity CustomAttributeSchemaEntity! required
- Entity type to get schemas for (ITEM or CREATOR).
- CREATOR
- Creator profile
- ITEM
- Item (archived social content)
Returns
Returns [CustomAttributeSchema!]! .
- aiGenerated Boolean!
- True when this attribute's value is produced by an AI Filter. For AI-generated attributes, an item's
aiFilterReasonsentry with the matchingkeycarries the model's explanation for the value. - key String!
- Key used in the customAttributes object.
- name String!
- Human-readable display name.
- options [CustomAttributeOption!]
- Available options for select-type attributes. When present, customAttributes values are option IDs that map to these options. When null, values are stored directly (text, numbers, dates, etc.).
- id ID!
- Unique identifier. Match this against values in customAttributes.
- name String!
- Human-readable display name.
- type CustomAttributeType!
- Custom attribute field type.
- BOOLEAN
- True/false value.
- BOOLEAN_LIST
- List of true/false values.
- DATE
- Calendar date value (ISO 8601, no time component).
- DATETIME
- Date-and-time value (ISO 8601).
- DATETIME_LIST
- List of date-and-time values (ISO 8601).
- DATE_LIST
- List of calendar date values (ISO 8601, no time component).
- Email address value.
- MULTIPLE_SELECT
- Multiple choices from a predefined option list; the stored value is an array of option IDs.
- MULTIPLE_SELECT_V2
- Multiple choices from a predefined option list; the stored value is an array of option IDs. Successor revision of MULTIPLE_SELECT with identical filtering behavior.
- NUMBER
- Numeric value.
- NUMBER_LIST
- List of numeric values.
- PHONE
- Phone number value.
- SHIPPING_ADDRESS
- Structured shipping address. Not filterable: conditions with this type are rejected with a validation error; read the value from the record's customAttributes instead.
- SINGLE_SELECT_V2
- Single choice from a predefined option list; the stored value is an option ID.
- SINGLE_SELECT_V3
- Single choice from a predefined option list; the stored value is an option ID. Successor revision of SINGLE_SELECT_V2 with identical filtering behavior.
- TEXT
- Free-form text value.
- TEXT_LIST
- List of free-form text values.
- URL
- URL value.