{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-code-of-conduct-api-webhook-check-run-created-schema.json", "title": "webhook-check-run-created", "description": "webhook-check-run-created from GitHub API", "type": "object", "properties": { "action": { "type": "string", "enum": [ "created" ], "example": "created" }, "check_run": { "$ref": "#/components/schemas/check-run-with-simple-check-suite" }, "installation": { "$ref": "#/components/schemas/simple-installation" }, "organization": { "$ref": "#/components/schemas/organization-simple-webhooks" }, "repository": { "$ref": "#/components/schemas/repository-webhooks" }, "sender": { "$ref": "#/components/schemas/simple-user-webhooks" } }, "required": [ "check_run", "repository", "sender" ] }