AeroDataBox · JSON Structure

Aerodatabox Angle Structure

Angle schema from AeroDataBox API

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

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