Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| changes | object | |
| installation | object | |
| organization | object | |
| projects_v2_item | object | |
| sender | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook-projects-v2-item-restored",
"title": "Projects v2 Item Restored Event",
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"restored"
]
},
"changes": {
"$ref": "#/components/schemas/webhooks_project_changes"
},
"installation": {
"$ref": "#/components/schemas/simple-installation"
},
"organization": {
"$ref": "#/components/schemas/organization-simple-webhooks"
},
"projects_v2_item": {
"$ref": "#/components/schemas/projects-v2-item"
},
"sender": {
"$ref": "#/components/schemas/simple-user-webhooks"
}
},
"required": [
"action",
"projects_v2_item",
"organization",
"sender",
"changes"
]
}