MessageList

Paginated list of ARINC messages.

AerospaceDefenseAviationManufacturingConnectivityFortune 100

Properties

Name Type Description
total integer Total number of matching messages.
messages array List of message records.
View JSON Schema on GitHub

JSON Schema

arinc-messaging-message-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/united-technologies/refs/heads/main/json-schema/arinc-messaging-message-list-schema.json",
  "title": "MessageList",
  "description": "Paginated list of ARINC messages.",
  "type": "object",
  "properties": {
    "total": {
      "type": "integer",
      "description": "Total number of matching messages.",
      "example": 500
    },
    "messages": {
      "type": "array",
      "description": "List of message records.",
      "items": {
        "$ref": "#/components/schemas/Message"
      }
    }
  }
}