+26
lexicons/com/kipclip/tag.json
+26
lexicons/com/kipclip/tag.json
···
1
+
{
2
+
"lexicon": 1,
3
+
"id": "com.kipclip.tag",
4
+
"description": "A user-defined tag for organizing bookmarks",
5
+
"defs": {
6
+
"main": {
7
+
"type": "record",
8
+
"key": "tid",
9
+
"record": {
10
+
"type": "object",
11
+
"required": ["value", "createdAt"],
12
+
"properties": {
13
+
"value": {
14
+
"type": "string",
15
+
"maxLength": 64,
16
+
"description": "The tag text"
17
+
},
18
+
"createdAt": {
19
+
"type": "datetime",
20
+
"description": "Timestamp when tag was created"
21
+
}
22
+
}
23
+
}
24
+
}
25
+
}
26
+
}