Payload schema
textstring
The message text to deliver.
Additional properties beyond the listed fields are allowed.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"text": {
"type": "string",
"description": "The message text to deliver."
}
},
"required": [
"text"
],
"additionalProperties": {}
}