SendSmsResponse schema from AT&T API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/at-and-t/refs/heads/main/json-schema/sms-api-send-sms-response-schema.json", "title": "SendSmsResponse", "description": "SendSmsResponse schema from AT&T API", "type": "object", "properties": { "outboundSMSResponse": { "type": "object", "properties": { "messageId": { "type": "string", "description": "Unique identifier for the sent message", "example": "msg-500123" }, "resourceReference": { "type": "object", "properties": { "resourceURL": { "type": "string", "format": "uri", "description": "URL to check delivery status of this message", "example": "https://api.att.com/sms/v3/messaging/outbox/msg-500123" } } } } } } }