changedOutput schema / (root)
Previous value: -{
- "properties": {
- "begin": {
- "description": "Start of time interval as ISO 8601 timestamp",
- "type": "string"
- },
- "count": {
- "description": "Number of flights for this aircraft",
- "type": "number"
- },
- "end": {
- "description": "End of time interval as ISO 8601 timestamp",
- "type": "string"
- },
- "flights": {
- "description": "Flights for the specified aircraft",
- "items": {
- "properties": {
- "arrival_airport": {
- "description": "Estimated arrival airport code",
- "type": [
- "string",
- "null"
- ]
- },
- "callsign": {
- "description": "Aircraft callsign (trimmed)",
- "type": [
- "string",
- "null"
- ]
- },
- "departure_airport": {
- "description": "Estimated departure airport code",
- "type": [
- "string",
- "null"
- ]
- },
- "first_seen": {
- "description": "First sighting time as ISO 8601 timestamp",
- "type": [
- "string",
- "null"
- ]
- },
- "icao24": {
- "description": "ICAO24 transponder address",
- "type": [
- "string",
- "null"
- ]
- },
- "last_seen": {
- "description": "Last sighting time as ISO 8601 timestamp",
- "type": [
- "string",
- "null"
- ]
- }
- },
- "type": "object"
- },
- "type": "array"
- },
- "icao24": {
- "description": "ICAO24 transponder address (lowercase)",
- "type": "string"
- }
- },
- "required": [
- "icao24",
- "begin",
- "end",
- "count",
- "flights"
- ],
- "type": "object"
-}New value: +null