schema.NodeInfo.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bidibwizard-api Show documentation
Show all versions of bidibwizard-api Show documentation
jBiDiB BiDiB Wizard API POM
The newest version!
{
"$schema": "http://json-schema.org/draft-07/schema#",
"definitions": {
"nodeInfo": {
"description": "A NodeInfo following the convention of http://microformats.org/wiki/hcard",
"type": "object",
"extends" : {
"$ref" : "NodeAddress.json#/definitions/nodeAddress"
},
"properties": {
"formattedUniqueId": { "type": "string" },
"productName": { "type": "string" },
"manufacturerId": { "type": "integer" },
"productId": { "type": "integer" },
"softwareVersion": { "type": "string" },
"protocolVersion": { "type": "string" },
"userName": { "type": "string" },
"nodeAction" : { "$ref": "NodeAction.json#/definitions/nodeAction" },
"classSwitch" : { "type" : "boolean" },
"classBooster" : { "type" : "boolean" },
"classAccessory" : { "type" : "boolean" },
"classCsProg" : { "type" : "boolean" },
"classCsDrive" : { "type" : "boolean" },
"classResBit5" : { "type" : "boolean" },
"classFeedback" : { "type" : "boolean" },
"classInterface" : { "type" : "boolean" }
}
}
}
}