# team-project

From **GitHub v3 REST API**.

A team's access to a project.

- Type: `object`

## Properties

### `body`

- Required: true
- Type: `string`
- Nullable: true

### `columns_url`

- Required: true
- Type: `string`

### `created_at`

- Required: true
- Type: `string`

### `creator`

- Required: true
- Type: `object`

Simple User

### `html_url`

- Required: true
- Type: `string`

### `id`

- Required: true
- Type: `integer`

### `name`

- Required: true
- Type: `string`

### `node_id`

- Required: true
- Type: `string`

### `number`

- Required: true
- Type: `integer`

### `organization_permission`

- Required: false
- Type: `string`

The organization permission for this project. Only present when owner is an organization.

### `owner_url`

- Required: true
- Type: `string`

### `permissions`

- Required: true
- Type: `object`

### `private`

- Required: false
- Type: `boolean`

Whether the project is private or not. Only present when owner is an organization.

### `state`

- Required: true
- Type: `string`

### `updated_at`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`

## JSON Schema

```json
{"description":"A team's access to a project.","properties":{"body":{"nullable":true,"type":"string"},"columns_url":{"type":"string"},"created_at":{"type":"string"},"creator":{"$ref":"#/components/schemas/simple-user"},"html_url":{"type":"string"},"id":{"type":"integer"},"name":{"type":"string"},"node_id":{"type":"string"},"number":{"type":"integer"},"organization_permission":{"description":"The organization permission for this project. Only present when owner is an organization.","type":"string"},"owner_url":{"type":"string"},"permissions":{"properties":{"admin":{"type":"boolean"},"read":{"type":"boolean"},"write":{"type":"boolean"}},"required":["read","write","admin"],"type":"object"},"private":{"description":"Whether the project is private or not. Only present when owner is an organization.","type":"boolean"},"state":{"type":"string"},"updated_at":{"type":"string"},"url":{"type":"string"}},"required":["owner_url","url","html_url","columns_url","id","node_id","name","body","number","state","creator","created_at","updated_at","permissions"],"title":"Team Project","type":"object"}
```
