{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PosStore", "description": "PosStore schema from Lunchbox POS API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-pos-store-schema.json", "type": "object", "properties": { "pos_store_id": { "type": "string", "example": "123456" }, "store_id": { "type": "string", "example": "123456" }, "name": { "type": "string", "example": "Sample" }, "contact": { "$ref": "#/components/schemas/PosContact" }, "location": { "$ref": "#/components/schemas/PosLocation" } } }