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