ADS-B Exchange · Schema

TraceResponse

Model used to represent a trace response example.

AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT

Properties

Name Type Description
icao string
timestamp number
trace array
View JSON Schema on GitHub

JSON Schema

traceresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TraceResponse",
  "type": "object",
  "description": "Model used to represent a trace response example.",
  "additionalProperties": false,
  "properties": {
    "icao": {
      "type": "string"
    },
    "timestamp": {
      "type": "number",
      "format": "double"
    },
    "trace": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {}
      }
    }
  }
}