1{
2 "lexicon": 1,
3 "id": "ovh.plonk.paste",
4 "defs": {
5 "main": {
6 "type": "record",
7 "key": "tid",
8 "record": {
9 "type": "object",
10 "required": ["code", "lang", "title", "createdAt"],
11 "properties": {
12 "code": {
13 "type": "string",
14 "minLength": 1,
15 "maxGraphemes": 65536,
16 "maxLength": 65536
17 },
18 "lang": {
19 "type": "string",
20 "minLength": 1,
21 "maxGraphemes": 20,
22 "maxLength": 20
23 },
24 "title": {
25 "type": "string",
26 "minLength": 1,
27 "maxGraphemes": 100,
28 "maxLength": 100
29 },
30 "createdAt": { "type": "string", "format": "datetime" }
31 }
32 }
33 }
34 }
35}