issues assigned event

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string The action that was performed.
assignee object
enterprise object
installation object
issue object
organization object
repository object
sender object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-issues-assigned-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-issues-assigned",
  "title": "issues assigned event",
  "type": "object",
  "properties": {
    "action": {
      "description": "The action that was performed.",
      "type": "string",
      "enum": [
        "assigned"
      ]
    },
    "assignee": {
      "$ref": "#/components/schemas/webhooks_user"
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "installation": {
      "$ref": "#/components/schemas/simple-installation"
    },
    "issue": {
      "$ref": "#/components/schemas/webhooks_issue"
    },
    "organization": {
      "$ref": "#/components/schemas/organization-simple-webhooks"
    },
    "repository": {
      "$ref": "#/components/schemas/repository-webhooks"
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "issue",
    "repository",
    "sender"
  ]
}