Amadeus Solutions · JSON Structure

Seat Map Display Link Structure

Link schema

Type: object Properties: 3 Required: 1
AirlinesBookingFlightsGDSHotelsTravelTravel Technology

Link is a JSON Structure definition published by Amadeus Solutions, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

href methods count

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-structure/seat-map-display-link-structure.json",
  "name": "Link",
  "description": "Link schema",
  "type": "object",
  "properties": {
    "href": {
      "type": "uri"
    },
    "methods": {
      "type": "array",
      "items": {
        "type": "string",
        "enum": [
          "GET",
          "PUT",
          "DELETE",
          "POST",
          "PATCH"
        ]
      }
    },
    "count": {
      "type": "int32"
    }
  },
  "required": [
    "href"
  ],
  "example": {
    "href": "string"
  }
}