Projects v2 Project Edited Event

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-webhook-projects-v2-project-edited-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-projects-v2-project-edited",
  "title": "Projects v2 Project Edited Event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "edited"
      ]
    },
    "changes": {
      "type": "object",
      "properties": {
        "description": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "nullable": true
            },
            "to": {
              "type": "string",
              "nullable": true
            }
          }
        },
        "public": {
          "type": "object",
          "properties": {
            "from": {
              "type": "boolean"
            },
            "to": {
              "type": "boolean"
            }
          }
        },
        "short_description": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "nullable": true
            },
            "to": {
              "type": "string",
              "nullable": true
            }
          }
        },
        "title": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string"
            },
            "to": {
              "type": "string"
            }
          }
        }
      }
    },
    "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",
    "changes"
  ]
}