{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/ariba-guided-buying/refs/heads/main/json-schema/catalog-shop-api-items-response-schema.json", "title": "ItemsResponse", "description": "Response containing a list of catalog items.", "type": "object", "properties": { "items": { "type": "array", "description": "List of catalog items.", "items": { "$ref": "#/components/schemas/CatalogItem" } } } }