# team-full

From **GitHub v3 REST API**.

Groups of organization members that gives permissions on specified repositories.

- Type: `object`

## Properties

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2017-07-14T16:53:42Z`

### `description`

- Required: true
- Type: `string`
- Nullable: true
- Example: `A great team.`

### `html_url`

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

### `id`

- Required: true
- Type: `integer`
- Example: `42`

Unique identifier of the team

### `ldap_dn`

- Required: false
- Type: `string`
- Example: `uid=example,ou=users,dc=github,dc=com`

Distinguished Name (DN) that team maps to within LDAP environment

### `members_count`

- Required: true
- Type: `integer`
- Example: `3`

### `members_url`

- Required: true
- Type: `string`
- Example: `https://api.github.com/organizations/1/team/1/members{/member}`

### `name`

- Required: true
- Type: `string`
- Example: `Developers`

Name of the team

### `node_id`

- Required: true
- Type: `string`
- Example: `MDQ6VGVhbTE=`

### `organization`

- Required: true
- Type: `object`

Organization Full

### `parent`

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

Groups of organization members that gives permissions on specified repositories.

### `permission`

- Required: true
- Type: `string`
- Example: `push`

Permission that the team will have for its repositories

### `privacy`

- Required: false
- Type: `string`
- Example: `closed`
- Allowed values: `"closed"`, `"secret"`

The level of privacy this team should have

### `repos_count`

- Required: true
- Type: `integer`
- Example: `10`

### `repositories_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/organizations/1/team/1/repos`

### `slug`

- Required: true
- Type: `string`
- Example: `justice-league`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2017-08-17T12:37:15Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/organizations/1/team/1`

URL for the team

## JSON Schema

```json
{"description":"Groups of organization members that gives permissions on specified repositories.","properties":{"created_at":{"example":"2017-07-14T16:53:42Z","format":"date-time","type":"string"},"description":{"example":"A great team.","nullable":true,"type":"string"},"html_url":{"example":"https://github.com/orgs/rails/teams/core","format":"uri","type":"string"},"id":{"description":"Unique identifier of the team","example":42,"type":"integer"},"ldap_dn":{"description":"Distinguished Name (DN) that team maps to within LDAP environment","example":"uid=example,ou=users,dc=github,dc=com","type":"string"},"members_count":{"example":3,"type":"integer"},"members_url":{"example":"https://api.github.com/organizations/1/team/1/members{/member}","type":"string"},"name":{"description":"Name of the team","example":"Developers","type":"string"},"node_id":{"example":"MDQ6VGVhbTE=","type":"string"},"organization":{"$ref":"#/components/schemas/organization-full"},"parent":{"$ref":"#/components/schemas/nullable-team-simple"},"permission":{"description":"Permission that the team will have for its repositories","example":"push","type":"string"},"privacy":{"description":"The level of privacy this team should have","enum":["closed","secret"],"example":"closed","type":"string"},"repos_count":{"example":10,"type":"integer"},"repositories_url":{"example":"https://api.github.com/organizations/1/team/1/repos","format":"uri","type":"string"},"slug":{"example":"justice-league","type":"string"},"updated_at":{"example":"2017-08-17T12:37:15Z","format":"date-time","type":"string"},"url":{"description":"URL for the team","example":"https://api.github.com/organizations/1/team/1","format":"uri","type":"string"}},"required":["id","node_id","url","members_url","name","description","permission","html_url","repositories_url","slug","created_at","updated_at","members_count","repos_count","organization"],"title":"Full Team","type":"object"}
```
