Amadeus · Schema

Delay_Prediction

Delay_Prediction schema from Flight Delay Prediction

TravelTravel TechnologyReservationsFlightsHotelsAirlinesHospitalityTours and ActivitiesCars and TransfersDestination ContentItinerary ManagementTrip PlanningArtificial IntelligenceMarket Insights

Properties

Name Type Description
type string the resource name (`prediction`)
subType string
id string item identifier
result string forecast description
probability string probability of the forecast (between 0 and 1)
View JSON Schema on GitHub

JSON Schema

flight-delay-prediction-delay-prediction-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-delay-prediction-delay-prediction-schema.json",
  "title": "Delay_Prediction",
  "description": "Delay_Prediction schema from Flight Delay Prediction",
  "properties": {
    "type": {
      "description": "the resource name (`prediction`)",
      "type": "string",
      "example": "string-value"
    },
    "subType": {
      "type": "string",
      "example": "trip-purpose"
    },
    "id": {
      "description": "item identifier",
      "type": "string",
      "readOnly": true,
      "example": "12345"
    },
    "result": {
      "description": "forecast description",
      "type": "string",
      "enum": [
        "LESS_THAN_30_MINUTES",
        "BETWEEN_30_AND_60_MINUTES",
        "BETWEEN_60_AND_120_MINUTES",
        "OVER_120_MINUTES_OR_CANCELLED"
      ],
      "example": "LESS_THAN_30_MINUTES"
    },
    "probability": {
      "description": "probability of the forecast (between 0 and 1)",
      "type": "string",
      "example": "string-value"
    }
  },
  "type": "object"
}