linode · Schema
SSHKey
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | The unique ID of this SSH key. |
| label | string | The label for this SSH key. |
| ssh_key | string | The SSH public key. |
| created | string | When this SSH key was added. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SSHKey",
"title": "SSHKey",
"type": "object",
"properties": {
"id": {
"type": "integer",
"description": "The unique ID of this SSH key."
},
"label": {
"type": "string",
"description": "The label for this SSH key."
},
"ssh_key": {
"type": "string",
"description": "The SSH public key."
},
"created": {
"type": "string",
"format": "date-time",
"description": "When this SSH key was added."
}
}
}