A public SSH key used to sign Git commits
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ssh-signing-key", "title": "SSH Signing Key", "description": "A public SSH key used to sign Git commits", "type": "object", "properties": { "key": { "type": "string" }, "id": { "type": "integer" }, "title": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" } }, "required": [ "key", "id", "title", "created_at" ] }