{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-feeds-webhook-check-run-completed-structure.json", "name": "webhook-check-run-completed", "description": "webhook-check-run-completed from GitHub API", "type": "object", "properties": { "action": { "type": "string", "enum": [ "completed" ], "example": "completed" }, "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" ] }