United Technologies · JSON Structure

Arinc Messaging Send Message Request Structure

Request to send an uplink message.

Type: object Properties: 6 Required: 3
AerospaceDefenseAviationManufacturingConnectivityFortune 100

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

Properties

messageType registration airlineCode flightNumber content priority

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