{
"properties":{
"operation":{
"type":"string"
},
"returnCode":{
"type":"string"
},
"description":{
"type":"string"
},
"returnValue":{
"type":"object"
}
},
"example":{
"operation":"Command related operation",
"returnCode":"Error code to indicate the command result, 5000 infers plan success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem of executing plan.",
"description":"Textual output of the command",
"returnValue":"Valuable information returned by the command execution in JSON object format"
},
"required":[
"operation",
"returnCode",
"description",
"returnValue"
]
}
例:
{
"operation":"Command related operation",
"returnCode":"Error code to indicate the command result, 5000 infers plan success, 5100 infers illegal command, 5200 - 5500 infers connection/resource/internal problem of executing plan.",
"description":"Textual output of the command",
"returnValue":"Valuable information returned by the command execution in JSON object format"
}