{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-teams-team-schema.json", "title": "team", "description": "Groups of organization members that gives permissions on specified repositories.", "type": "object", "properties": { "id": { "type": "integer", "example": 42 }, "node_id": { "type": "string", "example": "12345678" }, "name": { "type": "string", "example": "octocat" }, "slug": { "type": "string", "example": "example_value" }, "description": { "type": "string", "nullable": true, "example": "This is an example repository" }, "privacy": { "type": "string", "example": "example_value" }, "permission": { "type": "string", "example": "example_value" }, "permissions": { "type": "object", "properties": { "pull": { "type": "boolean" }, "triage": { "type": "boolean" }, "push": { "type": "boolean" }, "maintain": { "type": "boolean" }, "admin": { "type": "boolean" } }, "required": [ "pull", "triage", "push", "maintain", "admin" ] }, "url": { "type": "string", "format": "uri", "example": "https://api.github.com/repos/octocat/Hello-World" }, "html_url": { "type": "string", "format": "uri", "example": "https://github.com/orgs/rails/teams/core" }, "members_url": { "type": "string", "example": "https://api.github.com/repos/octocat/Hello-World" }, "repositories_url": { "type": "string", "format": "uri", "example": "https://api.github.com/repos/octocat/Hello-World" }, "parent": { "$ref": "#/components/schemas/nullable-team-simple" } }, "required": [ "id", "node_id", "url", "members_url", "name", "description", "permission", "html_url", "repositories_url", "slug", "parent" ] }