1{
2 "lexicon": 1,
3 "id": "sh.tangled.string",
4 "needsCbor": true,
5 "needsType": true,
6 "defs": {
7 "main": {
8 "type": "record",
9 "key": "tid",
10 "record": {
11 "type": "object",
12 "required": [
13 "filename",
14 "description",
15 "createdAt",
16 "contents"
17 ],
18 "properties": {
19 "filename": {
20 "type": "string",
21 "maxGraphemes": 140,
22 "minGraphemes": 1
23 },
24 "description": {
25 "type": "string",
26 "maxGraphemes": 280
27 },
28 "createdAt": {
29 "type": "string",
30 "format": "datetime"
31 },
32 "contents": {
33 "type": "string",
34 "minGraphemes": 1
35 }
36 }
37 }
38 }
39 }
40}