Amadeus · Schema

Links

Links schema from Points of Interest

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
href string
methods array
View JSON Schema on GitHub

JSON Schema

points-of-interest-links-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/points-of-interest-links-schema.json",
  "title": "Links",
  "description": "Links schema from Points of Interest",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri",
      "example": "https://example.com/resource"
    },
    "methods": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "GET",
          "PUT",
          "DELETE",
          "POST",
          "PATCH"
        ]
      }
    }
  },
  "example": {
    "href": "string"
  },
  "type": "object"
}