changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "count": {
+ "description": "Number of arrival flights found",
+ "type": "number"
+ },
+ "flights": {
+ "items": {
+ "properties": {
+ "arrival_airport": {
+ "description": "Estimated arrival airport ICAO code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "callsign": {
+ "description": "Flight callsign (trimmed)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "departure_airport": {
+ "description": "Estimated departure airport ICAO code",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "first_seen": {
+ "description": "Unix timestamp of first radar contact",
+ "type": "number"
+ },
+ "icao24": {
+ "description": "ICAO24 transponder address",
+ "type": "string"
+ },
+ "last_seen": {
+ "description": "Unix timestamp of last radar contact",
+ "type": "number"
+ }
+ },
+ "required": [
+ "icao24",
+ "callsign",
+ "first_seen",
+ "last_seen",
+ "departure_airport",
+ "arrival_airport"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "count",
+ "flights"
+ ],
+ "type": "object"
+}