Check Run Requested Action Event

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string
check_run object
installation object
organization object
repository object
requested_action object The action requested by the user.
sender object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-check-run-requested-action-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-check-run-requested-action",
  "title": "Check Run Requested Action Event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "requested_action"
      ]
    },
    "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"
    },
    "requested_action": {
      "description": "The action requested by the user.",
      "type": "object",
      "properties": {
        "identifier": {
          "description": "The integrator reference of the action requested by the user.",
          "type": "string"
        }
      }
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "check_run",
    "repository",
    "sender"
  ]
}