Home
GitHub
Github Projects Team Project Structure
Github Projects Team Project Structure
A team's access to a project.
Type: object
Properties: 16
Required: 14
Code Pipelines Platform Software Development Source Control T1
team-project is a JSON Structure definition published by GitHub, describing 16 properties, of which 14 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.
Properties
owner_url
url
html_url
columns_url
id
node_id
name
body
number
state
creator
created_at
updated_at
organization_permission
private
permissions
Meta-schema: https://json-structure.org/meta/core/v0/#
JSON Structure
{
"$schema": "https://json-structure.org/meta/core/v0/#",
"$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-structure/github-projects-team-project-structure.json",
"name": "team-project",
"description": "A team's access to a project.",
"type": "object",
"properties": {
"owner_url": {
"type": "string",
"example": "https://api.github.com/repos/octocat/Hello-World"
},
"url": {
"type": "string",
"example": "https://api.github.com/repos/octocat/Hello-World"
},
"html_url": {
"type": "string",
"example": "https://api.github.com/repos/octocat/Hello-World"
},
"columns_url": {
"type": "string",
"example": "https://api.github.com/repos/octocat/Hello-World"
},
"id": {
"type": "int32",
"example": 42
},
"node_id": {
"type": "string",
"example": "12345678"
},
"name": {
"type": "string",
"example": "octocat"
},
"body": {
"type": "string",
"nullable": true,
"example": "Example body text"
},
"number": {
"type": "int32",
"example": 42
},
"state": {
"type": "string",
"example": "open"
},
"creator": {
"$ref": "#/components/schemas/simple-user"
},
"created_at": {
"type": "string",
"example": "2026-04-17T12:00:00Z"
},
"updated_at": {
"type": "string",
"example": "2026-04-17T12:00:00Z"
},
"organization_permission": {
"description": "The organization permission for this project. Only present when owner is an organization.",
"type": "string",
"example": "example_value"
},
"private": {
"description": "Whether the project is private or not. Only present when owner is an organization.",
"type": "boolean",
"example": true
},
"permissions": {
"type": "object",
"properties": {
"read": {
"type": "boolean"
},
"write": {
"type": "boolean"
},
"admin": {
"type": "boolean"
}
},
"required": [
"read",
"write",
"admin"
]
}
},
"required": [
"owner_url",
"url",
"html_url",
"columns_url",
"id",
"node_id",
"name",
"body",
"number",
"state",
"creator",
"created_at",
"updated_at",
"permissions"
]
}