ADS-B Exchange · Schema

OperationsResponse

Response envelope for the response containing multiple operations objects.

AviationFlight TrackingADS-BAircraftReal-TimeMilitaryMLAT

Properties

Name Type Description
items array List of operations objects
msg string Message indicating the status of the request overall.
totalItems integer The total number of operations in the database for the given query.
totalPages integer Total number of pages that client can iterate through.
pageNumber integer Current page number.
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.
View JSON Schema on GitHub

JSON Schema

operationsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OperationsResponse",
  "type": "object",
  "description": "Response envelope for the response containing multiple operations objects.",
  "additionalProperties": false,
  "properties": {
    "items": {
      "type": "array",
      "description": "List of operations objects",
      "items": {
        "$ref": "#/components/schemas/OperationsResponseItem"
      }
    },
    "msg": {
      "type": "string",
      "description": "Message indicating the status of the request overall."
    },
    "totalItems": {
      "type": "integer",
      "description": "The total number of operations in the database for the given query.",
      "format": "int32"
    },
    "totalPages": {
      "type": "integer",
      "description": "Total number of pages that client can iterate through.",
      "format": "int32"
    },
    "pageNumber": {
      "type": "integer",
      "description": "Current page number.",
      "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"
    }
  }
}