com.suibari.nagi.getProfile
Schema Diff
+6 -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
+
"maxLength": 2,
34
35
"knownValues": [
35
36
"ja",
36
37
"en"
37
38
]
38
39
},
39
40
"actor": {
40
41
"type": "string"
41
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
+
},
42
48
"limit": {
43
49
"type": "integer",
44
50
"default": 50,
45
51
"maximum": 100,
46
52
"minimum": 1
47
53
},
48
54
"cursor": {
49
55
"type": "string"
50
56
},
51
57
"filter": {
52
58
"type": "string",
53
59
"default": "posts",
54
60
"knownValues": [
55
61
"posts",
56
62
"replies",
57
63
"media",
58
64
"reactions"
59
65
]
60
66
}
61
67
}
62
68
}
63
69
}
64
70
},
65
71
"$type": "com.atproto.lexicon.schema",
66
72
"lexicon": 1
67
73
}