blob: 26e2cfd9ae63a4ab4946e436a8b5f156f742d511 [file] [log] [blame]
Andrew Jefferye501cb72024-02-20 16:27:58 +10301{
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$defs": {
4 "MCTPI2CTarget": {
5 "properties": {
6 "Address": {
7 "description": "The physical address for the device on the I2C bus.",
8 "type": "string"
9 },
10 "Bus": {
11 "description": "The bus index to which the device is attached",
12 "type": "string"
13 },
14 "Name": {
15 "description": "A recognisable name for the device",
16 "type": "string"
17 },
18 "Type": {
19 "type": "string",
20 "enum": ["MCTPI2CTarget"]
21 }
22 },
23 "required": ["Address", "Bus", "Name", "Type"],
24 "type": "object"
25 }
26 }
27}