Rule
SppXmlToJson("<people><person department=""Systems""><firstName>Jake</firstName></person><person department=""Sales""><firstName>Phil</firstName></person></people>")
Converts the given XML Data into JSON.
Result
{ "people": { "person": [ { "@department": "Systems", "firstName": "Jake" }, { "@department": "Sales", "firstName": "Phil" } ] } }