GitHub · Schema

webhook-check-run-completed

webhook-check-run-completed from GitHub API

CodePipelinesPlatformSoftware DevelopmentSource ControlT1

Properties

Name Type Description
action string
check_run object
installation object
organization object
repository object
sender object
View JSON Schema on GitHub

JSON Schema

github-notifications-webhook-check-run-completed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-notifications-webhook-check-run-completed-schema.json",
  "title": "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"
  ]
}