Properties
| Name | Type | Description |
|---|---|---|
| enterprise | object | |
| inputs | object | |
| installation | object | |
| organization | object | |
| ref | string | |
| repository | object | |
| sender | object | |
| workflow | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook-workflow-dispatch",
"title": "workflow_dispatch event",
"type": "object",
"properties": {
"enterprise": {
"$ref": "#/components/schemas/enterprise-webhooks"
},
"inputs": {
"type": "object",
"nullable": true,
"additionalProperties": true
},
"installation": {
"$ref": "#/components/schemas/simple-installation"
},
"organization": {
"$ref": "#/components/schemas/organization-simple-webhooks"
},
"ref": {
"type": "string"
},
"repository": {
"$ref": "#/components/schemas/repository-webhooks"
},
"sender": {
"$ref": "#/components/schemas/simple-user-webhooks"
},
"workflow": {
"type": "string"
}
},
"required": [
"inputs",
"ref",
"repository",
"sender",
"workflow"
]
}