├── CBOM ├── Algorithm │ ├── README.md │ └── bom.json ├── Certificate │ ├── README.md │ └── bom.json ├── Example-With-Dependencies │ └── bom.json ├── Key │ ├── README.md │ └── bom.json ├── Protocol │ ├── README.md │ └── bom.json └── README.md ├── CODEOWNERS ├── HBOM ├── PCIe-SATA-adapter-board │ ├── README.md │ └── bom.json └── README.md ├── LICENSE ├── MBOM └── helloworld-c │ └── mbom.json ├── OBOM ├── Example-1-Decoupled │ ├── README.md │ ├── bom.json │ └── obom.json ├── Example-1-Standalone │ ├── README.md │ └── bom.json └── README.md ├── README.md ├── SBOM ├── README.md ├── cern-lhc-vdm-editor-e564943 │ ├── bom.json │ └── bom.xml ├── dropwizard-1.3.15 │ ├── bom.json │ └── bom.xml ├── juice-shop │ ├── v11.1.2 │ │ ├── bom.json │ │ └── bom.xml │ └── via_npm │ │ ├── README.md │ │ ├── bare │ │ ├── bom.1.2.json │ │ ├── bom.1.2.xml │ │ ├── bom.1.3.json │ │ ├── bom.1.3.xml │ │ ├── bom.1.4.json │ │ └── bom.1.4.xml │ │ └── flat │ │ ├── bom.1.2.json │ │ ├── bom.1.2.xml │ │ ├── bom.1.3.json │ │ ├── bom.1.3.xml │ │ ├── bom.1.4.json │ │ └── bom.1.4.xml ├── keycloak-10.0.2 │ ├── bom.json │ └── bom.xml ├── laravel-7.12.0 │ ├── README.md │ ├── bom.1.1.xml │ ├── bom.1.2.json │ ├── bom.1.2.xml │ ├── bom.1.3.json │ ├── bom.1.3.xml │ ├── bom.1.4.json │ └── bom.1.4.xml ├── proton-bridge │ ├── proton-bridge-v1.6.3.bom.json │ ├── proton-bridge-v1.6.3.bom.xml │ ├── proton-bridge-v1.8.0.bom.json │ └── proton-bridge-v1.8.0.bom.xml └── protonmail-webclient-v4-0912dff │ ├── bom.json │ └── bom.xml ├── SaaSBOM ├── README.md └── apigateway-microservices-datastores │ ├── README.md │ └── bom.json ├── VDR └── README.md └── VEX ├── CISA-Use-Cases ├── Case-1 │ ├── README.md │ ├── vex-affected.json │ ├── vex-fixed.json │ ├── vex-not_affected.json │ └── vex-under_investigation.json ├── Case-2 │ ├── README.md │ └── vex.json ├── Case-3 │ ├── README.md │ └── vex.json ├── Case-4 │ ├── README.md │ └── vex.json ├── Case-5 │ ├── README.md │ └── vex.json ├── Case-6 │ ├── README.md │ └── vex.json ├── Case-7 │ ├── README.md │ ├── bom-1.json │ ├── bom-2.json │ └── vex.json ├── Case-8 │ ├── README.md │ ├── bom-1.json │ ├── bom-2.json │ └── vex.json ├── Case-9 │ └── README.md └── README.md ├── README.md ├── Use-Cases ├── Case-1 │ ├── README.md │ └── vex.json ├── Case-10 │ ├── README.md │ └── vex.json ├── Case-11 │ ├── README.md │ └── vex.json ├── Case-12 │ ├── README.md │ └── vex.json ├── Case-13 │ ├── README.md │ ├── bom-1.json │ ├── bom-2.json │ ├── bom-3.json │ └── vex.json ├── Case-2 │ ├── README.md │ └── vex.json ├── Case-3 │ ├── README.md │ └── vex.json ├── Case-4 │ ├── README.md │ └── vex.json ├── Case-5 │ ├── README.md │ └── vex.json ├── Case-6 │ ├── README.md │ ├── bom-1.json │ ├── bom-2.json │ ├── bom-3.json │ └── vex.json ├── Case-7 │ ├── README.md │ └── vex.json ├── Case-8 │ ├── README.md │ └── vex.json ├── Case-9 │ ├── README.md │ ├── bom-1.json │ ├── bom-2.json │ ├── bom-3.json │ └── vex.json └── README.md ├── bom.json └── vex.json /CBOM/Algorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Algorithm/README.md -------------------------------------------------------------------------------- /CBOM/Algorithm/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Algorithm/bom.json -------------------------------------------------------------------------------- /CBOM/Certificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Certificate/README.md -------------------------------------------------------------------------------- /CBOM/Certificate/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Certificate/bom.json -------------------------------------------------------------------------------- /CBOM/Example-With-Dependencies/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Example-With-Dependencies/bom.json -------------------------------------------------------------------------------- /CBOM/Key/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Key/README.md -------------------------------------------------------------------------------- /CBOM/Key/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Key/bom.json -------------------------------------------------------------------------------- /CBOM/Protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Protocol/README.md -------------------------------------------------------------------------------- /CBOM/Protocol/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/Protocol/bom.json -------------------------------------------------------------------------------- /CBOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CBOM/README.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /HBOM/PCIe-SATA-adapter-board/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/HBOM/PCIe-SATA-adapter-board/README.md -------------------------------------------------------------------------------- /HBOM/PCIe-SATA-adapter-board/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/HBOM/PCIe-SATA-adapter-board/bom.json -------------------------------------------------------------------------------- /HBOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/HBOM/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /MBOM/helloworld-c/mbom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/MBOM/helloworld-c/mbom.json -------------------------------------------------------------------------------- /OBOM/Example-1-Decoupled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/Example-1-Decoupled/README.md -------------------------------------------------------------------------------- /OBOM/Example-1-Decoupled/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/Example-1-Decoupled/bom.json -------------------------------------------------------------------------------- /OBOM/Example-1-Decoupled/obom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/Example-1-Decoupled/obom.json -------------------------------------------------------------------------------- /OBOM/Example-1-Standalone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/Example-1-Standalone/README.md -------------------------------------------------------------------------------- /OBOM/Example-1-Standalone/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/Example-1-Standalone/bom.json -------------------------------------------------------------------------------- /OBOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/OBOM/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/README.md -------------------------------------------------------------------------------- /SBOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/README.md -------------------------------------------------------------------------------- /SBOM/cern-lhc-vdm-editor-e564943/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/cern-lhc-vdm-editor-e564943/bom.json -------------------------------------------------------------------------------- /SBOM/cern-lhc-vdm-editor-e564943/bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/cern-lhc-vdm-editor-e564943/bom.xml -------------------------------------------------------------------------------- /SBOM/dropwizard-1.3.15/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/dropwizard-1.3.15/bom.json -------------------------------------------------------------------------------- /SBOM/dropwizard-1.3.15/bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/dropwizard-1.3.15/bom.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/v11.1.2/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/v11.1.2/bom.json -------------------------------------------------------------------------------- /SBOM/juice-shop/v11.1.2/bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/v11.1.2/bom.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/README.md -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.2.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.2.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.3.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.3.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.4.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/bare/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/bare/bom.1.4.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.2.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.2.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.3.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.3.xml -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.4.json -------------------------------------------------------------------------------- /SBOM/juice-shop/via_npm/flat/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/juice-shop/via_npm/flat/bom.1.4.xml -------------------------------------------------------------------------------- /SBOM/keycloak-10.0.2/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/keycloak-10.0.2/bom.json -------------------------------------------------------------------------------- /SBOM/keycloak-10.0.2/bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/keycloak-10.0.2/bom.xml -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/README.md -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.1.xml -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.2.json -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.2.xml -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.3.json -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.3.xml -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.4.json -------------------------------------------------------------------------------- /SBOM/laravel-7.12.0/bom.1.4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/laravel-7.12.0/bom.1.4.xml -------------------------------------------------------------------------------- /SBOM/proton-bridge/proton-bridge-v1.6.3.bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/proton-bridge/proton-bridge-v1.6.3.bom.json -------------------------------------------------------------------------------- /SBOM/proton-bridge/proton-bridge-v1.6.3.bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/proton-bridge/proton-bridge-v1.6.3.bom.xml -------------------------------------------------------------------------------- /SBOM/proton-bridge/proton-bridge-v1.8.0.bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/proton-bridge/proton-bridge-v1.8.0.bom.json -------------------------------------------------------------------------------- /SBOM/proton-bridge/proton-bridge-v1.8.0.bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/proton-bridge/proton-bridge-v1.8.0.bom.xml -------------------------------------------------------------------------------- /SBOM/protonmail-webclient-v4-0912dff/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/protonmail-webclient-v4-0912dff/bom.json -------------------------------------------------------------------------------- /SBOM/protonmail-webclient-v4-0912dff/bom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SBOM/protonmail-webclient-v4-0912dff/bom.xml -------------------------------------------------------------------------------- /SaaSBOM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SaaSBOM/README.md -------------------------------------------------------------------------------- /SaaSBOM/apigateway-microservices-datastores/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SaaSBOM/apigateway-microservices-datastores/README.md -------------------------------------------------------------------------------- /SaaSBOM/apigateway-microservices-datastores/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/SaaSBOM/apigateway-microservices-datastores/bom.json -------------------------------------------------------------------------------- /VDR/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VDR/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-1/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-1/vex-affected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-1/vex-affected.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-1/vex-fixed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-1/vex-fixed.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-1/vex-not_affected.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-1/vex-not_affected.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-1/vex-under_investigation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-1/vex-under_investigation.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-2/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-2/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-2/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-3/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-3/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-3/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-4/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-4/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-4/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-5/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-5/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-5/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-6/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-6/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-6/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-7/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-7/bom-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-7/bom-1.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-7/bom-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-7/bom-2.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-7/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-7/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-8/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-8/bom-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-8/bom-1.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-8/bom-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-8/bom-2.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-8/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-8/vex.json -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/Case-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/Case-9/README.md -------------------------------------------------------------------------------- /VEX/CISA-Use-Cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/CISA-Use-Cases/README.md -------------------------------------------------------------------------------- /VEX/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-1/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-1/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-1/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-10/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-10/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-10/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-11/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-11/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-11/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-11/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-12/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-12/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-12/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-12/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-13/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-13/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-13/bom-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-13/bom-1.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-13/bom-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-13/bom-2.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-13/bom-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-13/bom-3.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-13/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-13/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-2/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-2/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-2/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-3/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-3/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-3/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-4/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-4/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-4/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-5/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-5/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-5/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-6/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-6/bom-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-6/bom-1.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-6/bom-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-6/bom-2.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-6/bom-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-6/bom-3.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-6/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-6/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-7/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-7/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-7/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-8/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-8/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-8/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-9/README.md -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-9/bom-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-9/bom-1.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-9/bom-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-9/bom-2.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-9/bom-3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-9/bom-3.json -------------------------------------------------------------------------------- /VEX/Use-Cases/Case-9/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/Case-9/vex.json -------------------------------------------------------------------------------- /VEX/Use-Cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/Use-Cases/README.md -------------------------------------------------------------------------------- /VEX/bom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/bom.json -------------------------------------------------------------------------------- /VEX/vex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CycloneDX/bom-examples/HEAD/VEX/vex.json --------------------------------------------------------------------------------