-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathvalid-component-choice-nested-2.0.json
More file actions
57 lines (57 loc) · 1.5 KB
/
valid-component-choice-nested-2.0.json
File metadata and controls
57 lines (57 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"$schema": "https://cyclonedx.org/schema/2.0/cyclonedx-2.0.schema.json",
"specFormat": "CycloneDX",
"specVersion": "2.0",
"version": 1,
"metadata": {
"component": {
"bom-ref": "radio-module",
"type": "device",
"name": "Radio Module"
}
},
"components": [
{
"type": "component-choice",
"name": "Radio Subsystem",
"description": "Choose exactly one radio subsystem. Each option is itself a tightly coupled group of transceiver and matching balun that must be installed together.",
"operator": "XOR",
"components": [
{
"type": "component-choice",
"name": "2.4GHz Radio Group",
"operator": "AND",
"components": [
{
"type": "device",
"name": "2.4GHz Transceiver",
"supplier": { "name": "Acme RF" }
},
{
"type": "device",
"name": "2.4GHz Balun",
"supplier": { "name": "Acme RF" }
}
]
},
{
"type": "component-choice",
"name": "Sub-GHz Radio Group",
"operator": "AND",
"components": [
{
"type": "device",
"name": "915MHz Transceiver",
"supplier": { "name": "Beta RF" }
},
{
"type": "device",
"name": "915MHz Balun",
"supplier": { "name": "Beta RF" }
}
]
}
]
}
]
}