space.highport.admin.listTileBindings
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.admin.listTileBindings",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"bindings"
11
11
],
12
12
"properties": {
13
13
"bindings": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "#binding",
17
17
"type": "ref"
18
18
}
19
19
}
20
20
}
21
21
},
22
22
"encoding": "application/json"
23
23
},
24
24
"parameters": {
25
25
"type": "params",
26
26
"properties": {
27
27
"cid": {
28
28
"type": "string",
29
29
"format": "cid",
30
30
"description": "One tile version. Mutually exclusive with uri."
31
31
},
32
32
"uri": {
33
33
"type": "string",
34
34
"format": "at-uri",
35
35
"description": "The tile record's AT-URI. Mutually exclusive with cid."
36
36
}
37
37
}
38
38
},
39
-
"description": "The domains bound to a tile — incident response's \"who is serving this\". Exactly one of uri and cid is given; uri covers every version, cid one."
39
+
"description": "The domains serving a tile. Give exactly one of uri (every version) or cid (one version)."
40
40
},
41
41
"binding": {
42
42
"type": "object",
43
43
"required": [
44
44
"domain",
45
45
"did",
46
46
"tileCid",
47
47
"activatedAt"
48
48
],
49
49
"properties": {
50
50
"did": {
51
51
"type": "string",
52
52
"format": "did",
53
53
"description": "The site owner, not the tile author."
54
54
},
55
55
"domain": {
56
56
"type": "string"
57
57
},
58
58
"tileCid": {
59
59
"type": "string",
60
60
"format": "cid",
61
61
"description": "The tile version the site pinned."
62
62
},
63
63
"activatedAt": {
64
64
"type": "string",
65
65
"format": "datetime"
66
66
}
67
67
},
68
68
"description": "One site serving one version of a tile."
69
69
}
70
70
},
71
71
"$type": "com.atproto.lexicon.schema",
72
72
"lexicon": 1
73
73
}