# timeline-committed-event

From **GitHub v3 REST API**.

Timeline Committed Event

- Type: `object`

## Properties

### `author`

- Required: true
- Type: `object`

Identifying information for the git-user

### `committer`

- Required: true
- Type: `object`

Identifying information for the git-user

### `event`

- Required: false
- Type: `string`

### `html_url`

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

### `message`

- Required: true
- Type: `string`
- Example: `Fix #42`

Message describing the purpose of the commit

### `node_id`

- Required: true
- Type: `string`

### `parents`

- Required: true
- Type: `array`

### `sha`

- Required: true
- Type: `string`
- Example: `7638417db6d59f3c431d3e1f261cc637155684cd`

SHA for the commit

### `tree`

- Required: true
- Type: `object`

### `url`

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

### `verification`

- Required: true
- Type: `object`

## JSON Schema

```json
{"description":"Timeline Committed Event","properties":{"author":{"description":"Identifying information for the git-user","properties":{"date":{"description":"Timestamp of the commit","example":"2014-08-09T08:02:04+12:00","format":"date-time","type":"string"},"email":{"description":"Git email address of the user","example":"monalisa.octocat@example.com","type":"string"},"name":{"description":"Name of the git user","example":"Monalisa Octocat","type":"string"}},"required":["email","name","date"],"type":"object"},"committer":{"description":"Identifying information for the git-user","properties":{"date":{"description":"Timestamp of the commit","example":"2014-08-09T08:02:04+12:00","format":"date-time","type":"string"},"email":{"description":"Git email address of the user","example":"monalisa.octocat@example.com","type":"string"},"name":{"description":"Name of the git user","example":"Monalisa Octocat","type":"string"}},"required":["email","name","date"],"type":"object"},"event":{"type":"string"},"html_url":{"format":"uri","type":"string"},"message":{"description":"Message describing the purpose of the commit","example":"Fix #42","type":"string"},"node_id":{"type":"string"},"parents":{"items":{"properties":{"html_url":{"format":"uri","type":"string"},"sha":{"description":"SHA for the commit","example":"7638417db6d59f3c431d3e1f261cc637155684cd","type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","url","html_url"],"type":"object"},"type":"array"},"sha":{"description":"SHA for the commit","example":"7638417db6d59f3c431d3e1f261cc637155684cd","type":"string"},"tree":{"properties":{"sha":{"description":"SHA for the commit","example":"7638417db6d59f3c431d3e1f261cc637155684cd","type":"string"},"url":{"format":"uri","type":"string"}},"required":["sha","url"],"type":"object"},"url":{"format":"uri","type":"string"},"verification":{"properties":{"payload":{"nullable":true,"type":"string"},"reason":{"type":"string"},"signature":{"nullable":true,"type":"string"},"verified":{"type":"boolean"}},"required":["verified","reason","signature","payload"],"type":"object"}},"required":["sha","node_id","url","html_url","author","committer","tree","message","parents","verification"],"title":"Timeline Committed Event","type":"object"}
```
