# enterprise

From **GitHub v3 REST API**.

An enterprise account

- Type: `object`

## Properties

### `avatar_url`

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

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true
- Example: `2019-01-26T19:01:12Z`

### `description`

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

A short description of the enterprise.

### `html_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/enterprises/octo-business`

### `id`

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

Unique identifier of the enterprise

### `name`

- Required: true
- Type: `string`
- Example: `Octo Business`

The name of the enterprise.

### `node_id`

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

### `slug`

- Required: true
- Type: `string`
- Example: `octo-business`

The slug url identifier for the enterprise.

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true
- Example: `2019-01-26T19:14:43Z`

### `website_url`

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

The enterprise's website URL.

## JSON Schema

```json
{"description":"An enterprise account","properties":{"avatar_url":{"format":"uri","type":"string"},"created_at":{"example":"2019-01-26T19:01:12Z","format":"date-time","nullable":true,"type":"string"},"description":{"description":"A short description of the enterprise.","nullable":true,"type":"string"},"html_url":{"example":"https://github.com/enterprises/octo-business","format":"uri","type":"string"},"id":{"description":"Unique identifier of the enterprise","example":42,"type":"integer"},"name":{"description":"The name of the enterprise.","example":"Octo Business","type":"string"},"node_id":{"example":"MDEwOlJlcG9zaXRvcnkxMjk2MjY5","type":"string"},"slug":{"description":"The slug url identifier for the enterprise.","example":"octo-business","type":"string"},"updated_at":{"example":"2019-01-26T19:14:43Z","format":"date-time","nullable":true,"type":"string"},"website_url":{"description":"The enterprise's website URL.","format":"uri","nullable":true,"type":"string"}},"required":["id","node_id","name","slug","html_url","created_at","updated_at","avatar_url"],"title":"Enterprise","type":"object"}
```
