blob: b25f1c9e05882068ca73e930f411eb37e2a08b30 [file] [log] [blame]
Brad Bishopdc108282020-09-24 19:01:28 -04001{
2 "$schema": "http://json-schema.org/draft-07/schema#",
Patrick Williams7d6080d2024-09-04 12:54:45 -04003 "$defs": {
Brad Bishopdc108282020-09-24 19:01:28 -04004 "IntelFanConnector": {
5 "properties": {
6 "LED": {
7 "type": "string"
8 },
9 "Name": {
10 "type": "string"
11 },
12 "Pwm": {
13 "type": "number"
14 },
15 "Tachs": {
16 "items": {
17 "type": "number"
18 },
19 "type": "array"
20 },
21 "Type": {
Patrick Williamsfa8ee872022-12-07 07:00:42 -060022 "enum": ["IntelFanConnector"]
Brad Bishopdc108282020-09-24 19:01:28 -040023 }
24 },
Patrick Williamsfa8ee872022-12-07 07:00:42 -060025 "required": ["Name", "Type", "Status", "Pwm", "Tachs"],
Brad Bishopdc108282020-09-24 19:01:28 -040026 "type": "object"
27 }
28 }
29}