Amadeus · Schema

AutomatedProcessCommon

Provides information on ticketing arrangements and Amadeus Time Limits

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
code string queuing action to be taken
queue object Identifies the queue onto which PNR must be automatically placed upon process execution.
text string Free text
View JSON Schema on GitHub

JSON Schema

flight-create-orders-automated-process-common-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-create-orders-automated-process-common-schema.json",
  "title": "AutomatedProcessCommon",
  "description": "Provides information on ticketing arrangements and Amadeus Time Limits",
  "type": "object",
  "properties": {
    "code": {
      "type": "string",
      "description": "queuing action to be taken",
      "enum": [
        "IMMEDIATE",
        "DELAYED",
        "ERROR"
      ],
      "example": "IMMEDIATE"
    },
    "queue": {
      "title": "Queue",
      "type": "object",
      "description": "Identifies the queue onto which PNR must be automatically placed upon process execution.",
      "properties": {
        "number": {
          "type": "string",
          "example": 1
        },
        "category": {
          "type": "string",
          "example": "string-value"
        }
      }
    },
    "text": {
      "type": "string",
      "description": "Free text",
      "example": "string-value"
    }
  }
}