Amadeus Solutions · Schema

FlightEndPoint

departure or arrival information

AirlinesBookingFlightsGDSHotelsTravelTravel Technology
View JSON Schema on GitHub

JSON Schema

flight-offers-price-flight-end-point-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amadeus-solutions/refs/heads/main/json-schema/flight-offers-price-flight-end-point-schema.json",
  "title": "FlightEndPoint",
  "description": "departure or arrival information",
  "allOf": [
    {
      "$ref": "#/definitions/OriginalFlightEndPoint"
    },
    {
      "type": "object",
      "properties": {
        "at": {
          "description": "local date and time in [ISO8601](https://en.wikipedia.org/wiki/ISO_8601) YYYY-MM-ddThh:mm:ss format, e.g. 2017-02-10T20:40:00",
          "type": "string",
          "format": "date-time",
          "example": "2017-10-23T20:00:00"
        }
      }
    }
  ]
}