James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 1 | { |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 2 | "$schema": "http://json-schema.org/draft-07/schema#", |
Patrick Williams | 7d6080d | 2024-09-04 12:54:45 -0400 | [diff] [blame] | 3 | "$defs": { |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 4 | "Stepwise": { |
Alexander Hansen | e74dfed | 2025-04-16 17:07:42 +0200 | [diff] [blame] | 5 | "additionalProperties": false, |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 6 | "type": "object", |
| 7 | "properties": { |
| 8 | "Class": { |
| 9 | "type": "string" |
| 10 | }, |
| 11 | "Inputs": { |
| 12 | "type": "array", |
| 13 | "items": { |
| 14 | "type": "string" |
| 15 | } |
| 16 | }, |
Josh Lehan | aca7388 | 2023-02-21 23:59:54 -0800 | [diff] [blame] | 17 | "InputUnavailableAsFailed": { |
| 18 | "type": "boolean" |
| 19 | }, |
| 20 | "MissingIsAcceptable": { |
| 21 | "type": "array", |
| 22 | "items": { |
| 23 | "type": "string" |
| 24 | } |
| 25 | }, |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 26 | "Name": { |
| 27 | "type": "string" |
| 28 | }, |
| 29 | "NegativeHysteresis": { |
| 30 | "type": "number" |
| 31 | }, |
| 32 | "Output": { |
| 33 | "type": "array", |
| 34 | "items": { |
| 35 | "type": "number" |
| 36 | } |
| 37 | }, |
| 38 | "PositiveHysteresis": { |
| 39 | "type": "number" |
| 40 | }, |
| 41 | "Profiles": { |
| 42 | "type": "array", |
| 43 | "items": { |
| 44 | "type": "string" |
| 45 | } |
| 46 | }, |
| 47 | "Reading": { |
| 48 | "type": "array", |
| 49 | "items": { |
| 50 | "type": "number" |
| 51 | } |
| 52 | }, |
Josh Lehan | aca7388 | 2023-02-21 23:59:54 -0800 | [diff] [blame] | 53 | "TempToMargin": { |
| 54 | "type": "array", |
| 55 | "items": { |
| 56 | "type": "number" |
| 57 | } |
| 58 | }, |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 59 | "Type": { |
Alexander Hansen | e74dfed | 2025-04-16 17:07:42 +0200 | [diff] [blame] | 60 | "const": "Stepwise" |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 61 | }, |
| 62 | "Zones": { |
| 63 | "type": "array", |
| 64 | "items": { |
| 65 | "type": "string" |
| 66 | } |
| 67 | } |
| 68 | }, |
| 69 | "required": [ |
| 70 | "Class", |
| 71 | "Inputs", |
| 72 | "Name", |
| 73 | "NegativeHysteresis", |
| 74 | "Output", |
| 75 | "PositiveHysteresis", |
| 76 | "Reading", |
| 77 | "Type", |
| 78 | "Zones" |
| 79 | ] |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 80 | } |
Brad Bishop | 4fa1d39 | 2020-05-07 20:27:15 -0400 | [diff] [blame] | 81 | } |
James Feist | 3cab787 | 2018-12-11 15:20:00 -0800 | [diff] [blame] | 82 | } |