# repository-subscription

From **GitHub v3 REST API**.

Repository invitations let you manage who you collaborate with.

- Type: `object`

## Properties

### `created_at`

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

### `ignored`

- Required: true
- Type: `boolean`

Determines if all notifications should be blocked from this repository.

### `reason`

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

### `repository_url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/octocat/example`

### `subscribed`

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

Determines if notifications should be received from this repository.

### `url`

- Required: true
- Type: `string`
- Format: `uri`
- Example: `https://api.github.com/repos/octocat/example/subscription`

## JSON Schema

```json
{"description":"Repository invitations let you manage who you collaborate with.","properties":{"created_at":{"example":"2012-10-06T21:34:12Z","format":"date-time","type":"string"},"ignored":{"description":"Determines if all notifications should be blocked from this repository.","type":"boolean"},"reason":{"nullable":true,"type":"string"},"repository_url":{"example":"https://api.github.com/repos/octocat/example","format":"uri","type":"string"},"subscribed":{"description":"Determines if notifications should be received from this repository.","example":true,"type":"boolean"},"url":{"example":"https://api.github.com/repos/octocat/example/subscription","format":"uri","type":"string"}},"required":["created_at","ignored","reason","subscribed","url","repository_url"],"title":"Repository Invitation","type":"object"}
```
