{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/webhook-projects-v2-project-reopened", "title": "Projects v2 Project Reopened Event", "type": "object", "properties": { "action": { "type": "string", "enum": [ "reopened" ] }, "installation": { "$ref": "#/components/schemas/simple-installation" }, "organization": { "$ref": "#/components/schemas/organization-simple-webhooks" }, "projects_v2": { "$ref": "#/components/schemas/projects-v2" }, "sender": { "$ref": "#/components/schemas/simple-user-webhooks" } }, "required": [ "action", "projects_v2", "organization", "sender" ] }