-
-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added valid standard JSON and XML test cases and minor corrections to…
… schemas. Signed-off-by: Steve Springett <[email protected]>
- Loading branch information
1 parent
7b6c563
commit 5be18a1
Showing
3 changed files
with
130 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
{ | ||
"bomFormat": "CycloneDX", | ||
"specVersion": "1.6", | ||
"serialNumber": "urn:uuid:3e671687-395b-41f5-a30f-a58921a69b79", | ||
"version": 1, | ||
"definitions": { | ||
"standards": [ | ||
{ | ||
"bom-ref": "standard-1", | ||
"name": "Sample Standard", | ||
"version": "1.0.0", | ||
"description": "Description here", | ||
"owner": "Acme Inc", | ||
"requirements": [ | ||
{ | ||
"bom-ref": "requirement-1", | ||
"identifier": "v1", | ||
"title": "Title here" | ||
}, | ||
{ | ||
"bom-ref": "requirement-1.1", | ||
"identifier": "v1.1", | ||
"title": "Title here", | ||
"parent": "requirement-1" | ||
}, | ||
{ | ||
"bom-ref": "requirement-1.1.1", | ||
"identifier": "v1.1.1", | ||
"text": "Text of the requirement here", | ||
"descriptions": [ | ||
"Supplemental text here" | ||
], | ||
"opencre": [ | ||
"CRE:616-305" | ||
], | ||
"parent": "requirement-1.1" | ||
} | ||
], | ||
"levels": [ | ||
{ | ||
"bom-ref": "level-1", | ||
"identifier": "Level 1", | ||
"description": "Description here", | ||
"requirements": [ | ||
"requirement-1.1.1" | ||
] | ||
}, | ||
{ | ||
"bom-ref": "level-2", | ||
"identifier": "Level 2", | ||
"description": "Description here", | ||
"requirements": [ | ||
"requirement-1.1.1" | ||
] | ||
}, | ||
{ | ||
"bom-ref": "level-3", | ||
"identifier": "Level 3", | ||
"description": "Description here", | ||
"requirements": [ | ||
"requirement-1.1.1" | ||
] | ||
} | ||
], | ||
"signature": { | ||
"algorithm": "ES256", | ||
"certificatePath": [ "MIIB...", "MIID..." ], | ||
"value": "tqIT..." | ||
} | ||
} | ||
] | ||
} | ||
} |