{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/customers-delivery-location-schema.json", "title": "DeliveryLocation", "description": "Delivery location", "type": "object", "properties": { "Coordinates": { "$ref": "#/components/schemas/Coordinates" }, "Building": { "description": "Building", "type": "string", "example": "string" }, "Street": { "description": "Street", "type": "string", "example": "string" }, "Town": { "description": "Town", "type": "string", "example": "string" }, "PostCode": { "description": "Post code", "type": "string", "example": "string" }, "DeliveryInstructions": { "description": "Delivery instructions", "type": "string", "example": "string" }, "PrettyAddressString": { "description": "Formatted, pretty address string", "type": "string", "example": "string" } } }