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

* fix typo & add proxy routes

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

40 lines
900 B
JSON

{
"lexicon": 1,
"id": "tools.ozone.signature.findCorrelation",
"defs": {
"main": {
"type": "query",
"description": "Find all correlated threat signatures between 2 or more accounts.",
"parameters": {
"type": "params",
"required": ["dids"],
"properties": {
"dids": {
"type": "array",
"items": {
"type": "string",
"format": "did"
}
}
}
},
"output": {
"encoding": "application/json",
"schema": {
"type": "object",
"required": ["details"],
"properties": {
"details": {
"type": "array",
"items": {
"type": "ref",
"ref": "tools.ozone.signature.defs#sigDetail"
}
}
}
}
}
}
}
}