An array of repository objects that the installation can access.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/webhooks_repositories", "title": "webhooks_repositories", "description": "An array of repository objects that the installation can access.", "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" ] } }