{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "LocationDto", "description": "LocationDto schema from Quandoo Public Partner API", "$id": "https://raw.githubusercontent.com/api-evangelist/quandoo/refs/heads/main/json-schema/quandoo-public-partner-api-location-dto-schema.json", "type": "object", "properties": { "coordinates": { "type": "object", "properties": { "latitude": { "type": "number", "format": "double" }, "longitude": { "type": "number", "format": "double" } } }, "address": { "type": "object", "properties": { "street": { "type": "string" }, "number": { "type": "string" }, "zipcode": { "type": "string" }, "city": { "type": "string" }, "country": { "type": "string" }, "district": { "type": "string" } } } } }