AeroDataBox · JSON Structure

Aerodatabox Airport Local Time Contract Structure

Information about the local time at an airport

Type: object Properties: 2 Required: 2
AviationFlightsAerospaceFlight DataAirport Data

AirportLocalTimeContract is a JSON Structure definition published by AeroDataBox, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

time timeZoneId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-structure/aerodatabox-airport-local-time-contract-structure.json",
  "description": "Information about the local time at an airport",
  "type": "object",
  "properties": {
    "time": {
      "$ref": "#/components/schemas/DateTimeContract"
    },
    "timeZoneId": {
      "minLength": 1,
      "type": "string",
      "description": "Timezone ID of the airport (Olson format)"
    }
  },
  "required": [
    "time",
    "timeZoneId"
  ],
  "additionalProperties": false,
  "name": "AirportLocalTimeContract"
}