AeroDataBox · JSON Structure

Aerodatabox Azimuth Structure

Azimuth schema from AeroDataBox API

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

Azimuth 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

deg rad

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-azimuth-structure.json",
  "description": "Azimuth schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "deg": {
      "maximum": 360,
      "minimum": 0,
      "type": "double",
      "description": "Angle in degrees (between `0` and `360`)"
    },
    "rad": {
      "maximum": 6.283185307179586,
      "minimum": 0,
      "type": "double",
      "description": "Angle in radians (`0` and `2 * Pi`)"
    }
  },
  "required": [
    "deg",
    "rad"
  ],
  "additionalProperties": false,
  "name": "Azimuth"
}