APIs.io Engineering Platform · Schema
Deploy Key
An SSH key granting access to a single repository.
APIs.ioEngineeringPlatform
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| key | string | |
| url | string | |
| title | string | |
| verified | boolean | |
| created_at | string | |
| read_only | boolean | |
| added_by | string | |
| last_used | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/deploy-key",
"title": "Deploy Key",
"description": "An SSH key granting access to a single repository.",
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"key": {
"type": "string"
},
"url": {
"type": "string"
},
"title": {
"type": "string"
},
"verified": {
"type": "boolean"
},
"created_at": {
"type": "string"
},
"read_only": {
"type": "boolean"
},
"added_by": {
"type": "string",
"nullable": true
},
"last_used": {
"type": "string",
"nullable": true
}
},
"required": [
"id",
"key",
"url",
"title",
"verified",
"created_at",
"read_only"
]
}