The webhooks ping payload encoded with URL encoding.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/webhook-ping-form-encoded", "title": "webhook-ping-form-encoded", "description": "The webhooks ping payload encoded with URL encoding.", "type": "object", "properties": { "payload": { "description": "A URL-encoded string of the ping JSON payload. The decoded payload is a JSON object.", "type": "string" } }, "required": [ "payload" ] }