{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RetailerSummary", "title": "RetailerSummary", "type": "object", "description": "Retailer summary record", "properties": { "retailer_id": { "type": "string", "description": "Unique retailer identifier", "example": "ret-500123" }, "name": { "type": "string", "description": "Retailer name", "example": "Example Market" }, "channel": { "type": "string", "description": "Primary retail channel", "example": "grocery" }, "store_count": { "type": "integer", "description": "Number of store locations", "example": 450 }, "geographic_coverage": { "type": "string", "description": "Geographic coverage level", "example": "national" } } }