{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Result",
"type": "object",
"description": "Operation result from a zone management command",
"properties": {
"code": {
"type": "string",
"description": "Error code if the operation failed"
},
"message": {
"type": "string",
"description": "Human-readable error or status message"
},
"stdout": {
"type": "string",
"description": "Standard output from the zone administration command"
},
"stderr": {
"type": "string",
"description": "Standard error output from the zone administration command"
}
}
}