repository edited event

APIs.ioEngineeringPlatform

Properties

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

JSON Schema

apis-io-engineering-platform-webhook-repository-edited-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhook-repository-edited",
  "title": "repository edited event",
  "type": "object",
  "properties": {
    "action": {
      "type": "string",
      "enum": [
        "edited"
      ]
    },
    "changes": {
      "type": "object",
      "properties": {
        "default_branch": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string"
            }
          },
          "required": [
            "from"
          ]
        },
        "description": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "nullable": true
            }
          },
          "required": [
            "from"
          ]
        },
        "homepage": {
          "type": "object",
          "properties": {
            "from": {
              "type": "string",
              "nullable": true
            }
          },
          "required": [
            "from"
          ]
        },
        "topics": {
          "type": "object",
          "properties": {
            "from": {
              "type": "array",
              "nullable": true,
              "items": {
                "type": "string"
              }
            }
          }
        }
      }
    },
    "enterprise": {
      "$ref": "#/components/schemas/enterprise-webhooks"
    },
    "installation": {
      "$ref": "#/components/schemas/simple-installation"
    },
    "organization": {
      "$ref": "#/components/schemas/organization-simple-webhooks"
    },
    "repository": {
      "$ref": "#/components/schemas/repository-webhooks"
    },
    "sender": {
      "$ref": "#/components/schemas/simple-user-webhooks"
    }
  },
  "required": [
    "action",
    "changes",
    "repository",
    "sender"
  ]
}