atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.feed.sendInteractions",
4 "defs": {
5 "main": {
6 "type": "procedure",
7 "description": "Send information about interactions with feed items back to the feed generator that served them.",
8 "input": {
9 "encoding": "application/json",
10 "schema": {
11 "type": "object",
12 "required": [
13 "interactions"
14 ],
15 "properties": {
16 "interactions": {
17 "type": "array",
18 "items": {
19 "type": "ref",
20 "ref": "app.bsky.feed.defs#interaction"
21 }
22 }
23 }
24 }
25 },
26 "output": {
27 "encoding": "application/json",
28 "schema": {
29 "type": "object",
30 "properties": {}
31 }
32 }
33 }
34 }
35}