# thread

From **GitHub v3 REST API**.

Thread

- Type: `object`

## Properties

### `id`

- Required: true
- Type: `string`

### `last_read_at`

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

### `reason`

- Required: true
- Type: `string`

### `repository`

- Required: true
- Type: `object`

Minimal Repository

### `subject`

- Required: true
- Type: `object`

### `subscription_url`

- Required: true
- Type: `string`
- Example: `https://api.github.com/notifications/threads/2/subscription`

### `unread`

- Required: true
- Type: `boolean`

### `updated_at`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`

## JSON Schema

```json
{"description":"Thread","properties":{"id":{"type":"string"},"last_read_at":{"nullable":true,"type":"string"},"reason":{"type":"string"},"repository":{"$ref":"#/components/schemas/minimal-repository"},"subject":{"properties":{"latest_comment_url":{"type":"string"},"title":{"type":"string"},"type":{"type":"string"},"url":{"type":"string"}},"required":["title","url","latest_comment_url","type"],"type":"object"},"subscription_url":{"example":"https://api.github.com/notifications/threads/2/subscription","type":"string"},"unread":{"type":"boolean"},"updated_at":{"type":"string"},"url":{"type":"string"}},"required":["id","unread","reason","updated_at","last_read_at","subject","repository","url","subscription_url"],"title":"Thread","type":"object"}
```
