1{
2    "$schema": "http://json-schema.org/draft-07/schema#",
3    "definitions": {
4        "PidZone": {
5            "type": "object",
6            "properties": {
7                "FailSafePercent": {
8                    "type": "number"
9                },
10                "MinThermalOutput": {
11                    "type": "number"
12                },
13                "Name": {
14                    "type": "string"
15                },
16                "Type": {
17                    "type": "string"
18                }
19            },
20            "required": [
21                "FailSafePercent",
22                "MinThermalOutput",
23                "Name",
24                "Type"
25            ]
26        }
27    }
28}
29