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