1{ 2 "$schema": "http://json-schema.org/draft-07/schema#", 3 "definitions": { 4 "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": { 22 "enum": [ 23 "IntelFanConnector" 24 ] 25 } 26 }, 27 "required": [ 28 "Name", 29 "Type", 30 "Status", 31 "Pwm", 32 "Tachs" 33 ], 34 "type": "object" 35 } 36 } 37} 38