atproto blogging
1{
2 "lexicon": 1,
3 "id": "tools.ozone.moderation.getRepo",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get details about a repository.",
8 "parameters": {
9 "type": "params",
10 "required": [
11 "did"
12 ],
13 "properties": {
14 "did": {
15 "type": "string",
16 "format": "did"
17 }
18 }
19 },
20 "output": {
21 "encoding": "application/json",
22 "schema": {
23 "type": "ref",
24 "ref": "tools.ozone.moderation.defs#repoViewDetail"
25 }
26 },
27 "errors": [
28 {
29 "name": "RepoNotFound"
30 }
31 ]
32 }
33 }
34}