{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/webhook-projects-v2-item-created", "title": "Projects v2 Item Created Event", "type": "object", "properties": { "action": { "type": "string", "enum": [ "created" ] }, "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" ] }