{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Address", "description": "A mailing address for an employee.", "$id": "https://raw.githubusercontent.com/api-evangelist/spoton/refs/heads/main/json-schema/restaurant-pos-export-address-schema.json", "type": "object", "properties": { "street1": { "type": "string", "description": "First line of the street address." }, "street2": { "type": "string", "description": "Second line of the street address." }, "city": { "type": "string", "description": "City." }, "state": { "type": "string", "description": "State or province." }, "zip": { "type": "string", "description": "Postal code." }, "phone": { "type": "string", "description": "Phone number." } } }