APIs.io Engineering Platform · Schema
installation_repositories added event
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| action | string | |
| enterprise | object | |
| installation | object | |
| organization | object | |
| repositories_added | object | |
| repositories_removed | array | An array of repository objects, which were removed from the installation. |
| repository | object | |
| repository_selection | object | |
| requester | object | |
| sender | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/webhook-installation-repositories-added",
"title": "installation_repositories added event",
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": [
"added"
]
},
"enterprise": {
"$ref": "#/components/schemas/enterprise-webhooks"
},
"installation": {
"$ref": "#/components/schemas/installation"
},
"organization": {
"$ref": "#/components/schemas/organization-simple-webhooks"
},
"repositories_added": {
"$ref": "#/components/schemas/webhooks_repositories_added"
},
"repositories_removed": {
"description": "An array of repository objects, which were removed from the installation.",
"type": "array",
"items": {
"type": "object",
"properties": {
"full_name": {
"type": "string"
},
"id": {
"description": "Unique identifier of the repository",
"type": "integer"
},
"name": {
"description": "The name of the repository.",
"type": "string"
},
"node_id": {
"type": "string"
},
"private": {
"description": "Whether the repository is private or public.",
"type": "boolean"
}
}
}
},
"repository": {
"$ref": "#/components/schemas/repository-webhooks"
},
"repository_selection": {
"$ref": "#/components/schemas/webhooks_repository_selection"
},
"requester": {
"$ref": "#/components/schemas/webhooks_user"
},
"sender": {
"$ref": "#/components/schemas/simple-user-webhooks"
}
},
"required": [
"action",
"installation",
"repository_selection",
"repositories_added",
"repositories_removed",
"requester",
"sender"
]
}