SendMessageRequest

Request to send an uplink message.

AerospaceDefenseAviationManufacturingConnectivityFortune 100

Properties

Name Type Description
messageType string ARINC message type.
registration string Target aircraft registration.
airlineCode string IATA airline code.
flightNumber string Flight number.
content string Message content to send.
priority string Message transmission priority.
View JSON Schema on GitHub

JSON Schema

arinc-messaging-send-message-request-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-send-message-request-schema.json",
  "title": "SendMessageRequest",
  "description": "Request to send an uplink message.",
  "type": "object",
  "properties": {
    "messageType": {
      "type": "string",
      "description": "ARINC message type.",
      "example": "ACARS"
    },
    "registration": {
      "type": "string",
      "description": "Target aircraft registration.",
      "example": "N12345"
    },
    "airlineCode": {
      "type": "string",
      "description": "IATA airline code.",
      "example": "AA"
    },
    "flightNumber": {
      "type": "string",
      "description": "Flight number.",
      "example": "AA100"
    },
    "content": {
      "type": "string",
      "description": "Message content to send.",
      "example": "GATE CHANGE TO B22"
    },
    "priority": {
      "type": "string",
      "description": "Message transmission priority.",
      "enum": [
        "URGENT",
        "HIGH",
        "NORMAL",
        "LOW"
      ],
      "example": "NORMAL"
    }
  },
  "required": [
    "messageType",
    "registration",
    "content"
  ]
}