{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Generic response state", "description": "JSON Schema for the status of a module. The current Uuid is expected when the module is not in a IDLE or RESETTING state", "type": "object", "allOf": [ { "$ref": "https://aausmartproductionlab.github.io/AP2030-UNS/MQTTSchemas/data.schema.json" }, { "type": "object", "properties": { "State": { "type": "string", "description": "The PackML State the system is in", "enum": ["IDLE", "STARTING", "EXECUTE","COMPLETING", "COMPLETE", "RESETTING", "HOLDING","HELD","UNHOLDING","SUSPENDING", "SUSPENDED", "UNSUSPENDING", "ABORTING", "ABORTED", "CLEARING", "STOPPING", "STOPPED"] }, "Uuid": { "type": "string", "description": "The Uuid of the current command" } }, "required": ["State"] } ] }