atproto blogging
at main 49 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "app.bsky.actor.getSuggestions", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "cursor": { 12 "type": "string" 13 }, 14 "limit": { 15 "type": "integer", 16 "default": 50, 17 "minimum": 1, 18 "maximum": 100 19 } 20 } 21 }, 22 "output": { 23 "encoding": "application/json", 24 "schema": { 25 "type": "object", 26 "required": [ 27 "actors" 28 ], 29 "properties": { 30 "actors": { 31 "type": "array", 32 "items": { 33 "type": "ref", 34 "ref": "app.bsky.actor.defs#profileView" 35 } 36 }, 37 "cursor": { 38 "type": "string" 39 }, 40 "recId": { 41 "type": "integer", 42 "description": "Snowflake for this recommendation, use when submitting recommendation events." 43 } 44 } 45 } 46 } 47 } 48 } 49}