Files
m.heisig 2d11c43579 Added minimal functionality for Robot teaching
- Added minimal HMI
- Added possibility to open and close all chamber doors
2026-01-17 09:20:39 +01:00

43 lines
895 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"version": {
"type": "string"
},
"fromVersion": {
"type": "string"
},
"changes": {
"type": "array",
"minItems": 1,
"items": {
"type": "object",
"properties": {
"path": {
"type": "string"
},
"script": {
"type": "string"
},
"publishConfigurations": {
"type": "string",
"enum": [
"AllConfigurations",
"OnlyCustomConfigurations"
],
"default": "AllConfigurations"
}
},
"required": [ "path", "script" ],
"additionalProperties": false
}
}
},
"additionalProperties": false,
"required": [
"version",
"fromVersion",
"changes"
]
}