atproto blogging
at main 54 lines 1.2 kB view raw
1{ 2 "lexicon": 1, 3 "id": "tools.ozone.signature.searchAccounts", 4 "defs": { 5 "main": { 6 "type": "query", 7 "description": "Search for accounts that match one or more threat signature values.", 8 "parameters": { 9 "type": "params", 10 "required": [ 11 "values" 12 ], 13 "properties": { 14 "cursor": { 15 "type": "string" 16 }, 17 "limit": { 18 "type": "integer", 19 "default": 50, 20 "minimum": 1, 21 "maximum": 100 22 }, 23 "values": { 24 "type": "array", 25 "items": { 26 "type": "string" 27 } 28 } 29 } 30 }, 31 "output": { 32 "encoding": "application/json", 33 "schema": { 34 "type": "object", 35 "required": [ 36 "accounts" 37 ], 38 "properties": { 39 "accounts": { 40 "type": "array", 41 "items": { 42 "type": "ref", 43 "ref": "com.atproto.admin.defs#accountView" 44 } 45 }, 46 "cursor": { 47 "type": "string" 48 } 49 } 50 } 51 } 52 } 53 } 54}