{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/conversations-api-message-status-schema.json", "title": "MessageStatus", "description": "Delivery status information for a message", "type": "object", "properties": { "statusType": { "type": "string", "enum": [ "SENT", "DELIVERED", "READ", "FAILED" ], "description": "Current delivery status type", "example": "DELIVERED" } } }