A personal website powered by Astro and ATProto
1{
2 "lexicon": 1,
3 "id": "a.status.update",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A simple status update record",
8 "key": "self",
9 "record": {
10 "type": "object",
11 "required": ["text", "createdAt"],
12 "properties": {
13 "text": {
14 "type": "string",
15 "description": "The status update text"
16 },
17 "createdAt": {
18 "type": "string",
19 "format": "datetime",
20 "description": "When the status was created"
21 }
22 }
23 }
24 }
25 }
26}