blob: 7dc16292b8bdb2825e3d65e45042bae123796cd0 [file] [log] [blame]
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$defs": {
"MCTPI2CTarget": {
"properties": {
"Address": {
"description": "The physical address for the device on the I2C bus.",
"type": "string"
},
"Bus": {
"description": "The bus index to which the device is attached",
"type": "string"
},
"Name": {
"description": "A recognisable name for the device",
"type": "string"
},
"Type": {
"type": "string",
"enum": ["MCTPI2CTarget"]
}
},
"required": ["Address", "Bus", "Name", "Type"],
"type": "object"
},
"MCTPI3CTarget": {
"properties": {
"Address": {
"description": "The 6-byte PID for the device on the I3C bus",
"type": ["string", "array"]
},
"Bus": {
"description": "The bus index to which the device is attached",
"type": "string"
},
"Name": {
"description": "A recognisable name for the device",
"type": "string"
},
"Type": {
"type": "string",
"enum": ["MCTPI3CTarget"]
}
},
"required": ["Address", "Bus", "Name", "Type"],
"type": "object"
}
}
}