Hi, I am trying to find a way Read and Write to a complex Datalayer type (T_FLATBUFFERS) which is not describes by any of the exsisting _fbs libraries. The type in question does show up under /types in the core's datalayer as a schema. I am using PLC Engineering V1.20.6. How can I import this schema below into the PLC Environment? { "$schema": "https://json-schema.org/draft/2019-09/schema", "definitions": { "saveParamStart_schema_saveParamStartSchema": { "type": "object", "properties": { "fileName": { "type": "string" }, "backupType": { "type": "string" } }, "additionalProperties": false } }, "$ref": "#/definitions/saveParamStart_schema_saveParamStartSchema" }
... View more