AeroDataBox · JSON Structure

Aerodatabox Date Time Contract Structure

Descriptor date-time represented in both UTC and local timezones

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

DateTimeContract 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

utc local

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-date-time-contract-structure.json",
  "description": "Descriptor date-time represented in both UTC and local timezones",
  "type": "object",
  "properties": {
    "utc": {
      "type": "datetime",
      "description": "UTC-time"
    },
    "local": {
      "type": "datetime",
      "description": "Local time"
    }
  },
  "required": [
    "local",
    "utc"
  ],
  "additionalProperties": false,
  "name": "DateTimeContract"
}