A better Rust ATProto crate
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 48 lines 1.1 kB view raw
1{ 2 "lexicon": 1, 3 "id": "com.atproto.admin.searchAccounts", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Get list of accounts that matches your search query.", 8 "parameters": { 9 "type": "params", 10 "properties": { 11 "cursor": { 12 "type": "string" 13 }, 14 "email": { 15 "type": "string" 16 }, 17 "limit": { 18 "type": "integer", 19 "default": 50, 20 "minimum": 1, 21 "maximum": 100 22 } 23 } 24 }, 25 "output": { 26 "encoding": "application/json", 27 "schema": { 28 "type": "object", 29 "required": [ 30 "accounts" 31 ], 32 "properties": { 33 "accounts": { 34 "type": "array", 35 "items": { 36 "type": "ref", 37 "ref": "com.atproto.admin.defs#accountView" 38 } 39 }, 40 "cursor": { 41 "type": "string" 42 } 43 } 44 } 45 } 46 } 47 } 48}