# nullable-team-simple

From **GitHub v3 REST API**.

Groups of organization members that gives permissions on specified repositories.

- Type: `object`
- Nullable: true

## Properties

### `description`

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

Description of the team

### `html_url`

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

### `id`

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

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_url`

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

### `name`

- Required: true
- Type: `string`
- Example: `Justice League`

Name of the team

### `node_id`

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

### `permission`

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

Permission that the team will have for its repositories

### `privacy`

- Required: false
- Type: `string`
- Example: `closed`

The level of privacy this team should have

### `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`

### `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.","nullable":true,"properties":{"description":{"description":"Description of the team","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":1,"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_url":{"example":"https://api.github.com/organizations/1/team/1/members{/member}","type":"string"},"name":{"description":"Name of the team","example":"Justice League","type":"string"},"node_id":{"example":"MDQ6VGVhbTE=","type":"string"},"permission":{"description":"Permission that the team will have for its repositories","example":"admin","type":"string"},"privacy":{"description":"The level of privacy this team should have","example":"closed","type":"string"},"repositories_url":{"example":"https://api.github.com/organizations/1/team/1/repos","format":"uri","type":"string"},"slug":{"example":"justice-league","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"],"title":"Team Simple","type":"object"}
```
