{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/ariba-guided-buying/refs/heads/main/json-structure/catalog-shop-api-shop-response-structure.json", "name": "ShopResponse", "description": "Response containing catalog items and facets for a shop.", "type": "object", "properties": { "shopID": { "type": "string", "description": "The unique identifier of the shop.", "example": "shop-12345" }, "items": { "type": "array", "description": "List of catalog items.", "items": { "$ref": "#/components/schemas/CatalogItem" } }, "facets": { "type": "array", "description": "List of filter facets.", "items": { "$ref": "#/components/schemas/Facet" } } } }