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