{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Planning Command", "description": "Command to trigger production planning for a product using specified assets", "type": "object", "allOf": [ { "$ref": "https://aausmartproductionlab.github.io/AP2030-UNS/MQTTSchemas/command.schema.json" }, { "type": "object", "properties": { "Assets": { "type": "array", "description": "AAS IDs of assets to use for planning. Hierarchical structures will be resolved to find all available resources.", "items": { "type": "string", "format": "uri" }, "minItems": 1, "examples": [ ["https://smartproductionlab.aau.dk/aas/aauFillingLine"] ] }, "Product": { "type": "string", "format": "uri", "description": "AAS ID of the product to produce. Must contain BillOfProcesses and Requirements submodels.", "examples": [ "https://smartproductionlab.aau.dk/aas/HgHAAS" ] } }, "required": ["Assets", "Product"] } ] }