atproto/lexicons/tools/ozone/signature/searchAccounts.json
Daniel Holmgren df14df522b
Ozone signature methods (#2855)
* lexicons

* fix typo & add proxy routes

* changeset
2024-10-03 14:00:12 -05:00

47 lines
1.1 KiB
JSON

{
"lexicon": 1,
"id": "tools.ozone.signature.searchAccounts",
"defs": {
"main": {
"type": "query",
"description": "Search for accounts that match one or more threat signature values.",
"parameters": {
"type": "params",
"required": ["values"],
"properties": {
"values": {
"type": "array",
"items": {
"type": "string"
}
},
"cursor": { "type": "string" },
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 100,
"default": 50
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["accounts"],
"properties": {
"cursor": { "type": "string" },
"accounts": {
"type": "array",
"items": {
"type": "ref",
"ref": "com.atproto.admin.defs#accountView"
}
}
}
}
}
}
}
}