Amadeus · Schema

Collection_Meta

Collection_Meta schema from Flight Offers Search

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
count integer
oneWayCombinations array
View JSON Schema on GitHub

JSON Schema

flight-offers-search-collection-meta-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-offers-search-collection-meta-schema.json",
  "title": "Collection_Meta",
  "description": "Collection_Meta schema from Flight Offers Search",
  "properties": {
    "count": {
      "type": "integer",
      "example": 1
    },
    "oneWayCombinations": {
      "type": "array",
      "items": {
        "title": "oneWayCombinations",
        "properties": {
          "originDestinationId": {
            "type": "string",
            "example": "12345"
          },
          "flightOfferIds": {
            "type": "array",
            "items": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "type": "object"
}