Hi smart folks. I have the output of a REST API call as seen below. I need to split each of the records as delimited by the {} as it's own event with each of the key:values defined for each record.
[
{
"name": "ESSENTIAL",
"status": "ENABLED",
"compliance": "COMPLIANT",
"consumptionCounter": 17,
"daysOutOfCompliance": "-",
"lastAuthorization": "Dec 11,2024 07:32:21 AM"
},
{
"name": "ADVANTAGE",
"status": "ENABLED",
"compliance": "EVALUATION",
"consumptionCounter": 0,
"daysOutOfCompliance": "-",
"lastAuthorization": "Jul 09,2024 22:49:25 PM"
},
{
"name": "PREMIER",
"status": "ENABLED",
"compliance": "EVALUATION",
"consumptionCounter": 0,
"daysOutOfCompliance": "-",
"lastAuthorization": "Aug 10,2024 21:10:44 PM"
},
{
"name": "DEVICEADMIN",
"status": "ENABLED",
"compliance": "COMPLIANT",
"consumptionCounter": 2,
"daysOutOfCompliance": "-",
"lastAuthorization": "Dec 11,2024 07:32:21 AM"
},
{
"name": "VM",
"status": "ENABLED",
"compliance": "COMPLIANT",
"consumptionCounter": 2,
"daysOutOfCompliance": "-",
"lastAuthorization": "Dec 11,2024 07:32:21 AM"
}
]
Thanks in advance for any help you all might offer to get me down the right track.
... View more