...
Solution configurations can be exchanged as JSON files organized per table. Each file contains a header identifying the solution and table type, followed by an array of objects:
{
"SolutionName": "MySolution",
"TableType": "UnsTags",
"ObjectCount": 42,
"Objects": [
{ "Name": "Tank1/Level", "Type": "Double", "Min": 0, "Max": 100 },
{ "Name": "Tank1/Temp", "Type": "Double", "Min": -40, "Max": 200 }
]
}
Full solution exports produce ZIP archives containing one JSON file per table.
...