GitHub · JSON Structure

Github Meta Webhook Check Run Created Structure

webhook-check-run-created from GitHub API

Type: object Properties: 6 Required: 3
CodePipelinesPlatformSoftware DevelopmentSource ControlT1

webhook-check-run-created is a JSON Structure definition published by GitHub, describing 6 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action check_run installation organization repository sender

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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