I want to create an array from an xml extract.
I managed to convert the xml to JSON but it is defined as an object.
Here's the format I currently have:
**************************start of sample************************************
{
"?xml": {
"@version": "1.0",
"@encoding": "utf-8"
},
"SOAP-ENV:Envelope": {
"@xmlns:SOAP-ENV": "http://schemas.xmlsoap.org/soap/envelope/",
"@xmlns:SOAP-ENC": "http://schemas.xmlsoap.org/soap/encoding/",
"@xmlns:xsd": "http://www.w3.org/2001/XMLSchema",
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"SOAP-ENV:Header": {
"@xmlns:SOAP-ENV": "http://schemas.xmlsoap.org/soap/envelope/"
},
"SOAP-ENV:Body": {
"ns2:retrieveNominationOutput": {
"@xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"@xmlns:ns2": "http://www.synergy.net.au/wts/collgar/",
"status": {
"statusCode": "0"
},
"nomination": {
"nominationId": "661561",
"energyNominationTable": {
"intervalNomination": [
{
"intervalStart": "2023-05-16T08:00:00",
"counterPartyNomination": {
"nominatedEnergy": "11.110",
"counterParty": "WPGENER"
}
},
{
"intervalStart": "2023-05-16T08:30:00",
"counterPartyNomination": {
"nominatedEnergy": "71.963",
"counterParty": "WPGENER"
}
},
{
"intervalStart": "2023-05-16T09:00:00",
"counterPartyNomination": {
"nominatedEnergy": "96.153",
"counterParty": "WPGENER"
}
},
{
"intervalStart": "2023-05-23T07:30:00",
"counterPartyNomination": {
"nominatedEnergy": "31.472",
"counterParty": "WPGENER"
}
}
]
}
}
}
}
}
}
**************************end of sample************************************
I want to transform it to the following format... I need help to enable me to do the transformation, ie just taking the parts that I can manage as an array.
**************************start of sample************************************
[
{
"intervalStart": "2023-05-16T08:00:00",
"counterPartyNomination": {
"nominatedEnergy": "11.110",
"counterParty": "WPGENER"
}
},
{
"intervalStart": "2023-05-16T08:30:00",
"counterPartyNomination": {
"nominatedEnergy": "71.963",
"counterParty": "WPGENER"
}
},
{
"intervalStart": "2023-05-16T09:00:00",
"counterPartyNomination": {
"nominatedEnergy": "96.153",
"counterParty": "WPGENER"
}
}
]
**************************end of sample************************************
Thanks a lot!
biTiqa