GitHub Copilot · Schema
Team
A GitHub team.
AgentsAIArtificial IntelligenceCode GenerationCode ReviewCoding AgentCustom InstructionsDeveloper ToolsExtensionsIDEMachine LearningMCPMetricsModel Context ProtocolProductivity
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | Unique identifier of the team. |
| node_id | string | |
| name | string | Name of the team. |
| slug | string | URL-friendly slug of the team name. |
| description | ['string', 'null'] | Description of the team. |
| privacy | string | |
| notification_setting | string | |
| permission | string | The default permission level for the team. |
| url | string | |
| html_url | string | |
| members_url | string | |
| repositories_url | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Team",
"type": "object",
"description": "A GitHub team.",
"properties": {
"id": {
"type": "integer",
"description": "Unique identifier of the team."
},
"node_id": {
"type": "string"
},
"name": {
"type": "string",
"description": "Name of the team."
},
"slug": {
"type": "string",
"description": "URL-friendly slug of the team name."
},
"description": {
"type": "['string', 'null']",
"description": "Description of the team."
},
"privacy": {
"type": "string"
},
"notification_setting": {
"type": "string"
},
"permission": {
"type": "string",
"description": "The default permission level for the team."
},
"url": {
"type": "string"
},
"html_url": {
"type": "string"
},
"members_url": {
"type": "string"
},
"repositories_url": {
"type": "string"
}
}
}