Dependabot alert fixed 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-fixed-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-dependabot-alert-fixed",
  "title": "Dependabot alert fixed event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "fixed"
      ]
    },
    "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"
  ]
}