blob: 4e4e41a8acc502be5ccea8527d8fe7634882291b [file] [log] [blame]
James Feiste36e5c12018-08-27 16:48:54 -07001{
Brad Bishop4fa1d392020-05-07 20:27:15 -04002 "$schema": "http://json-schema.org/draft-07/schema#",
3 "definitions": {
4 "PidZone": {
5 "type": "object",
6 "properties": {
7 "FailSafePercent": {
8 "type": "number"
9 },
10 "MinThermalOutput": {
11 "type": "number"
12 },
13 "Name": {
14 "type": "string"
15 },
16 "Type": {
17 "type": "string"
18 }
19 },
20 "required": [
21 "FailSafePercent",
22 "MinThermalOutput",
23 "Name",
24 "Type"
25 ]
James Feiste36e5c12018-08-27 16:48:54 -070026 }
Brad Bishop4fa1d392020-05-07 20:27:15 -040027 }
James Feiste36e5c12018-08-27 16:48:54 -070028}