SendMessageResponse

Response confirming message was queued for transmission.

AerospaceDefenseAviationManufacturingConnectivityFortune 100

Properties

Name Type Description
messageId string Assigned message identifier.
status string Initial message status.
timestamp string Timestamp when message was queued.
View JSON Schema on GitHub

JSON Schema

arinc-messaging-send-message-response-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-response-schema.json",
  "title": "SendMessageResponse",
  "description": "Response confirming message was queued for transmission.",
  "type": "object",
  "properties": {
    "messageId": {
      "type": "string",
      "description": "Assigned message identifier.",
      "example": "MSG-20250314-001235"
    },
    "status": {
      "type": "string",
      "description": "Initial message status.",
      "enum": [
        "QUEUED",
        "SENT",
        "DELIVERED",
        "FAILED"
      ],
      "example": "QUEUED"
    },
    "timestamp": {
      "type": "string",
      "format": "date-time",
      "description": "Timestamp when message was queued.",
      "example": "2025-03-14T10:31:00Z"
    }
  }
}