AeroDataBox · JSON Structure

Aerodatabox Pressure Structure

Pressure schema from AeroDataBox API

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

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

Properties

hPa inHg mmHg

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-pressure-structure.json",
  "description": "Pressure schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "hPa": {
      "type": "double",
      "description": "Pressure in hectopascals"
    },
    "inHg": {
      "type": "double",
      "description": "Pressure in inches mercury"
    },
    "mmHg": {
      "type": "double",
      "description": "Pressure in millimeters mercury"
    }
  },
  "required": [
    "hPa",
    "inHg",
    "mmHg"
  ],
  "additionalProperties": false,
  "name": "Pressure"
}