social.nstar.epds.repo.getStatus
Schema Diff
+2 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.nstar.epds.repo.getStatus",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"errors": [
8
8
{
9
9
"name": "RepoNotFound"
10
10
}
11
11
],
12
12
"schema": {
13
13
"type": "object",
14
14
"required": [
15
15
"did",
16
16
"active"
17
17
],
18
18
"properties": {
19
19
"did": {
20
20
"type": "string",
21
21
"format": "did"
22
22
},
23
23
"rev": {
24
24
"type": "string",
25
25
"format": "tid",
26
26
"description": "Optional field, the current rev of the repo, if active=true"
27
27
},
28
28
"active": {
29
29
"type": "boolean"
30
30
},
31
31
"status": {
32
32
"type": "string",
33
33
"description": "If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.",
34
34
"knownValues": [
35
35
"takendown",
36
36
"suspended",
37
37
"deleted",
38
38
"deactivated",
39
39
"desynchronized",
40
40
"throttled"
41
41
]
42
42
}
43
43
}
44
-
}
44
+
},
45
+
"encoding": "application/json"
45
46
},
46
-
"encoding": "application/json",
47
47
"parameters": {
48
48
"type": "params",
49
49
"required": [
50
50
"did"
51
51
],
52
52
"properties": {
53
53
"did": {
54
54
"type": "string",
55
55
"format": "did",
56
56
"description": "The DID of the repo."
57
57
}
58
58
}
59
59
},
60
60
"description": "Get the hosting status for a repository, on this server."
61
61
}
62
62
},
63
63
"$type": "com.atproto.lexicon.schema",
64
64
"lexicon": 1
65
65
}