st.snowpo.post
Schema Diff
+6 -1
1
1
{
2
2
"id": "st.snowpo.post",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"content",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"content": {
15
15
"type": "blob",
16
16
"accept": [
17
17
"text/markdown"
18
18
],
19
19
"maxSize": 1000000
20
20
},
21
21
"createdAt": {
22
22
"type": "string",
23
23
"format": "datetime",
24
24
"description": "Client-declared timestamp when this post was originally created."
25
25
},
26
26
"updatedAt": {
27
27
"type": "string",
28
28
"format": "datetime",
29
29
"description": "Client-declared timestamp when this post was last updated."
30
30
},
31
+
"commentRoot": {
32
+
"type": "string",
33
+
"format": "at-uri",
34
+
"description": "A Bluesky post to use as the comment root"
35
+
},
31
36
"previewText": {
32
37
"type": "string",
33
38
"maxLength": 300,
34
-
"description": "Display title"
39
+
"description": "Display title or preview text"
35
40
}
36
41
}
37
42
},
38
43
"description": "Record linking to a Markdown file."
39
44
}
40
45
},
41
46
"$type": "com.atproto.lexicon.schema",
42
47
"lexicon": 1
43
48
}