Amadeus · Schema

meta

Meta information about the returned object(s) in "data"

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
count integer Total number of object(s) retrieved
links object Links related to the returned object(s)
View JSON Schema on GitHub

JSON Schema

airport-routes-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/airport-routes-meta-schema.json",
  "title": "meta",
  "description": "Meta information about the returned object(s) in \"data\"",
  "type": "object",
  "properties": {
    "count": {
      "type": "integer",
      "description": "Total number of object(s) retrieved",
      "format": "int64",
      "example": 1
    },
    "links": {
      "type": "object",
      "description": "Links related to the returned object(s)",
      "properties": {
        "self": {
          "type": "string",
          "description": "Link to the same page.",
          "format": "uri",
          "example": "https://example.com/resource"
        }
      }
    }
  }
}