blob: 86ff1e1b1052fdfcf811e2a2633ad28c0e274672 [file] [log] [blame]
James Feiste36e5c12018-08-27 16:48:54 -07001{
2 "$schema": "http://json-schema.org/schema#",
3 "type": "object",
4 "properties": {
5 "FailSafePercent": {
6 "type": "number"
7 },
James Feist9aae6f42019-02-25 13:45:29 -08008 "MinThermalOutput": {
James Feiste36e5c12018-08-27 16:48:54 -07009 "type": "number"
10 },
11 "Name": {
12 "type": "string"
13 },
14 "Type": {
15 "type": "string"
16 }
17 },
18 "required": [
19 "FailSafePercent",
James Feist9aae6f42019-02-25 13:45:29 -080020 "MinThermalOutput",
James Feiste36e5c12018-08-27 16:48:54 -070021 "Name",
22 "Type"
23 ]
24}