Issue:
#526
Export collects data witch create
array of folders with xid points in the following format.
"folders": [
{
"parentXid": null,
"name": "Test",
"xidFolder": "DIR_1",
"pointXids": [
"DP_1",
"DP_2"
]
},
{
"parentXid": "DIR_1",
"name": "Test",
"xidFolder": "DIR_2",
"pointXids": [
"DP_3",
"DP_4"
]
}
...
]
}
Required fields: parentXid, name, xidFolder, pointXids.
Optional fields: toDelete: (true/false)
Examples of use:
"folders": [
{
"parentXid": "DIR_1",
"name": "Test",
"xidFolder": "DIR__NOT_EXIST",
"pointXids": [
"DP_3",
"DP_4"
]
}
]
}
"folders": [
{
"parentXid": null,
"name": "Test",
"xidFolder": "DIR_1",
"pointXids": [
],
"toDelete":"true"
}
]
}
"folders": [
{
"parentXid": null,
"name": "Test_NEW_NAME",
"xidFolder": "DIR_2",
"pointXids": [
],
"toDelete":"false"
}
]
}
"folders": [
{
"parentXid": null,
"name": "Test",
"xidFolder": "DIR_2",
"pointXids": [
"DP_1",
"DP_2",
"DP_3",
"DP_4"
],
"toDelete":"false"
}
]
}
https://github.com/SCADA-LTS/Scada-LTS/releases