AeroDataBox · JSON Structure

Aerodatabox Resource Contract Structure

Single media resource data

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

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

Properties

url webUrl author title description license htmlAttributions

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-resource-contract-structure.json",
  "description": "Single media resource data",
  "type": "object",
  "properties": {
    "url": {
      "minLength": 1,
      "type": "string",
      "description": "URL of the resource"
    },
    "webUrl": {
      "type": "string",
      "description": "URL of web-page containing the resource",
      "nullable": true
    },
    "author": {
      "type": "string",
      "description": "Author name of the resource",
      "nullable": true
    },
    "title": {
      "type": "string",
      "description": "Title of the resource",
      "nullable": true
    },
    "description": {
      "type": "string",
      "description": "Description of the resource",
      "nullable": true
    },
    "license": {
      "$ref": "#/components/schemas/LicenseType"
    },
    "htmlAttributions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Attributions maintaining copyright, ownership and other legal information adjusted for displaying\r\nas HTML. Each element represent one line.",
      "nullable": true
    }
  },
  "required": [
    "license",
    "url"
  ],
  "additionalProperties": false,
  "name": "ResourceContract"
}