As said earlier, i can get xml file or json file. While indexing the data, i just need to load whole file. Because, end users need to see whole file.
But, our processing framework needs splitted data.
I have json as below.
{
"Document": {
"-xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
"-xsi:noNamespaceSchemaLocation": "EPA_GEODATA_v1.0.xsd"
},
"FacilitySite": [{
"LatitudeMeasure": "31.59",
"LongitudeMeasure": "-85.278333",
"Program": {
"ProgramCommonName": "TRIS",
"ProgramAcronymName": "TRIS"
}
}, {
"LocalityName": "ABBEVILLE",
"LocationAddressStateCode": "AL",
"Program": {
"ProgramCommonName": "TRIS",
"ProgramAcronymName": "TRIS"
}
}]
}
can i get child json document as below.
"Program": {
"ProgramCommonName": "TRIS",
"ProgramAcronymName": "TRIS"
}
-----------------------------
"Program": {
"ProgramCommonName": "TRIS",
"ProgramAcronymName": "TRIS"
}
... View more