Amadeus · Schema

AircraftEquipment

information related to the aircraft

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
code string IATA aircraft code (http://www.flugzeuginfo.net/table_accodes_iata_en.php)
configurationVersion string aircraft Configuration Version code. Physical configuration, also called ACV code (aircraft type + fitted configuration)
View JSON Schema on GitHub

JSON Schema

flight-choice-prediction-aircraft-equipment-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-choice-prediction-aircraft-equipment-schema.json",
  "title": "AircraftEquipment",
  "description": "information related to the aircraft",
  "properties": {
    "code": {
      "type": "string",
      "description": "IATA aircraft code (http://www.flugzeuginfo.net/table_accodes_iata_en.php)\n",
      "pattern": "[a-zA-Z0-9]{3}",
      "example": "318"
    },
    "configurationVersion": {
      "type": "string",
      "description": "aircraft Configuration Version code. Physical configuration, also called ACV code (aircraft type + fitted configuration)\n",
      "pattern": "[A-Z0-9]{3}",
      "example": "2C1"
    }
  },
  "type": "object"
}