xref: /openbmc/entity-manager/schemas/intel.json (revision 7d6080db)
1{
2    "$schema": "http://json-schema.org/draft-07/schema#",
3    "$defs": {
4        "IntelFanConnector": {
5            "properties": {
6                "LED": {
7                    "type": "string"
8                },
9                "Name": {
10                    "type": "string"
11                },
12                "Pwm": {
13                    "type": "number"
14                },
15                "Tachs": {
16                    "items": {
17                        "type": "number"
18                    },
19                    "type": "array"
20                },
21                "Type": {
22                    "enum": ["IntelFanConnector"]
23                }
24            },
25            "required": ["Name", "Type", "Status", "Pwm", "Tachs"],
26            "type": "object"
27        }
28    }
29}
30