Dependabot alert dismissed event

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-webhook-dependabot-alert-dismissed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-dependabot-alert-dismissed",
  "title": "Dependabot alert dismissed event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "dismissed"
      ]
    },
    "alert": {
      "$ref": "#/components/schemas/dependabot-alert"
    },
    "installation": {
      "$ref": "#/components/schemas/simple-installation"
    },
    "organization": {
      "$ref": "#/components/schemas/organization-simple-webhooks"
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "repository": {
      "$ref": "#/components/schemas/repository-webhooks"
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "alert",
    "repository",
    "sender"
  ]
}