I need to parse the below json and display in a html page.
- Display COLA, COLB, COLC in a dropdownlist
- display the values of type and index in a html table.
JSON
{
"mydb1": {
"mappings": {
"TAB1": {
"properties": {
"COLA": {
"type": "string",
"index": "not_analyzed"
},
"COLB": {
"type": "string",
"index": "not_analyzed"
},
"COLC": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}
}