{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetCatalogItemCategoriesRelationshipsResponseCollection", "title": "GetCatalogItemCategoriesRelationshipsResponseCollection", "type": "object", "properties": { "data": { "type": "array", "items": { "type": "object", "required": [ "type", "id" ], "properties": { "type": { "$ref": "#/components/schemas/CatalogCategoryEnum" }, "id": { "description": "The catalog category ID is a compound ID (string), with format: `{integration}:::{catalog}:::{external_id}`. Currently, the only supported integration type is `$custom`, and the only supported catalog is `$default`.", "type": "string", "example": "$custom:::$default:::SAMPLE-DATA-CATEGORY-APPAREL" } } } }, "links": { "$ref": "#/components/schemas/CollectionLinks" } }, "required": [ "data" ] }