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 | }, |
| 11 | "Type": { |
| 12 | "type": "string", |
| 13 | "const": "NvidiaMctpVdm" |
| 14 | } |
| 15 | }, |
| 16 | "required": ["Name", "Type"], |
| 17 | "type": "object" |
| 18 | } |
| 19 | } |
| 20 | } |