Amadeus · JSON Structure

Hotel Booking V1 Name Structure

Guest Name

Type: object Properties: 3 Required: 2
TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Hotel Booking V1 Name Structure is a JSON Structure definition published by Amadeus, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/draft/v0/schema meta-schema.

Properties

title firstName lastName

Meta-schema: https://json-structure.org/draft/v0/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/v0/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-structure/hotel-booking-v1-name-structure.json",
  "title": "Name",
  "description": "Guest Name",
  "type": "object",
  "properties": {
    "title": {
      "type": "string",
      "description": "title/gender of room guest"
    },
    "firstName": {
      "type": "string",
      "description": "first name (and middle name) of room guest"
    },
    "lastName": {
      "type": "string",
      "description": "last name of room guest"
    }
  },
  "required": [
    "firstName",
    "lastName"
  ]
}