{
"properties":{
"operation":{
"type":"string"
},
"returnCode":{
"type":"string"
},
"description":{
"type":"string"
},
"returnValue":{
"type":"object"
}
},
"example":{
"operation":"operation executed",
"returnCode":"5000 when success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem at execution",
"description":"error description when returnCode != 5000",
"returnValue":"JSON object with the output returned by the command when returnCode: 5000(success). Otherwise, null"
},
"required":[
"operation",
"returnCode",
"description",
"returnValue"
]
}
例:
{
"operation":"operation executed",
"returnCode":"5000 when success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem at execution",
"description":"error description when returnCode != 5000",
"returnValue":"JSON object with the output returned by the command when returnCode: 5000(success). Otherwise, null"
}