Amadeus · Schema

Coordinates

Coordinates schema from Seatmap Display

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
x integer coordinate for the Length
y integer coordinate for the Width
View JSON Schema on GitHub

JSON Schema

seatmap-display-coordinates-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-coordinates-schema.json",
  "title": "Coordinates",
  "description": "Coordinates schema from Seatmap Display",
  "type": "object",
  "properties": {
    "x": {
      "type": "integer",
      "description": "coordinate for the Length",
      "example": 1
    },
    "y": {
      "type": "integer",
      "description": "coordinate for the Width",
      "example": 1
    }
  }
}