# deploy-key

From **GitHub v3 REST API**.

An SSH key granting access to a single repository.

- Type: `object`

## Properties

### `created_at`

- Required: true
- Type: `string`

### `id`

- Required: true
- Type: `integer`

### `key`

- Required: true
- Type: `string`

### `read_only`

- Required: true
- Type: `boolean`

### `title`

- Required: true
- Type: `string`

### `url`

- Required: true
- Type: `string`

### `verified`

- Required: true
- Type: `boolean`

## JSON Schema

```json
{"description":"An SSH key granting access to a single repository.","properties":{"created_at":{"type":"string"},"id":{"type":"integer"},"key":{"type":"string"},"read_only":{"type":"boolean"},"title":{"type":"string"},"url":{"type":"string"},"verified":{"type":"boolean"}},"required":["id","key","url","title","verified","created_at","read_only"],"title":"Deploy Key","type":"object"}
```
