Schema command-response-message.json
Show original (referenced schemas with $ref)
{
"$schema": "http://json-schema.org/draft-04/schema#",
"allOf": [
{ },
{
"properties": {
"messageType": {
"description": "Protocol message type",
"enum": [
1
],
"type": "integer"
},
"responses": {
"description": "Responses being transmited in this transaction",
"items": {
"properties": {
"handle": {
"description": "Integer value used for pairing with the command",
"maximum": 65535,
"minimum": 1,
"type": "integer"
},
"result": {
"description": "Response result",
"properties": {
"errorMessage": {
"description": "Error message associated with the failure of the command (optional)",
"type": "string"
},
"status": {
"description": "Status of the command response. Must include the numeric values for NcMethodStatus or other types which inherit from it. 200 must be returned if the command was successful",
"maximum": 65535,
"minimum": 0,
"type": "integer"
},
"value": {
"description": "Method return value as described in the MS-05-02 Type definition or in a private Type definition",
"type": [
"string",
"number",
"object",