{ "$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" ] }