rsvp.atmo.space.listRecords
Schema Diff
+4 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "rsvp.atmo.space.listRecords",
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
"records"
19
19
],
20
20
"properties": {
21
21
"cursor": {
22
22
"type": "string"
23
23
},
24
24
"records": {
25
25
"type": "array",
26
26
"items": {
27
27
"ref": "rsvp.atmo.space.defs#recordView",
28
28
"type": "ref"
29
29
}
30
30
}
31
31
}
32
32
},
33
33
"encoding": "application/json"
34
34
},
35
35
"parameters": {
36
36
"type": "params",
37
37
"required": [
38
38
"spaceUri",
39
39
"collection"
40
40
],
41
41
"properties": {
42
42
"limit": {
43
43
"type": "integer",
44
44
"default": 50,
45
45
"maximum": 200,
46
46
"minimum": 1
47
47
},
48
48
"byUser": {
49
49
"type": "string",
50
50
"format": "did",
51
51
"description": "Only return records authored by this DID."
52
52
},
53
53
"cursor": {
54
54
"type": "string"
55
55
},
56
56
"spaceUri": {
57
57
"type": "string",
58
58
"format": "at-uri"
59
59
},
60
60
"collection": {
61
61
"type": "string",
62
62
"format": "nsid"
63
+
},
64
+
"inviteToken": {
65
+
"type": "string",
66
+
"description": "Read-grant invite token. When supplied, replaces JWT auth for this read."
63
67
}
64
68
}
65
69
},
66
70
"description": "List records of a given collection within a space. Access is governed by the space's collection policy."
67
71
}
68
72
},
69
73
"$type": "com.atproto.lexicon.schema",
70
74
"lexicon": 1
71
75
}