slack status without the slack
status.zzstoatzz.io/
quickslice
1{
2 "lexicon": 1,
3 "id": "io.zzstoatzz.status.record",
4 "defs": {
5 "main": {
6 "type": "record",
7 "key": "tid",
8 "record": {
9 "type": "object",
10 "required": ["emoji", "createdAt"],
11 "properties": {
12 "emoji": {
13 "type": "string",
14 "description": "Status emoji or custom emoji slug (e.g. custom:bufo-stab)",
15 "minLength": 1,
16 "maxLength": 64
17 },
18 "text": {
19 "type": "string",
20 "description": "Optional status text description",
21 "maxLength": 256,
22 "maxGraphemes": 256
23 },
24 "expires": {
25 "type": "string",
26 "format": "datetime",
27 "description": "Optional expiration timestamp for this status"
28 },
29 "createdAt": {
30 "type": "string",
31 "format": "datetime",
32 "description": "When this status was created"
33 }
34 }
35 }
36 }
37 }
38}