Scratch space for learning atproto app development
1{
2 "lexicon": 1,
3 "id": "xyz.statusphere.status",
4 "defs": {
5 "main": {
6 "type": "record",
7 "key": "tid",
8 "record": {
9 "type": "object",
10 "required": ["status", "createdAt"],
11 "properties": {
12 "status": {
13 "type": "string",
14 "minLength": 1,
15 "maxGraphemes": 1,
16 "maxLength": 32
17 },
18 "createdAt": { "type": "string", "format": "datetime" }
19 }
20 }
21 }
22 }
23}