James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame^] | 1 | { |
2 | "$schema": "http://json-schema.org/schema#", | ||||
3 | "type": "object", | ||||
4 | "properties": { | ||||
5 | "Inputs": { | ||||
6 | "type": "array", | ||||
7 | "items": { | ||||
8 | "type": "string" | ||||
9 | } | ||||
10 | }, | ||||
11 | "Name": { | ||||
12 | "type": "string" | ||||
13 | }, | ||||
14 | "NegativeHysteresis": { | ||||
15 | "type": "integer" | ||||
16 | }, | ||||
17 | "Output": { | ||||
18 | "type": "array", | ||||
19 | "items": { | ||||
20 | "type": "number" | ||||
21 | } | ||||
22 | }, | ||||
23 | "PositiveHysteresis": { | ||||
24 | "type": "integer" | ||||
25 | }, | ||||
26 | "Reading": { | ||||
27 | "type": "array", | ||||
28 | "items": { | ||||
29 | "type": "number" | ||||
30 | } | ||||
31 | }, | ||||
32 | "Type": { | ||||
33 | "type": "string" | ||||
34 | }, | ||||
35 | "Zones": { | ||||
36 | "type": "array", | ||||
37 | "items": { | ||||
38 | "type": "string" | ||||
39 | } | ||||
40 | } | ||||
41 | }, | ||||
42 | "required": [ | ||||
43 | "Inputs", | ||||
44 | "Name", | ||||
45 | "NegativeHysteresis", | ||||
46 | "Output", | ||||
47 | "PositiveHysteresis", | ||||
48 | "Reading", | ||||
49 | "Type", | ||||
50 | "Zones" | ||||
51 | ] | ||||
52 | } |