blob: b03bb27fc3b3c0fb941c73df146525b5b1545f74 [file] [log] [blame]
Harshit Agherab0cd9892025-04-07 18:08:10 +05301{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$defs": {
4 "NvidiaMctpVdm": {
5 "description": "Nvidia device that implements an MCTP VDM protocol to provide sensor readings - implemented in dbus-sensors",
6 "properties": {
7 "Name": {
8 "description": "A recognisable name for the device",
9 "type": "string"
10 },
Deepak Kodihallid7928062025-05-28 00:55:59 +053011 "PollRate": {
12 "description": "Poll the device at this rate, specified in milliseconds, to fetch sensors",
13 "type": "number"
14 },
Harshit Agherab0cd9892025-04-07 18:08:10 +053015 "Type": {
16 "type": "string",
17 "const": "NvidiaMctpVdm"
18 }
19 },
20 "required": ["Name", "Type"],
21 "type": "object"
22 }
23 }
24}