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