space.highport.manage.getMyActivity
Schema Diff
+4 -4
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "space.highport.manage.getMyActivity",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "AnalyticsDisabled",
9
9
"description": "This deployment has no analytics store configured."
10
10
}
11
11
],
12
12
"output": {
13
13
"schema": {
14
14
"type": "object",
15
15
"required": [
16
16
"domains"
17
17
],
18
18
"properties": {
19
19
"cursor": {
20
20
"type": "string",
21
21
"description": "Present when more entries exist."
22
22
},
23
23
"domains": {
24
24
"type": "array",
25
25
"items": {
26
26
"type": "object",
27
27
"required": [
28
28
"domain",
29
29
"requests",
30
30
"bytesBilled",
31
31
"lastSeen"
32
32
],
33
33
"properties": {
34
34
"domain": {
35
35
"type": "string",
36
36
"description": "The domain browsed."
37
37
},
38
38
"lastSeen": {
39
39
"type": "string",
40
40
"format": "datetime",
41
41
"description": "The most recent request."
42
42
},
43
43
"requests": {
44
44
"type": "integer",
45
45
"description": "Responses received."
46
46
},
47
47
"asVisitor": {
48
48
"type": "boolean",
49
-
"description": "Whether this drew on the caller's allowance as a visitor to somebody else's sender-pays site, rather than as the domain's own owner."
49
+
"description": "True when this was a visit to someone else's sender-pays site, rather than the caller's own domain."
50
50
},
51
51
"bytesBilled": {
52
52
"type": "integer",
53
-
"description": "Billed bytes drawn from this identity's own allowance."
53
+
"description": "Bytes billed to the caller's allowance."
54
54
}
55
55
},
56
-
"description": "One domain this identity browsed, and what it drew."
56
+
"description": "One domain the caller browsed, and what it cost."
57
57
}
58
58
}
59
59
}
60
60
},
61
61
"encoding": "application/json"
62
62
},
63
63
"parameters": {
64
64
"type": "params",
65
65
"properties": {
66
66
"to": {
67
67
"type": "string",
68
68
"format": "datetime",
69
69
"description": "Exclusive upper bound. Defaults to now."
70
70
},
71
71
"from": {
72
72
"type": "string",
73
73
"format": "datetime",
74
74
"description": "Inclusive lower bound. Defaults to 30 days ago."
75
75
},
76
76
"limit": {
77
77
"type": "integer",
78
78
"default": 50,
79
79
"maximum": 100,
80
80
"minimum": 1,
81
81
"description": "Maximum entries to return."
82
82
},
83
83
"cursor": {
84
84
"type": "string",
85
85
"description": "Pagination cursor from a previous response."
86
86
}
87
87
}
88
88
},
89
-
"description": "The calling identity's own browsing, across every domain it authenticated to. There is no parameter for whose activity to read: this view belongs to its subject, and it exists so a person being billed can audit the bill."
89
+
"description": "The caller's own browsing across every domain it signed in to, so it can check what it was billed for. There is no way to read anyone else's."
90
90
}
91
91
},
92
92
"$type": "com.atproto.lexicon.schema",
93
93
"lexicon": 1
94
94
}