0edef0ec01
* first pass schemas * requestFeedback boolean * rewrite schemas * tidy * tidy * tweaks * pr feedback * codegen + lint * changeset * rm default
34 lines
802 B
JSON
34 lines
802 B
JSON
{
|
|
"lexicon": 1,
|
|
"id": "app.bsky.feed.sendInteractions",
|
|
"defs": {
|
|
"main": {
|
|
"type": "procedure",
|
|
"description": "Send information about interactions with feed items back to the feed generator that served them.",
|
|
"input": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"required": ["interactions"],
|
|
"properties": {
|
|
"interactions": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "ref",
|
|
"ref": "app.bsky.feed.defs#interaction"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"output": {
|
|
"encoding": "application/json",
|
|
"schema": {
|
|
"type": "object",
|
|
"properties": {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|