com.suibari.nagi.getProfile
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "com.suibari.nagi.getProfile",
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
"profile",
11
11
"feed"
12
12
],
13
13
"properties": {
14
14
"feed": {
15
15
"ref": "com.suibari.nagi.getTimeline#output",
16
16
"type": "ref"
17
17
},
18
18
"profile": {
19
19
"type": "unknown"
20
20
}
21
21
}
22
22
},
23
23
"encoding": "application/json"
24
24
},
25
25
"parameters": {
26
26
"type": "params",
27
27
"required": [
28
28
"actor"
29
29
],
30
30
"properties": {
31
31
"lang": {
32
32
"type": "string",
33
33
"default": "ja",
34
34
"maxLength": 2,
35
35
"knownValues": [
36
36
"ja",
37
37
"en"
38
38
]
39
39
},
40
40
"actor": {
41
41
"type": "string"
42
42
},
43
+
"group": {
44
+
"type": "boolean",
45
+
"default": false,
46
+
"description": "Return one timeline-style conversation per thread matched by the filter, ordered by latest human activity."
47
+
},
43
48
"limit": {
44
49
"type": "integer",
45
50
"default": 50,
46
51
"maximum": 100,
47
52
"minimum": 1
48
53
},
49
54
"cursor": {
50
55
"type": "string"
51
56
},
52
57
"filter": {
53
58
"type": "string",
54
59
"default": "posts",
55
60
"knownValues": [
56
61
"posts",
57
62
"replies",
58
63
"media",
59
64
"reactions"
60
65
]
61
66
}
62
67
}
63
68
}
64
69
}
65
70
},
66
71
"$type": "com.atproto.lexicon.schema",
67
72
"lexicon": 1
68
73
}