{ "$schema": "https://json-structure.org/draft/v0/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-address-structure.json", "title": "Address", "description": "Address information", "type": "object", "properties": { "lines": { "type": "array", "description": "Line 1 = Street address, Line 2 = Apartment, suite, unit, building, floor, etc" }, "postalCode": { "type": "string", "description": "Example: 74130" }, "countryCode": { "type": "string", "description": "ISO 3166-1 country code" }, "cityName": { "type": "string", "description": "Full city name. Example: Dublin" }, "stateCode": { "type": "string", "description": "State code (two character standard IATA state code)" } }, "required": [ "postalCode", "countryCode", "cityName" ] }