Payload schema
bodyRecord<string, any>
The Slack callback body, verbatim as Slack delivered it.
Additional properties beyond the listed fields are allowed.
Raw JSON schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"body": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {},
"description": "The Slack callback body, verbatim as Slack delivered it."
}
},
"required": [
"body"
],
"additionalProperties": {},
"description": "The webhook envelope; extra keys (headers, team id) ride along untouched."
}