ADS-B Exchange · Schema
TraceNotFoundResponse
AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT
Properties
| Name | Type | Description |
|---|---|---|
| msg | string | Message indicating the status of the request overall. |
| details | string | Message clarifying the unsuccessful response. |
| status | integer | Status code indicating the status of the request overall. |
| ctime | integer | Unix timestamp of when the underlying data was last updated. |
| now | integer | Unix timestamp of the current UTC time on the server. |
| ptime | integer | Time taken on API server to process the request, in milliseconds. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "TraceNotFoundResponse",
"type": "object",
"additionalProperties": false,
"properties": {
"msg": {
"type": "string",
"description": "Message indicating the status of the request overall."
},
"details": {
"type": "string",
"description": "Message clarifying the unsuccessful response.",
"nullable": true
},
"status": {
"type": "integer",
"description": "Status code indicating the status of the request overall.",
"format": "int32"
},
"ctime": {
"type": "integer",
"description": "Unix timestamp of when the underlying data was last updated.",
"format": "int64"
},
"now": {
"type": "integer",
"description": "Unix timestamp of the current UTC time on the server.",
"format": "int64"
},
"ptime": {
"type": "integer",
"description": "Time taken on API server to process the request, in milliseconds.",
"format": "int64"
}
}
}