1{
2 "lexicon": 1,
3 "id": "li.plonk.paste",
4 "defs": {
5 "main": {
6 "type": "record",
7 "key": "tid",
8 "record": {
9 "type": "object",
10 "required": [
11 "code",
12 "shortUrl",
13 "lang",
14 "title",
15 "createdAt"
16 ],
17 "properties": {
18 "code": {
19 "type": "string",
20 "minLength": 1,
21 "maxGraphemes": 65536,
22 "maxLength": 65536
23 },
24 "shortUrl": {
25 "type": "string",
26 "minLength": 2,
27 "maxGraphemes": 10,
28 "maxLength": 10
29 },
30 "lang": {
31 "type": "string",
32 "minLength": 1,
33 "maxGraphemes": 20,
34 "maxLength": 20
35 },
36 "title": {
37 "type": "string",
38 "minLength": 1,
39 "maxGraphemes": 100,
40 "maxLength": 100
41 },
42 "createdAt": {
43 "type": "string",
44 "format": "datetime"
45 }
46 }
47 }
48 }
49 }
50}