James Feist | e36e5c1 | 2018-08-27 16:48:54 -0700 | [diff] [blame] | 1 | { |
2 | "$schema": "http://json-schema.org/schema#", | ||||
3 | "type": "object", | ||||
4 | "properties": { | ||||
5 | "FailSafePercent": { | ||||
6 | "type": "number" | ||||
7 | }, | ||||
James Feist | 9aae6f4 | 2019-02-25 13:45:29 -0800 | [diff] [blame] | 8 | "MinThermalOutput": { |
James Feist | e36e5c1 | 2018-08-27 16:48:54 -0700 | [diff] [blame] | 9 | "type": "number" |
10 | }, | ||||
11 | "Name": { | ||||
12 | "type": "string" | ||||
13 | }, | ||||
14 | "Type": { | ||||
15 | "type": "string" | ||||
16 | } | ||||
17 | }, | ||||
18 | "required": [ | ||||
19 | "FailSafePercent", | ||||
James Feist | 9aae6f4 | 2019-02-25 13:45:29 -0800 | [diff] [blame] | 20 | "MinThermalOutput", |
James Feist | e36e5c1 | 2018-08-27 16:48:54 -0700 | [diff] [blame] | 21 | "Name", |
22 | "Type" | ||||
23 | ] | ||||
24 | } |