# thread-subscription

From **GitHub v3 REST API**.

Thread Subscription

- Type: `object`

## Properties

### `created_at`

- Required: true
- Type: `string`
- Format: `date-time`
- Nullable: true
- Example: `2012-10-06T21:34:12Z`

### `ignored`

- Required: true
- Type: `boolean`

### `reason`

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

### `repository_url`

- Required: false
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/1`

### `subscribed`

- Required: true
- Type: `boolean`
- Example: `true`

### `thread_url`

- Required: false
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/notifications/threads/1`

### `url`

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

## JSON Schema

```json
{"description":"Thread Subscription","properties":{"created_at":{"example":"2012-10-06T21:34:12Z","format":"date-time","nullable":true,"type":"string"},"ignored":{"type":"boolean"},"reason":{"nullable":true,"type":"string"},"repository_url":{"example":"https://api.github.com/repos/1","format":"uri","type":"string"},"subscribed":{"example":true,"type":"boolean"},"thread_url":{"example":"https://api.github.com/notifications/threads/1","format":"uri","type":"string"},"url":{"example":"https://api.github.com/notifications/threads/1/subscription","format":"uri","type":"string"}},"required":["created_at","ignored","reason","url","subscribed"],"title":"Thread Subscription","type":"object"}
```
