-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_sbom_cyclonedx.json
58 lines (58 loc) · 1.3 KB
/
example_sbom_cyclonedx.json
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
{
"$schema": "http://cyclonedx.org/schema/bom-1.4.schema.json",
"bomFormat": "CycloneDX",
"specVersion": "1.4",
"version": 1,
"serialNumber": "urn:uuid:123e4567-e89b-12d3-a456-426614174000",
"metadata": {
"timestamp": "2024-07-10T12:00:00Z",
"tools": [
{
"vendor": "ExampleToolVendor",
"name": "ExampleTool",
"version": "1.0.0"
}
],
"authors": [
{
"name": "John Doe",
"email": "john.doe@example.com",
"organization": "ExampleCorp"
}
],
"component": {
"type": "application",
"name": "Example Application",
"version": "1.0.0"
}
},
"components": [
{
"type": "library",
"name": "ExampleComponent",
"version": "1.0.0",
"description": "A sample component",
"scope": "required",
"hashes": [
{
"alg": "SHA-256",
"content": "d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2d2"
}
],
"licenses": [
{
"license": {
"id": "Apache-2.0 AND (MIT OR GPL-2.0-only)"
}
}
],
"purl": "pkg:maven/com.example/ExampleComponent@1.0.0",
"properties": [
{
"name": "example:property",
"value": "value"
}
]
}
]
}