AeroDataBox · JSON Structure

Aerodatabox Speed Structure

Speed schema from AeroDataBox API

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

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

Properties

kt kmPerHour miPerHour meterPerSecond

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-speed-structure.json",
  "description": "Speed schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "kt": {
      "type": "double",
      "description": "Speed in knots"
    },
    "kmPerHour": {
      "type": "double",
      "description": "Speed in km per hour"
    },
    "miPerHour": {
      "type": "double",
      "description": "Speed in miles per hour"
    },
    "meterPerSecond": {
      "type": "double",
      "description": "Speed in meters per second"
    }
  },
  "required": [
    "kmPerHour",
    "kt",
    "meterPerSecond",
    "miPerHour"
  ],
  "additionalProperties": false,
  "name": "Speed"
}