dev.mccue.jvm.module
Schema Diff
+5 -0
Compatibility Analysis
Breaking Changes Detected
1 breaking change, 2 non-breaking changes.
Breaking Changes (1)
- ConstraintAdded ConstraintAdded { vertex_id: "dev.mccue.jvm.module:body.indexMe", sort: "default", value: "false" }
Non-Breaking Changes (2)
- AddedVertex AddedVertex { vertex_id: "dev.mccue.jvm.module:body.indexMe" }
- AddedEdge AddedEdge { src: "dev.mccue.jvm.module:body", tgt: "dev.mccue.jvm.module:body.indexMe", kind: "prop", name: Some("indexMe") }
Migration Guidance
Added Elements
AddedVertex { vertex_id: "dev.mccue.jvm.module:body.indexMe" }
Constraint Changes
- ConstraintAdded ConstraintAdded { vertex_id: "dev.mccue.jvm.module:body.indexMe", sort: "default", value: "false" }
Additional Notes
- Non-breaking: AddedEdge { src: "dev.mccue.jvm.module:body", tgt: "dev.mccue.jvm.module:body.indexMe", kind: "prop", name: Some("indexMe") }
1
1
{
2
2
"id": "dev.mccue.jvm.module",
3
3
"defs": {
4
4
"main": {
5
5
"key": "any",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"artifact",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
+
"indexMe": {
15
+
"type": "boolean",
16
+
"default": false,
17
+
"description": "Whether this module should is intented for listing on public indexes"
18
+
},
14
19
"license": {
15
20
"type": "string",
16
21
"description": "SPDX License String"
17
22
},
18
23
"artifact": {
19
24
"type": "blob",
20
25
"accept": [
21
26
"application/zip",
22
27
"application/java-archive"
23
28
],
24
29
"maxSize": 10000000
25
30
},
26
31
"createdAt": {
27
32
"type": "string",
28
33
"format": "datetime"
29
34
},
30
35
"billOfMaterials": {
31
36
"type": "string",
32
37
"description": "SBOM in CycloneDX format"
33
38
}
34
39
}
35
40
},
36
41
"description": "A JVM Module published for wider consumption."
37
42
}
38
43
},
39
44
"$type": "com.atproto.lexicon.schema",
40
45
"lexicon": 1
41
46
}