xref: /openbmc/entity-manager/schemas/intel.json (revision 7d6080db)
17d05ee59SBrad Bishop{
27d05ee59SBrad Bishop    "$schema": "http://json-schema.org/draft-07/schema#",
3*7d6080dbSPatrick Williams    "$defs": {
47d05ee59SBrad Bishop        "IntelFanConnector": {
57d05ee59SBrad Bishop            "properties": {
67d05ee59SBrad Bishop                "LED": {
77d05ee59SBrad Bishop                    "type": "string"
87d05ee59SBrad Bishop                },
97d05ee59SBrad Bishop                "Name": {
107d05ee59SBrad Bishop                    "type": "string"
117d05ee59SBrad Bishop                },
127d05ee59SBrad Bishop                "Pwm": {
137d05ee59SBrad Bishop                    "type": "number"
147d05ee59SBrad Bishop                },
157d05ee59SBrad Bishop                "Tachs": {
167d05ee59SBrad Bishop                    "items": {
177d05ee59SBrad Bishop                        "type": "number"
187d05ee59SBrad Bishop                    },
197d05ee59SBrad Bishop                    "type": "array"
207d05ee59SBrad Bishop                },
217d05ee59SBrad Bishop                "Type": {
22fa8ee87eSPatrick Williams                    "enum": ["IntelFanConnector"]
237d05ee59SBrad Bishop                }
247d05ee59SBrad Bishop            },
25fa8ee87eSPatrick Williams            "required": ["Name", "Type", "Status", "Pwm", "Tachs"],
267d05ee59SBrad Bishop            "type": "object"
277d05ee59SBrad Bishop        }
287d05ee59SBrad Bishop    }
297d05ee59SBrad Bishop}
30