atproto-ssh-tool/lexicons/sshKey.json
2026-03-12 15:22:38 -04:00

44 lines
943 B
JSON

{
"defs": {
"main": {
"description": "Public SSH Key",
"key": "tid",
"record": {
"properties": {
"createdAt": {
"format": "datetime",
"type": "string"
},
"keyString": {
"maxLength": 3000,
"type": "string"
},
"name": {
"description": "Human name for SSH key",
"maxGraphemes": 64,
"maxLength": 640,
"minLength": 1,
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 64
},
"maxLength": 10
}
},
"required": [
"name",
"keyString",
"createdAt"
],
"type": "object"
},
"type": "record"
}
},
"id": "pink.grace.sshKey",
"lexicon": 1
}