forked from CycloneDX/cyclonedx-python-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalid-compositions-1.6.json
More file actions
82 lines (82 loc) · 1.83 KB
/
valid-compositions-1.6.json
File metadata and controls
82 lines (82 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "http://cyclonedx.org/schema/bom-1.6.schema.json",
"bomFormat": "CycloneDX",
"specVersion": "1.6",
"serialNumber": "urn:uuid:3e671687-395b-41f5-a30f-a58921a69b79",
"version": 1,
"metadata": {
"component": {
"bom-ref": "acme-application-1.0",
"type": "application",
"name": "Acme Application",
"version": "1.0"
}
},
"components": [
{
"bom-ref": "pkg:maven/partner/shaded-library@1.0",
"type": "library",
"name": "Partner Shaded Library",
"version": "1.0",
"purl": "pkg:maven/partner/shaded-library@1.0",
"components": [
{
"bom-ref": "pkg:maven/ossproject/library@2.0",
"type": "library",
"name": "Some Opensource Library",
"version": "2.0",
"purl": "pkg:maven/ossproject/library@2.0"
}
]
},
{
"bom-ref": "pkg:maven/acme/library@3.0",
"type": "library",
"name": "Acme Library",
"version": "3.0",
"purl": "pkg:maven/acme/library@3.0"
}
],
"dependencies": [
{
"ref": "acme-application-1.0",
"dependsOn": [
"pkg:maven/partner/shaded-library@1.0",
"pkg:maven/acme/library@3.0"
]
}
],
"vulnerabilities": [
{
"bom-ref": "vulnerability-1",
"id": "ACME-12345",
"source": {
"name": "Acme Inc"
}
}
],
"compositions": [
{
"bom-ref": "composition-1",
"aggregate": "complete",
"assemblies": [
"pkg:maven/partner/shaded-library@1.0"
],
"dependencies": [
"acme-application-1.0"
]
},
{
"aggregate": "unknown",
"assemblies": [
"pkg:maven/acme/library@3.0"
]
},
{
"aggregate": "incomplete_first_party_only",
"vulnerabilities": [
"vulnerability-1"
]
}
]
}