Amadeus Reservations · JSON Structure

Hotel Booking Guests Structure

guests schema

Type: object Properties: 2
BookingFlightsHotelsReservationsTravel

guests is a JSON Structure definition published by Amadeus Reservations, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

adults childAges

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$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."
    }
  }
}