AeroDataBox · JSON Structure

Aerodatabox Aircraft Contract Paged Collection Contract Structure

AircraftContractPagedCollectionContract schema from AeroDataBox API

Type: object Properties: 6 Required: 6
AviationFlightsAerospaceFlight DataAirport Data

AircraftContractPagedCollectionContract is a JSON Structure definition published by AeroDataBox, describing 6 properties, of which 6 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

totalCount pageOffset pageSize hasNextPage count items

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-structure/aerodatabox-aircraft-contract-paged-collection-contract-structure.json",
  "description": "AircraftContractPagedCollectionContract schema from AeroDataBox API",
  "type": "object",
  "properties": {
    "totalCount": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "The total number of items across all pages"
    },
    "pageOffset": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "The offset of the current page of the collection \r\n(number of items skipped before this page)"
    },
    "pageSize": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "Maximum number of items on the current page of the collection\r\n(`Count` cannot be more than this value)"
    },
    "hasNextPage": {
      "type": "boolean",
      "description": "This value is true when collection has more pages",
      "readOnly": true
    },
    "count": {
      "maximum": 2147483647,
      "minimum": 0,
      "type": "int32",
      "description": "The number of items in the collection",
      "readOnly": true
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AircraftContract"
      },
      "description": "The collection of items"
    }
  },
  "required": [
    "count",
    "hasNextPage",
    "items",
    "pageOffset",
    "pageSize",
    "totalCount"
  ],
  "additionalProperties": false,
  "name": "AircraftContractPagedCollectionContract"
}