{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "PosOrderLocation", "description": "PosOrderLocation schema from Lunchbox POS API", "$id": "https://raw.githubusercontent.com/api-evangelist/lunchbox/refs/heads/main/json-schema/pos-pos-order-location-schema.json", "type": "object", "properties": { "address1": { "type": "string", "example": "1216 Broadway" }, "address2": { "type": "string", "nullable": true, "example": "string" }, "address3": { "type": "string", "nullable": true, "example": "string" }, "city": { "type": "string", "example": "New York" }, "statecode": { "type": "string", "example": "NY" }, "zipcode": { "type": "string", "example": "10001" }, "province": { "type": "string", "nullable": true, "example": "string" }, "country": { "type": "string", "example": "US" }, "phone": { "type": "string", "nullable": true, "example": "2125551411" }, "instructions": { "type": "string", "example": "string" } } }