AeroDataBox · Schema

AirportLocalTimeContract

Information about the local time at an airport

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
time object
timeZoneId string Timezone ID of the airport (Olson format)
View JSON Schema on GitHub

JSON Schema

aerodatabox-airportlocaltimecontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AirportLocalTimeContract",
  "title": "AirportLocalTimeContract",
  "required": [
    "time",
    "timeZoneId"
  ],
  "type": "object",
  "properties": {
    "time": {
      "$ref": "#/components/schemas/DateTimeContract"
    },
    "timeZoneId": {
      "minLength": 1,
      "type": "string",
      "description": "Timezone ID of the airport (Olson format)"
    }
  },
  "additionalProperties": false,
  "description": "Information about the local time at an airport"
}