-
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: added page to docs to call out which parts of the specification …
…this library supports Signed-off-by: Paul Horton <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
Schema Support | ||
============== | ||
|
||
This library has partial support for the CycloneDX specification (we continue to grow support). | ||
|
||
The following sub-sections aim to explain what support this library provides and any known gaps in support. We do this | ||
by calling out support for data as defined in the latest CycloneDX standard specification, regardless of whether it is | ||
supported in prior versions of the CycloneDX schema. | ||
|
||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| Data Path | Supported? | Notes | | ||
+============================+===============+===================================================================================================+ | ||
| ``bom[@version]`` | Yes | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom[@serialNumber]`` | Yes | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.metadata`` | Yes (partial) | Not supported: ``authors``, ``manufacture``, ``supplier``, ``licenses``, ``properties``. | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.components`` | Yes | Not supported: ``modified`` (as it is deprecated), ``signature``. | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.services`` | Yes | Not supported: ``signature``. | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.externalReferences`` | Yes | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.dependencies`` | No | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.compositions`` | No | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.properties`` | No | See `schema specification bug 130`_ | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.vulnerabilities`` | Yes | Note: Prior to CycloneDX 1.4, these were present under ``bom.components`` via a schema extension. | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
| ``bom.signature`` | No | | | ||
+----------------------------+---------------+---------------------------------------------------------------------------------------------------+ | ||
|
||
|
||
.. _schema specification bug 130: https://github.com/CycloneDX/specification/issues/130 |