# actions-public-key

From **GitHub v3 REST API**.

The public key used for setting Actions Secrets.

- Type: `object`

## Properties

### `created_at`

- Required: false
- Type: `string`
- Example: `2011-01-26T19:01:12Z`

### `id`

- Required: false
- Type: `integer`
- Example: `2`

### `key`

- Required: true
- Type: `string`
- Example: `hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=`

The Base64 encoded public key.

### `key_id`

- Required: true
- Type: `string`
- Example: `1234567`

The identifier for the key.

### `title`

- Required: false
- Type: `string`
- Example: `ssh-rsa AAAAB3NzaC1yc2EAAA`

### `url`

- Required: false
- Type: `string`
- Example: `https://api.github.com/user/keys/2`

## JSON Schema

```json
{"description":"The public key used for setting Actions Secrets.","properties":{"created_at":{"example":"2011-01-26T19:01:12Z","type":"string"},"id":{"example":2,"type":"integer"},"key":{"description":"The Base64 encoded public key.","example":"hBT5WZEj8ZoOv6TYJsfWq7MxTEQopZO5/IT3ZCVQPzs=","type":"string"},"key_id":{"description":"The identifier for the key.","example":"1234567","type":"string"},"title":{"example":"ssh-rsa AAAAB3NzaC1yc2EAAA","type":"string"},"url":{"example":"https://api.github.com/user/keys/2","type":"string"}},"required":["key_id","key"],"title":"ActionsPublicKey","type":"object"}
```
