AT&T · JSON Structure

Sms Api Delivery Info Structure

DeliveryInfo schema from AT&T API

Type: object Properties: 2
Fortune 100TelecommunicationsWirelessWirelineMessagingSpeechMobileBroadbandEnterprise

DeliveryInfo is a JSON Structure definition published by AT&T, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address deliveryStatus

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/at-and-t/refs/heads/main/json-structure/sms-api-delivery-info-structure.json",
  "description": "DeliveryInfo schema from AT&T API",
  "type": "object",
  "properties": {
    "address": {
      "type": "string",
      "description": "Recipient phone number",
      "example": "tel:+12125551234"
    },
    "deliveryStatus": {
      "type": "string",
      "description": "Current delivery status of the message",
      "enum": [
        "DeliveredToNetwork",
        "DeliveredToTerminal",
        "DeliveryImpossible",
        "MessageWaiting",
        "DeliveryUncertain"
      ],
      "example": "DeliveredToTerminal"
    }
  },
  "name": "DeliveryInfo"
}