app.atmobb.discussion.reply
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "app.atmobb.discussion.reply:body.editedAt" }
- AddedEdge AddedEdge { src: "app.atmobb.discussion.reply:body", tgt: "app.atmobb.discussion.reply:body.editedAt", kind: "prop", name: Some("editedAt") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.atmobb.discussion.reply:body.editedAt" }
Additional Notes
- Non-breaking: AddedEdge { src: "app.atmobb.discussion.reply:body", tgt: "app.atmobb.discussion.reply:body.editedAt", kind: "prop", name: Some("editedAt") }
1
1
{
2
2
"id": "app.atmobb.discussion.reply",
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
"thread",
11
11
"body"
12
12
],
13
13
"properties": {
14
14
"body": {
15
15
"type": "array",
16
16
"items": {
17
17
"refs": [
18
18
"app.atmobb.richtext.block#text",
19
19
"app.atmobb.richtext.block#quote",
20
20
"app.atmobb.richtext.block#code",
21
21
"app.atmobb.richtext.block#image"
22
22
],
23
23
"type": "union"
24
24
},
25
25
"maxLength": 200
26
26
},
27
27
"parent": {
28
28
"ref": "com.atproto.repo.strongRef",
29
29
"type": "ref",
30
30
"description": "A specific reply this responds to, for quote-chains. Absent means replying to the thread."
31
31
},
32
32
"thread": {
33
33
"ref": "com.atproto.repo.strongRef",
34
34
"type": "ref",
35
35
"description": "The app.atmobb.discussion.thread being replied to."
36
36
},
37
+
"editedAt": {
38
+
"type": "string",
39
+
"format": "datetime",
40
+
"description": "When the author last edited the body (or title). Absent means never edited."
41
+
},
37
42
"createdAt": {
38
43
"type": "string",
39
44
"format": "datetime"
40
45
}
41
46
}
42
47
},
43
48
"description": "A reply in a thread. Lives in the author's repo. Flat by default; parent enables quote-chain threading."
44
49
}
45
50
},
46
51
"$type": "com.atproto.lexicon.schema",
47
52
"lexicon": 1
48
53
}