{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-reservations/refs/heads/main/json-structure/hotel-booking-guests-structure.json", "name": "guests", "description": "guests schema", "type": "object", "properties": { "adults": { "type": "int32", "minimum": 1, "maximum": 9, "example": 2, "description": "number of adult guests (1-9) per room" }, "childAges": { "type": "array", "items": { "type": "int32", "minimum": 0, "maximum": 20 }, "description": "Comma separated list of ages of each child at the time of check-out from the hotel. If several children have the same age, the ages will be repeated." } } }