|
| 1 | +{ |
| 2 | + "@context": "https://spdx.org/rdf/3.0.0/spdx-context.jsonld", |
| 3 | + "@graph": [ |
| 4 | + { |
| 5 | + "type": "CreationInfo", |
| 6 | + "@id": "_:creationinfo", |
| 7 | + "createdBy": [ |
| 8 | + "http://spdx.example.com/Agent/JoshuaWatt" |
| 9 | + ], |
| 10 | + "specVersion": "3.0.0", |
| 11 | + "created": "2024-03-06T00:00:00Z" |
| 12 | + }, |
| 13 | + { |
| 14 | + "type": "Person", |
| 15 | + "spdxId": "http://spdx.example.com/Agent/JoshuaWatt", |
| 16 | + "name": "Joshua Watt", |
| 17 | + "creationInfo": "_:creationinfo", |
| 18 | + "externalIdentifier": [ |
| 19 | + { |
| 20 | + "type": "ExternalIdentifier", |
| 21 | + "externalIdentifierType": "email", |
| 22 | + |
| 23 | + } |
| 24 | + ] |
| 25 | + }, |
| 26 | + { |
| 27 | + "type": "SpdxDocument", |
| 28 | + "spdxId": "http://spdx.example.com/Document1", |
| 29 | + "creationInfo": "_:creationinfo", |
| 30 | + "rootElement": [ |
| 31 | + "http://spdx.example.com/BOM1" |
| 32 | + ], |
| 33 | + "profileConformance": [ |
| 34 | + "core", |
| 35 | + "software" |
| 36 | + ] |
| 37 | + }, |
| 38 | + { |
| 39 | + "type": "software_Sbom", |
| 40 | + "spdxId": "http://spdx.example.com/BOM1", |
| 41 | + "creationInfo": "_:creationinfo", |
| 42 | + "rootElement": [ |
| 43 | + "http://spdx.example.com/Package1" |
| 44 | + ], |
| 45 | + "software_sbomType": [ |
| 46 | + "build" |
| 47 | + ] |
| 48 | + }, |
| 49 | + { |
| 50 | + "type": "software_Package", |
| 51 | + "spdxId": "http://spdx.example.com/Package1", |
| 52 | + "creationInfo": "_:creationinfo", |
| 53 | + "name": "my-package", |
| 54 | + "software_packageVersion": "1.0", |
| 55 | + "software_downloadLocation": "http://dl.example.com/my-package_1.0.0.tar", |
| 56 | + "builtTime": "2024-03-06T00:00:00Z", |
| 57 | + "originatedBy": [ |
| 58 | + "http://spdx.example.com/Agent/JoshuaWatt" |
| 59 | + ] |
| 60 | + }, |
| 61 | + { |
| 62 | + "type": "software_File", |
| 63 | + "spdxId": "http://spdx.example.com/Package1/myprogram", |
| 64 | + "creationInfo": "_:creationinfo", |
| 65 | + "name": "myprogram", |
| 66 | + "software_primaryPurpose": "executable", |
| 67 | + "software_additionalPurpose": [ |
| 68 | + "application" |
| 69 | + ], |
| 70 | + "software_copyrightText": "Copyright 2024, Joshua Watt", |
| 71 | + "builtTime": "2024-03-06T00:00:00Z", |
| 72 | + "originatedBy": [ |
| 73 | + "http://spdx.example.com/Agent/JoshuaWatt" |
| 74 | + ] |
| 75 | + }, |
| 76 | + { |
| 77 | + "type": "Relationship", |
| 78 | + "spdxId": "http://spdx.example.com/Relationship/1", |
| 79 | + "creationInfo": "_:creationinfo", |
| 80 | + "from": "http://spdx.example.com/Package1", |
| 81 | + "relationshipType": "contains", |
| 82 | + "to": [ |
| 83 | + "http://spdx.example.com/Package1/myprogram" |
| 84 | + ], |
| 85 | + "completeness": "complete" |
| 86 | + } |
| 87 | + ] |
| 88 | +} |
0 commit comments