Amadeus · Schema

Parameter

Parameter schema from Flight Check-in Links

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
description string parameter descriptive information
type string type of the parameter
format string format of the parameter
View JSON Schema on GitHub

JSON Schema

flight-checkin-links-parameter-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/flight-checkin-links-parameter-schema.json",
  "title": "Parameter",
  "description": "Parameter schema from Flight Check-in Links",
  "properties": {
    "description": {
      "description": "parameter descriptive information",
      "type": "string",
      "example": "Passenger last name"
    },
    "type": {
      "description": "type of the parameter",
      "type": "string",
      "example": "string"
    },
    "format": {
      "description": "format of the parameter",
      "type": "string",
      "example": "([a-zA-Z]|[0-9]){6}"
    }
  },
  "required": [
    "type"
  ],
  "type": "object"
}