{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Command Response Schema", "description": "An arbitrary command response", "type": "object", "allOf": [ { "$ref": "https://aausmartproductionlab.github.io/AP2030-UNS/MQTTSchemas/data.schema.json" }, { "type": "object", "properties": { "Uuid": { "type": "string", "description": "The UUID of the command" }, "State": { "type": "string", "description": "The state of the command being executed", "enum": ["RUNNING", "SUCCESS", "FAILURE"] } }, "required": ["Uuid", "State"] } ] }