changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "additionalProperties": false,
+ "properties": {
+ "result": {
+ "additionalProperties": true,
+ "description": "Sent facility message identifiers and body.",
+ "properties": {
+ "body": {
+ "description": "Sent message body.",
+ "type": "string"
+ },
+ "conversation_id": {
+ "description": "Facility conversation UUID.",
+ "format": "uuid",
+ "type": "string"
+ },
+ "created_at": {
+ "description": "Message creation timestamp.",
+ "format": "date-time",
+ "type": "string"
+ },
+ "message_id": {
+ "description": "Created message UUID.",
+ "format": "uuid",
+ "type": "string"
+ }
+ },
+ "required": [
+ "message_id",
+ "conversation_id",
+ "body",
+ "created_at"
+ ],
+ "type": "object"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "type": "object"
+}