atproto blogging
at main 52 lines 1.3 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.unspecced.getTrendingTopics", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of trending topics", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "limit": { 12 "type": "integer", 13 "default": 10, 14 "minimum": 1, 15 "maximum": 25 16 }, 17 "viewer": { 18 "type": "string", 19 "description": "DID of the account making the request (not included for public/unauthenticated queries). Used to boost followed accounts in ranking.", 20 "format": "did" 21 } 22 } 23 }, 24 "output": { 25 "encoding": "application/json", 26 "schema": { 27 "type": "object", 28 "required": [ 29 "topics", 30 "suggested" 31 ], 32 "properties": { 33 "suggested": { 34 "type": "array", 35 "items": { 36 "type": "ref", 37 "ref": "app.bsky.unspecced.defs#trendingTopic" 38 } 39 }, 40 "topics": { 41 "type": "array", 42 "items": { 43 "type": "ref", 44 "ref": "app.bsky.unspecced.defs#trendingTopic" 45 } 46 } 47 } 48 } 49 } 50 } 51 } 52}