Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| discussion | object | |
| enterprise | object | |
| installation | object | |
| label | object | |
| organization | object | |
| repository | object | |
| sender | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook-discussion-labeled",
"title": "discussion labeled event",
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"labeled"
]
},
"discussion": {
"$ref": "#/components/schemas/discussion"
},
"enterprise": {
"$ref": "#/components/schemas/enterprise-webhooks"
},
"installation": {
"$ref": "#/components/schemas/simple-installation"
},
"label": {
"$ref": "#/components/schemas/webhooks_label"
},
"organization": {
"$ref": "#/components/schemas/organization-simple-webhooks"
},
"repository": {
"$ref": "#/components/schemas/repository-webhooks"
},
"sender": {
"$ref": "#/components/schemas/simple-user-webhooks"
}
},
"required": [
"action",
"discussion",
"label",
"repository",
"sender"
]
}