Skip to content

Commit 6c43edb

Browse files
authored
Merge pull request #73 from spdx/nowandfuture
Add example for SBOMs and SPDX Now and in the Future presentation
2 parents 26fa358 + 31b9d16 commit 6c43edb

File tree

1 file changed

+92
-0
lines changed

1 file changed

+92
-0
lines changed
Lines changed: 92 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
1+
{
2+
"SPDXID" : "SPDXRef-DOCUMENT",
3+
"spdxVersion" : "SPDX-2.3",
4+
"creationInfo" : {
5+
"comment" : "SPDX 2.3 SBOM for the ACME example",
6+
"created" : "2023-10-08T18:30:22Z",
7+
"creators" : [ "Organization: ExampleCodeInspect ()", "Person: Jane Doe ()" ],
8+
"licenseListVersion" : "3.17"
9+
},
10+
"name" : "ACME SBOM",
11+
"dataLicense" : "CC0-1.0",
12+
"comment" : "This document is an example of the ACME example",
13+
"documentDescribes" : [ "SPDXRef-Acme" ],
14+
"documentNamespace" : "http://spdx.org/spdxdocs/spdx-example-4ca64a7e-2f6f-41bf-8b18-16da59d67824",
15+
"packages" : [ {
16+
"SPDXID" : "SPDXRef-Acme",
17+
"checksums" : [ {
18+
"algorithm" : "SHA1",
19+
"checksumValue" : "85ed0817af83a24ad8da68c2b5094de69833983c"
20+
} ],
21+
"copyrightText" : "Copyright 2008-2010 John Smith",
22+
"description" : "The ACME package is a typical application we use in SPDX examples",
23+
"downloadLocation" : "https://examle.com/download/acme-v1.3.tar.gz",
24+
"filesAnalyzed" : false,
25+
"licenseConcluded" : "Apache-2.0",
26+
"licenseDeclared" : "Apache-2.0",
27+
"licenseInfoFromFiles" : [ "Apache-2.0" ],
28+
"name" : "Acme Applcation",
29+
"originator" : "Organization: ExampleCodeInspect ([email protected])",
30+
"packageFileName" : "acme-v1.3.tar.gz",
31+
"primaryPackagePurpose" : "APPLICATION",
32+
"summary" : "Example ACME Application",
33+
"supplier" : "Person: Jane Doe ([email protected])",
34+
"versionInfo" : "2.3"
35+
}, {
36+
"SPDXID" : "SPDXRef-npm-elliptic",
37+
"downloadLocation" : "https://github.com/indutny/elliptic/blob/v6.5.2/dist/elliptic.min.js",
38+
"filesAnalyzed" : false,
39+
"homepage" : "https://github.com/indutny/elliptic",
40+
"licenseConcluded" : "MIT",
41+
"licenseDeclared" : "MIT",
42+
"name" : "elliptic",
43+
"versionInfo" : "6.5.2",
44+
"externalRefs" : [ {
45+
"referenceCategory" : "PACKAGE-MANAGER",
46+
"referenceLocator" : "pkg:npm/[email protected]",
47+
"referenceType" : "purl"
48+
}, {
49+
"referenceCategory" : "SECURITY",
50+
"referenceLocator" : "https://nvd.nist.gov/vuln/detail/CVE-2020-28498",
51+
"referenceType" : "advisory"
52+
} ]
53+
}, {
54+
"SPDXID" : "SPDXRef-alpine",
55+
"downloadLocation" : "NOASSERTION",
56+
"filesAnalyzed" : false,
57+
"homepage" : "https://github.com/indutny/elliptic",
58+
"name" : "alpine",
59+
"versionInfo" : "latest"
60+
}, {
61+
"SPDXID" : "SPDXRef-openssl",
62+
"downloadLocation" : "NOASSERTION",
63+
"filesAnalyzed" : false,
64+
"homepage" : "https://www.openssl.org/source/",
65+
"licenseConcluded" : "Apache-2.0",
66+
"licenseDeclared" : "Apache-2.0",
67+
"name" : "OpenSSL",
68+
"versionInfo" : "3.0.4",
69+
"externalRefs" : [ {
70+
"referenceCategory" : "PACKAGE-MANAGER",
71+
"referenceLocator" : "pkg:alpine/[email protected]",
72+
"referenceType" : "purl"
73+
}, {
74+
"referenceCategory" : "SECURITY",
75+
"referenceLocator" : "https://nvd.nist.gov/vuln/detail/CVE-2022-2274",
76+
"referenceType" : "advisory"
77+
} ]
78+
} ],
79+
"relationships" : [ {
80+
"spdxElementId" : "SPDXRef-Acme",
81+
"relationshipType" : "CONTAINS",
82+
"relatedSpdxElement" : "SPDXRef-npm-elliptic"
83+
}, {
84+
"spdxElementId" : "SPDXRef-Acme",
85+
"relationshipType" : "CONTAINS",
86+
"relatedSpdxElement" : "SPDXRef-alpine"
87+
}, {
88+
"spdxElementId" : "SPDXRef-Acme",
89+
"relationshipType" : "CONTAINS",
90+
"relatedSpdxElement" : "SPDXRef-openssl"
91+
} ]
92+
}

0 commit comments

Comments
 (0)