{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-markdown-webhook-check-run-created-structure.json", "name": "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" ] }