dev.mccue.jvm.module
Schema Diff
+0 -0
Compatibility Analysis
Backward Compatible
No changes detected.
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
"variants",
11
11
"createdAt"
12
12
],
13
13
"properties": {
14
14
"indexMe": {
15
15
"type": "boolean",
16
16
"default": false
17
17
},
18
18
"variants": {
19
19
"type": "array",
20
20
"items": {
21
21
"ref": "dev.mccue.jvm.module#variant",
22
22
"type": "ref"
23
23
},
24
24
"minLength": 1,
25
25
"description": "Variants of the same module at the same 'version'"
26
26
},
27
27
"createdAt": {
28
28
"type": "string",
29
29
"format": "datetime"
30
30
}
31
31
}
32
32
},
33
33
"description": "A JVM Module published for wider consumption."
34
34
},
35
35
"variant": {
36
36
"type": "object",
37
37
"required": [
38
38
"artifact"
39
39
],
40
40
"properties": {
41
41
"license": {
42
42
"type": "string",
43
43
"description": "SPDX License String"
44
44
},
45
45
"artifact": {
46
46
"type": "blob",
47
47
"accept": [
48
48
"application/zip",
49
49
"application/java-archive"
50
50
],
51
51
"maxSize": 10000000
52
52
},
53
53
"copiedFrom": {
54
54
"ref": "com.atproto.repo.strongRef",
55
55
"type": "ref",
56
56
"description": "A reference to where this module was copied from."
57
57
},
58
58
"billOfMaterials": {
59
59
"type": "string",
60
60
"description": "SBOM in CycloneDX format"
61
61
},
62
62
"cpuArchitecture": {
63
63
"type": "string"
64
64
},
65
65
"operatingSystem": {
66
66
"type": "string"
67
67
}
68
68
}
69
69
}
70
70
},
71
71
"$type": "com.atproto.lexicon.schema",
72
72
"lexicon": 1
73
73
}