Amadeus · Schema

Link

Link schema from Seatmap Display

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

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

JSON Schema

seatmap-display-link-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/seatmap-display-link-schema.json",
  "title": "Link",
  "description": "Link schema from Seatmap Display",
  "type": "object",
  "properties": {
    "href": {
      "type": "string",
      "format": "uri",
      "example": "https://example.com/resource"
    },
    "methods": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "GET",
          "PUT",
          "DELETE",
          "POST",
          "PATCH"
        ]
      }
    },
    "count": {
      "type": "integer",
      "example": 1
    }
  },
  "required": [
    "href"
  ],
  "example": {
    "href": "string"
  }
}