AeroDataBox · Schema

ContinentContract

Continent data

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
code string Code
name string Name
View JSON Schema on GitHub

JSON Schema

aerodatabox-continentcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContinentContract",
  "title": "ContinentContract",
  "required": [
    "code"
  ],
  "type": "object",
  "properties": {
    "code": {
      "minLength": 1,
      "type": "string",
      "description": "Code"
    },
    "name": {
      "type": "string",
      "description": "Name",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "Continent data"
}