Is there a way to get the JSON node information so you can use it in an Xlate. For example if I have a JSON
“address” : {
“type” : “object”,
“properties” : {
“line” : {
“type” : “string”
},
“line2” : {
“type” : “null”
},
“city” : {
“type” : “string”
},
“state” : {
“type” : “string”
},
“zip” : {
“type” : “string”
},
“county” : {
“type” : “string”
}
}
Is there a way to get to iterate through “address” and get the values and the identifying text? Address is simple of course, but I have a client that is sending long strings in another field with punctuation that is hard to parse.
What I want it to be able to iterate through “address”, pull the fields names and values and put them in OBX segments. I don’t think this is possible, but if I don’t ask I’ll never find out for sure.
Jeff