dev.tsunagite.listCharts
Schema Diff
+9 -4
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 4 non-breaking changes.
Breaking Changes (1)
- KindChanged KindChanged { vertex_id: "dev.tsunagite.listCharts:output", old_kind: "array", new_kind: "object" }
Non-Breaking Changes (4)
- AddedVertex AddedVertex { vertex_id: "dev.tsunagite.listCharts:output.charts" }
- AddedVertex AddedVertex { vertex_id: "dev.tsunagite.listCharts:output.charts:items" }
- AddedEdge AddedEdge { src: "dev.tsunagite.listCharts:output", tgt: "dev.tsunagite.listCharts:output.charts", kind: "prop", name: Some("charts") }
- AddedEdge AddedEdge { src: "dev.tsunagite.listCharts:output.charts", tgt: "dev.tsunagite.listCharts:output.charts:items", kind: "items", name: None }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "dev.tsunagite.listCharts:output.charts" }AddedVertex { vertex_id: "dev.tsunagite.listCharts:output.charts:items" }
Additional Notes
- Breaking: KindChanged { vertex_id: "dev.tsunagite.listCharts:output", old_kind: "array", new_kind: "object" }
- Non-breaking: AddedEdge { src: "dev.tsunagite.listCharts:output", tgt: "dev.tsunagite.listCharts:output.charts", kind: "prop", name: Some("charts") }
- Non-breaking: AddedEdge { src: "dev.tsunagite.listCharts:output.charts", tgt: "dev.tsunagite.listCharts:output.charts:items", kind: "items", name: None }
1
1
{
2
2
"id": "dev.tsunagite.listCharts",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
-
"type": "array",
9
-
"items": {
10
-
"ref": "dev.tsunagite.chart",
11
-
"type": "ref"
8
+
"type": "object",
9
+
"properties": {
10
+
"charts": {
11
+
"type": "array",
12
+
"items": {
13
+
"ref": "dev.tsunagite.chart",
14
+
"type": "ref"
15
+
}
16
+
}
12
17
}
13
18
},
14
19
"encoding": "application/json"
15
20
},
16
21
"parameters": {
17
22
"type": "params",
18
23
"properties": {
19
24
"game": {
20
25
"type": "string",
21
26
"format": "at-uri",
22
27
"description": "The game to find chart records for."
23
28
},
24
29
"song": {
25
30
"type": "string",
26
31
"format": "at-uri",
27
32
"description": "The song to find chart records for."
28
33
},
29
34
"owner": {
30
35
"type": "string",
31
36
"format": "at-identifier",
32
37
"description": "The handle or DID of the account to filter results to."
33
38
}
34
39
}
35
40
},
36
41
"description": "Batch chart fetch"
37
42
}
38
43
},
39
44
"$type": "com.atproto.lexicon.schema",
40
45
"lexicon": 1
41
46
}