discussion_comment edited event

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-webhook-discussion-comment-edited-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-discussion-comment-edited",
  "title": "discussion_comment edited event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "edited"
      ]
    },
    "changes": {
      "type": "object",
      "properties": {
        "body": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string"
            }
          },
          "required": [
            "from"
          ]
        }
      },
      "required": [
        "body"
      ]
    },
    "comment": {
      "$ref": "#/components/schemas/webhooks_comment"
    },
    "discussion": {
      "$ref": "#/components/schemas/discussion"
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "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": [
    "action",
    "changes",
    "comment",
    "discussion",
    "repository",
    "sender"
  ]
}