# nullable-milestone

From **GitHub v3 REST API**.

A collection of related issues and pull requests.

- Type: `object`
- Nullable: true

## Properties

### `closed_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true
- Example: `2013-02-12T13:22:01Z`

### `closed_issues`

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

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-04-10T20:09:31Z`

### `creator`

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

Simple User

### `description`

- Required: true
- Type: `string`
- Nullable: true
- Example: `Tracking milestone for version 1.0`

### `due_on`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true
- Example: `2012-10-09T23:39:01Z`

### `html_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://github.com/octocat/Hello-World/milestones/v1.0`

### `id`

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

### `labels_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/octocat/Hello-World/milestones/1/labels`

### `node_id`

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

### `number`

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

The number of the milestone.

### `open_issues`

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

### `state`

- Required: true
- Type: `string`
- Default: `open`
- Example: `open`
- Allowed values: `"open"`, `"closed"`

The state of the milestone.

### `title`

- Required: true
- Type: `string`
- Example: `v1.0`

The title of the milestone.

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2014-03-03T18:58:10Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/octocat/Hello-World/milestones/1`

## JSON Schema

```json
{"description":"A collection of related issues and pull requests.","nullable":true,"properties":{"closed_at":{"example":"2013-02-12T13:22:01Z","format":"date-time","nullable":true,"type":"string"},"closed_issues":{"example":8,"type":"integer"},"created_at":{"example":"2011-04-10T20:09:31Z","format":"date-time","type":"string"},"creator":{"$ref":"#/components/schemas/nullable-simple-user"},"description":{"example":"Tracking milestone for version 1.0","nullable":true,"type":"string"},"due_on":{"example":"2012-10-09T23:39:01Z","format":"date-time","nullable":true,"type":"string"},"html_url":{"example":"https://github.com/octocat/Hello-World/milestones/v1.0","format":"uri","type":"string"},"id":{"example":1002604,"type":"integer"},"labels_url":{"example":"https://api.github.com/repos/octocat/Hello-World/milestones/1/labels","format":"uri","type":"string"},"node_id":{"example":"MDk6TWlsZXN0b25lMTAwMjYwNA==","type":"string"},"number":{"description":"The number of the milestone.","example":42,"type":"integer"},"open_issues":{"example":4,"type":"integer"},"state":{"default":"open","description":"The state of the milestone.","enum":["open","closed"],"example":"open","type":"string"},"title":{"description":"The title of the milestone.","example":"v1.0","type":"string"},"updated_at":{"example":"2014-03-03T18:58:10Z","format":"date-time","type":"string"},"url":{"example":"https://api.github.com/repos/octocat/Hello-World/milestones/1","format":"uri","type":"string"}},"required":["closed_issues","creator","description","due_on","closed_at","id","node_id","labels_url","html_url","number","open_issues","state","title","url","created_at","updated_at"],"title":"Milestone","type":"object"}
```
