AeroDataBox · JSON Structure

Aerodatabox String Collection Contract Structure

StringCollectionContract schema from AeroDataBox API

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

StringCollectionContract 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

count items

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-string-collection-contract-structure.json",
  "description": "StringCollectionContract schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "count": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "The number of items in the collection",
      "readOnly": true
    },
    "items": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The collection of items"
    }
  },
  "required": [
    "count",
    "items"
  ],
  "additionalProperties": false,
  "name": "StringCollectionContract"
}