AeroDataBox · JSON Structure

Aerodatabox Feed Service Status Contract Structure

Feed service status contract. Read https://aerodatabox.com/data-coverage for context.

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

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

Properties

service status minAvailableLocalDate maxAvailableLocalDate

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-feed-service-status-contract-structure.json",
  "description": "Feed service status contract.\r\nRead https://aerodatabox.com/data-coverage for context.",
  "type": "object",
  "properties": {
    "service": {
      "$ref": "#/components/schemas/FeedServiceEnum"
    },
    "status": {
      "$ref": "#/components/schemas/FeedServiceStatus"
    },
    "minAvailableLocalDate": {
      "type": "datetime",
      "description": "Date of the oldest flight stored (based on scheduled local times)",
      "nullable": true,
      "deprecated": true
    },
    "maxAvailableLocalDate": {
      "type": "datetime",
      "description": "Date of the most recent flight stored (based on scheduled local times)",
      "nullable": true,
      "deprecated": true
    }
  },
  "required": [
    "service",
    "status"
  ],
  "additionalProperties": false,
  "name": "FeedServiceStatusContract"
}