# team

From **GitHub v3 REST API**.

Groups of organization members that gives permissions on specified repositories.

- Type: `object`

## Properties

### `description`

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

### `html_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/orgs/rails/teams/core`

### `id`

- Required: true
- Type: `integer`

### `members_url`

- Required: true
- Type: `string`

### `name`

- Required: true
- Type: `string`

### `node_id`

- Required: true
- Type: `string`

### `parent`

- Required: true
- Type: `object`
- Nullable: true

Groups of organization members that gives permissions on specified repositories.

### `permission`

- Required: true
- Type: `string`

### `permissions`

- Required: false
- Type: `object`

### `privacy`

- Required: false
- Type: `string`

### `repositories_url`

- Required: true
- Type: `string`
- Format: `uri`

### `slug`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`
- Format: `uri`

## JSON Schema

```json
{"description":"Groups of organization members that gives permissions on specified repositories.","properties":{"description":{"nullable":true,"type":"string"},"html_url":{"example":"https://github.com/orgs/rails/teams/core","format":"uri","type":"string"},"id":{"type":"integer"},"members_url":{"type":"string"},"name":{"type":"string"},"node_id":{"type":"string"},"parent":{"$ref":"#/components/schemas/nullable-team-simple"},"permission":{"type":"string"},"permissions":{"properties":{"admin":{"type":"boolean"},"maintain":{"type":"boolean"},"pull":{"type":"boolean"},"push":{"type":"boolean"},"triage":{"type":"boolean"}},"required":["pull","triage","push","maintain","admin"],"type":"object"},"privacy":{"type":"string"},"repositories_url":{"format":"uri","type":"string"},"slug":{"type":"string"},"url":{"format":"uri","type":"string"}},"required":["id","node_id","url","members_url","name","description","permission","html_url","repositories_url","slug","parent"],"title":"Team","type":"object"}
```
