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": { |
James Feist | 3866be9 | 2019-05-13 14:24:46 -0700 | [diff] [blame] | 5 | "Class": { |
| 6 | "type": "string" |
| 7 | }, |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 8 | "Inputs": { |
| 9 | "type": "array", |
| 10 | "items": { |
| 11 | "type": "string" |
| 12 | } |
| 13 | }, |
| 14 | "Name": { |
| 15 | "type": "string" |
| 16 | }, |
| 17 | "NegativeHysteresis": { |
James Feist | f944cc4 | 2018-12-18 12:42:48 -0800 | [diff] [blame] | 18 | "type": "number" |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 19 | }, |
| 20 | "Output": { |
| 21 | "type": "array", |
| 22 | "items": { |
| 23 | "type": "number" |
| 24 | } |
| 25 | }, |
| 26 | "PositiveHysteresis": { |
James Feist | f944cc4 | 2018-12-18 12:42:48 -0800 | [diff] [blame] | 27 | "type": "number" |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 28 | }, |
James Feist | 3866be9 | 2019-05-13 14:24:46 -0700 | [diff] [blame] | 29 | "Profiles": { |
| 30 | "type": "array", |
| 31 | "items": { |
| 32 | "type": "string" |
| 33 | } |
| 34 | }, |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 35 | "Reading": { |
| 36 | "type": "array", |
| 37 | "items": { |
| 38 | "type": "number" |
| 39 | } |
| 40 | }, |
| 41 | "Type": { |
| 42 | "type": "string" |
| 43 | }, |
| 44 | "Zones": { |
| 45 | "type": "array", |
| 46 | "items": { |
| 47 | "type": "string" |
| 48 | } |
| 49 | } |
| 50 | }, |
| 51 | "required": [ |
James Feist | 3866be9 | 2019-05-13 14:24:46 -0700 | [diff] [blame] | 52 | "Class", |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 53 | "Inputs", |
| 54 | "Name", |
| 55 | "NegativeHysteresis", |
| 56 | "Output", |
| 57 | "PositiveHysteresis", |
| 58 | "Reading", |
| 59 | "Type", |
| 60 | "Zones" |
| 61 | ] |
| 62 | } |