-
Notifications
You must be signed in to change notification settings - Fork 554
/
describeFeedGenerator.json
39 lines (39 loc) · 1.05 KB
/
describeFeedGenerator.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"lexicon": 1,
"id": "app.bsky.feed.describeFeedGenerator",
"defs": {
"main": {
"type": "query",
"description": "Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).",
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["did", "feeds"],
"properties": {
"did": { "type": "string", "format": "did" },
"feeds": {
"type": "array",
"items": { "type": "ref", "ref": "#feed" }
},
"links": { "type": "ref", "ref": "#links" }
}
}
}
},
"feed": {
"type": "object",
"required": ["uri"],
"properties": {
"uri": { "type": "string", "format": "at-uri" }
}
},
"links": {
"type": "object",
"properties": {
"privacyPolicy": { "type": "string" },
"termsOfService": { "type": "string" }
}
}
}
}