# timeline-comment-event

From **GitHub v3 REST API**.

Timeline Comment Event

- Type: `object`

## Properties

### `actor`

- Required: true
- Type: `object`

Simple User

### `author_association`

- Required: true
- Type: `string`
- Example: `OWNER`
- Allowed values: `"COLLABORATOR"`, `"CONTRIBUTOR"`, `"FIRST_TIMER"`, `"FIRST_TIME_CONTRIBUTOR"`, `"MANNEQUIN"`, `"MEMBER"`, `"NONE"`, `"OWNER"`

How the author is associated with the repository.

### `body`

- Required: false
- Type: `string`
- Example: `What version of Safari were you using when you observed this bug?`

Contents of the issue comment

### `body_html`

- Required: false
- Type: `string`

### `body_text`

- Required: false
- Type: `string`

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-04-14T16:00:49Z`

### `event`

- Required: true
- Type: `string`

### `html_url`

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

### `id`

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

Unique identifier of the issue comment

### `issue_url`

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

### `node_id`

- Required: true
- Type: `string`

### `performed_via_github_app`

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

GitHub apps are a new way to extend GitHub. They can be installed directly on organizations and user accounts and granted access to specific repositories. They come with granular permissions and built-in webhooks. GitHub apps are first class actors within GitHub.

### `reactions`

- Required: false
- Type: `object`

### `updated_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Example: `2011-04-14T16:00:49Z`

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repositories/42/issues/comments/1`

URL for the issue comment

### `user`

- Required: true
- Type: `object`

Simple User

## JSON Schema

```json
{"description":"Timeline Comment Event","properties":{"actor":{"$ref":"#/components/schemas/simple-user"},"author_association":{"$ref":"#/components/schemas/author_association"},"body":{"description":"Contents of the issue comment","example":"What version of Safari were you using when you observed this bug?","type":"string"},"body_html":{"type":"string"},"body_text":{"type":"string"},"created_at":{"example":"2011-04-14T16:00:49Z","format":"date-time","type":"string"},"event":{"type":"string"},"html_url":{"format":"uri","type":"string"},"id":{"description":"Unique identifier of the issue comment","example":42,"type":"integer"},"issue_url":{"format":"uri","type":"string"},"node_id":{"type":"string"},"performed_via_github_app":{"$ref":"#/components/schemas/nullable-integration"},"reactions":{"$ref":"#/components/schemas/reaction-rollup"},"updated_at":{"example":"2011-04-14T16:00:49Z","format":"date-time","type":"string"},"url":{"description":"URL for the issue comment","example":"https://api.github.com/repositories/42/issues/comments/1","format":"uri","type":"string"},"user":{"$ref":"#/components/schemas/simple-user"}},"required":["event","actor","id","node_id","html_url","issue_url","author_association","user","url","created_at","updated_at"],"title":"Timeline Comment Event","type":"object"}
```
