webhooks_repositories_added

An array of repository objects, which were added to the installation.

APIs.ioEngineeringPlatform
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-webhooks-repositories-added-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/webhooks_repositories_added",
  "title": "webhooks_repositories_added",
  "description": "An array of repository objects, which were added to 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"
      }
    },
    "required": [
      "id",
      "node_id",
      "name",
      "full_name",
      "private"
    ]
  }
}