Hi,
I would like to write the node:
writing the object as shown directly on the datalayer works fine.
I would now like to do the same with a put command from a REST API. However sending the same Object gives an error as shown:
I am guessing I need to change the Object I send in some way. However, I don't know how do I have to adjust this object?
The Type of the Object is as follows:
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"definitions": {
"sfk_fbtypes_SfkCmdMoveData": {
"type": "object",
"properties": {
"x": {
"type": "number"
},
"y": {
"type": "number"
},
"z": {
"type": "number"
},
"vel": {
"type": "number"
},
"acc": {
"type": "number"
}
},
"additionalProperties": false
}
},
"$ref": "#/definitions/sfk_fbtypes_SfkCmdMoveData"
}
Thank you,