Amadeus · Schema

BaseName

description of the name of a physical person

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
firstName string First name.
lastName string Last name.
middleName string Middle name(s), for example "Lee" in "John Lee Smith".
View JSON Schema on GitHub

JSON Schema

flight-order-management-base-name-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus/refs/heads/main/json-schema/flight-order-management-base-name-schema.json",
  "title": "BaseName",
  "description": "description of the name of a physical person",
  "type": "object",
  "properties": {
    "firstName": {
      "description": "First name.",
      "type": "string",
      "example": "Marie"
    },
    "lastName": {
      "description": "Last name.",
      "type": "string",
      "example": "Dupont"
    },
    "middleName": {
      "description": "Middle name(s), for example \"Lee\" in \"John Lee Smith\".",
      "type": "string",
      "example": "Sample Name"
    }
  }
}