{ "$schema": "https://json-structure.org/draft/v0/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-v1-contact-structure.json", "title": "Contact", "description": "Contact Details", "type": "object", "properties": { "phone": { "type": "string", "description": "Phone Number in standard E.123(https://en.wikipedia.org/wiki/E.123)" }, "email": { "type": "string", "format": "email", "description": "Email Address" } }, "required": [ "phone", "email" ] }