Remote Dataset with multi-value array

I have an API that returns the CVEs for equipment in the monitoring solution. However, the list may have multiple values associated with it. Xibo doesn’t store anything in the dataset if there are multiple values. Since they’re comma separated, I thought it would capture it all as a string.
See example JSON below.

[
{
“ip”: “10.xx.xx.xx”,
“hostname”: “hpxxxxxx”,
“mac”: “80:xx:xx:xx:xx:2E”,
“cve”: [
“CVE-2021-3942”,
“CVE-2020-28419”,
“CVE-2007-0161”
]
}
]

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.