rsvp.atmo.space.getSpace
Schema Diff
+5 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "rsvp.atmo.space.getSpace",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "NotFound"
9
9
},
10
10
{
11
11
"name": "Forbidden"
12
12
}
13
13
],
14
14
"output": {
15
15
"schema": {
16
16
"type": "object",
17
17
"required": [
18
18
"space"
19
19
],
20
20
"properties": {
21
21
"space": {
22
22
"ref": "rsvp.atmo.space.defs#spaceView",
23
23
"type": "ref"
24
24
}
25
25
}
26
26
},
27
27
"encoding": "application/json"
28
28
},
29
29
"parameters": {
30
30
"type": "params",
31
31
"required": [
32
32
"uri"
33
33
],
34
34
"properties": {
35
35
"uri": {
36
36
"type": "string",
37
37
"format": "at-uri"
38
+
},
39
+
"inviteToken": {
40
+
"type": "string",
41
+
"description": "Read-grant invite token. When supplied, replaces JWT auth for this read."
38
42
}
39
43
}
40
44
},
41
-
"description": "Get metadata for a single space. Caller must be a member or the owner."
45
+
"description": "Get metadata for a single space. Caller must be a member, the owner, or hold a read-grant invite token."
42
46
}
43
47
},
44
48
"$type": "com.atproto.lexicon.schema",
45
49
"lexicon": 1
46
50
}