app.bsky.feed.sendInteractions
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "app.bsky.feed.sendInteractions:input.feed" }
- AddedEdge AddedEdge { src: "app.bsky.feed.sendInteractions:input", tgt: "app.bsky.feed.sendInteractions:input.feed", kind: "prop", name: Some("feed") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "app.bsky.feed.sendInteractions:input.feed" }
Additional Notes
- Non-breaking: AddedEdge { src: "app.bsky.feed.sendInteractions:input", tgt: "app.bsky.feed.sendInteractions:input.feed", kind: "prop", name: Some("feed") }
1
1
{
2
2
"id": "app.bsky.feed.sendInteractions",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"interactions"
11
11
],
12
12
"properties": {
13
+
"feed": {
14
+
"type": "string",
15
+
"format": "at-uri"
16
+
},
13
17
"interactions": {
14
18
"type": "array",
15
19
"items": {
16
20
"ref": "app.bsky.feed.defs#interaction",
17
21
"type": "ref"
18
22
}
19
23
}
20
24
}
21
25
},
22
26
"encoding": "application/json"
23
27
},
24
28
"output": {
25
29
"schema": {
26
30
"type": "object",
27
31
"properties": {}
28
32
},
29
33
"encoding": "application/json"
30
34
},
31
35
"description": "Send information about interactions with feed items back to the feed generator that served them."
32
36
}
33
37
},
34
38
"$type": "com.atproto.lexicon.schema",
35
39
"lexicon": 1
36
40
}