Harshit Aghera | b0cd989 | 2025-04-07 18:08:10 +0530 | [diff] [blame] | 1 | { |
| 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 Kodihalli | d792806 | 2025-05-28 00:55:59 +0530 | [diff] [blame] | 11 | "PollRate": { |
| 12 | "description": "Poll the device at this rate, specified in milliseconds, to fetch sensors", |
| 13 | "type": "number" |
| 14 | }, |
Harshit Aghera | b0cd989 | 2025-04-07 18:08:10 +0530 | [diff] [blame] | 15 | "Type": { |
| 16 | "type": "string", |
| 17 | "const": "NvidiaMctpVdm" |
| 18 | } |
| 19 | }, |
| 20 | "required": ["Name", "Type"], |
| 21 | "type": "object" |
| 22 | } |
| 23 | } |
| 24 | } |