Schema command-message.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"commands": {
"description": "Commands being transmited in this transaction",
"items": {
"properties": {
"arguments": {
"description": "Method arguments",
"type": "object"
},
"handle": {
"description": "Integer value used for pairing with the response",
"maximum": 65535,
"minimum": 1,
"type": "integer"
},
"methodId": {
"description": "ID structure for the target method",
"properties": {
"index": {
"description": "Index component of the method ID",
"minimum": 1,
"type": "integer"
},
"level": {
"description": "Level component of the method ID",
"minimum": 1,
"type": "integer"
}
},
"required": [
"level",
"index"
],
"type": "object"
},
"oid": {
"description": "Object id containing the method",
"minimum": 1,