{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/bluecart/refs/heads/main/json-structure/bluecart-catalog-update-structure.json", "name": "CatalogUpdate", "description": "Payload for updating a catalog.", "type": "object", "properties": { "catalogName": { "type": "string", "example": "Premium Wines" }, "enabled": { "type": "boolean", "example": true }, "products": { "type": "array", "items": { "type": "object", "additionalProperties": true } }, "customers": { "type": "array", "items": { "type": "object", "additionalProperties": true } } } }