Projects v2 Item Restored Event

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string
changes object
installation object
organization object
projects_v2_item object
sender object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-projects-v2-item-restored-schema.json Raw ↑
{
  "$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"
  ]
}