-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverification_requirements.py
More file actions
39 lines (39 loc) · 1.96 KB
/
verification_requirements.py
File metadata and controls
39 lines (39 loc) · 1.96 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
# verification_requirements.py
example_verification_requirements = {
"VRPS2": {
"IoX": [
{"IoX_ID": "IoX_S1", "Descriptor": "Off-command", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S2", "Descriptor": "On-command", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S3", "Descriptor": "No-light", "Parameterization": {"Lumen": "<0.5 lm"}},
{"IoX_ID": "IoX_S4", "Descriptor": "Yellow-light", "Parameterization": {"Wavelength": "570-590 nm [yellow]", "Lumen": "200-1,000 lm"}}
],
"IF": [
{"IF_ID": "IF-S1", "Descriptor": "On/off IF", "Parameterization": {"N/A"}},
{"IF_ID": "IF-S2", "Descriptor": "Light IF", "Parameterization": {"N/A"}}
]
},
"VRPS4": {
"IoX": [
{"IoX_ID": "IoX_S1", "Descriptor": "Off-command", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S2", "Descriptor": "On-command", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S3", "Descriptor": "No-light", "Parameterization": {"Lumen": "<0.5 lm"}},
{"IoX_ID": "IoX_S4", "Descriptor": "Blue-light", "Parameterization": {"Wavelength": "450-495 nm [blue]", "Lumen": "200-1,000 lm"}}
],
"IF": [
{"IF_ID": "IF-S1", "Descriptor": "On/off IF", "Parameterization": {"N/A"}},
{"IF_ID": "IF-S2", "Descriptor": "Light IF", "Parameterization": {"N/A"}}
]
},
"VRPS5": {
"IoX": [
{"IoX_ID": "IoX_S1", "Descriptor": "0", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S2", "Descriptor": "1", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S3", "Descriptor": "0", "Parameterization": {"N/A"}},
{"IoX_ID": "IoX_S4", "Descriptor": "1", "Parameterization": {"N/A"}}
],
"IF": [
{"IF_ID": "IF-S1", "Descriptor": "Input IF", "Parameterization": {"N/A"}},
{"IF_ID": "IF-S2", "Descriptor": "Output IF", "Parameterization": {"N/A"}}
]
}
}