atproto upvotes and link aggregation
atproto
lexicon
upvote
1{
2 "id": "at.upvote.getVerifierRecords",
3 "defs": {
4 "main": {
5 "type": "query",
6 "output": {
7 "schema": {
8 "type": "object",
9 "required": [
10 "records"
11 ],
12 "properties": {
13 "cursor": {
14 "type": "string"
15 },
16 "records": {
17 "type": "array",
18 "items": {
19 "type": "ref",
20 "ref": "at.upvote.getVerifications#verification"
21 }
22 }
23 }
24 },
25 "encoding": "application/json"
26 },
27 "parameters": {
28 "type": "params",
29 "required": [
30 "verifier"
31 ],
32 "properties": {
33 "verifier": {
34 "type": "string",
35 "format": "did",
36 "description": "The verifier whose issued verification records to list."
37 },
38 "limit": {
39 "type": "integer",
40 "default": 50,
41 "maximum": 100,
42 "minimum": 1
43 },
44 "cursor": {
45 "type": "string"
46 }
47 }
48 },
49 "description": "Get app.bsky.graph.verification records indexed from the network that a verifier has issued, the by-verifier twin of at.upvote.getVerifications, letting a consumer with a small trusted-verifier set materialize the whole record path in a handful of requests. Reports what exists, not what to believe: callers apply their own trust in verifiers and their own validity rules."
50 }
51 },
52 "$type": "com.atproto.lexicon.schema",
53 "lexicon": 1
54}