initial commit

This commit is contained in:
Grace Yoder 2026-03-12 15:22:38 -04:00
commit 736b42018b
No known key found for this signature in database
7 changed files with 6052 additions and 0 deletions

44
lexicons/sshKey.json Normal file
View file

@ -0,0 +1,44 @@
{
"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
}