project edited event

APIs.ioEngineeringPlatform

Properties

Name Type Description
action string
changes object The changes to the project if the action was `edited`.
enterprise object
installation object
organization object
project object
repository object
sender object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhook-project-edited-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-project-edited",
  "title": "project edited event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "edited"
      ]
    },
    "changes": {
      "description": "The changes to the project if the action was `edited`.",
      "type": "object",
      "properties": {
        "body": {
          "type": "object",
          "properties": {
            "from": {
              "description": "The previous version of the body if the action was `edited`.",
              "type": "string"
            }
          },
          "required": [
            "from"
          ]
        },
        "name": {
          "type": "object",
          "properties": {
            "from": {
              "description": "The changes to the project if the action was `edited`.",
              "type": "string"
            }
          },
          "required": [
            "from"
          ]
        }
      }
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "installation": {
      "$ref": "#/components/schemas/simple-installation"
    },
    "organization": {
      "$ref": "#/components/schemas/organization-simple-webhooks"
    },
    "project": {
      "$ref": "#/components/schemas/webhooks_project"
    },
    "repository": {
      "$ref": "#/components/schemas/repository-webhooks"
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "project"
  ]
}