| { | |
| "$schema": "http://json-schema.org/draft-07/schema#", | |
| "$defs": { | |
| "IntelFanConnector": { | |
| "additionalProperties": false, | |
| "properties": { | |
| "LED": { | |
| "type": "string" | |
| }, | |
| "Name": { | |
| "type": "string" | |
| }, | |
| "PwmName": { | |
| "type": "string" | |
| }, | |
| "Pwm": { | |
| "type": "number" | |
| }, | |
| "Status": { | |
| "enum": ["enabled", "disabled"] | |
| }, | |
| "Tachs": { | |
| "items": { | |
| "type": "number" | |
| }, | |
| "type": "array" | |
| }, | |
| "Type": { | |
| "enum": ["IntelFanConnector"] | |
| } | |
| }, | |
| "required": ["Name", "Type", "Status", "Pwm", "Tachs"], | |
| "type": "object" | |
| } | |
| } | |
| } |