garden.lexicon.exultant-zebra.distribution
Schema Diff
+5 -0
Compatibility Analysis
Backward Compatible
Backward compatible. 2 non-breaking changes.
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "garden.lexicon.exultant-zebra.distribution:body.version" }
- AddedEdge AddedEdge { src: "garden.lexicon.exultant-zebra.distribution:body", tgt: "garden.lexicon.exultant-zebra.distribution:body.version", kind: "prop", name: Some("version") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "garden.lexicon.exultant-zebra.distribution:body.version" }
Additional Notes
- Non-breaking: AddedEdge { src: "garden.lexicon.exultant-zebra.distribution:body", tgt: "garden.lexicon.exultant-zebra.distribution:body.version", kind: "prop", name: Some("version") }
1
1
{
2
2
"id": "garden.lexicon.exultant-zebra.distribution",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"app",
11
+
"version",
11
12
"data"
12
13
],
13
14
"properties": {
14
15
"os": {
15
16
"type": "string",
16
17
"description": "The operating system and platform, e.g. 'apple-darwin', 'unknown-linux-gnu'."
17
18
},
18
19
"app": {
19
20
"type": "string",
20
21
"format": "at-uri",
21
22
"description": "AT-URI of the application this distribution belongs to."
22
23
},
23
24
"arch": {
24
25
"type": "string",
25
26
"description": "The CPU architecture, e.g. 'aarch64', 'x86_64'."
26
27
},
27
28
"data": {
28
29
"type": "blob",
29
30
"accept": [
30
31
"*/*"
31
32
],
32
33
"description": "The distribution binary."
34
+
},
35
+
"version": {
36
+
"type": "string",
37
+
"description": "The version of this distribution, e.g. '0.14.0'."
33
38
}
34
39
}
35
40
},
36
41
"description": "A distribution of an application for a specific platform."
37
42
}
38
43
},
39
44
"lexicon": 1
40
45
}