Hello, How to create sample JSON data and display it in tree structure? I used makeresults to create sample JSON data below | makeresults
| eval data = "{\"name\":\"John Doe\",\"age\":30,\"addres...
See more...
Hello, How to create sample JSON data and display it in tree structure? I used makeresults to create sample JSON data below | makeresults
| eval data = "{\"name\":\"John Doe\",\"age\":30,\"address\":{\"street\":\"123 Main St\",\"city\":\"Anytown\",\"state\":\"CA\",\"zip\":\"12345\"},\"interests\":[\"reading\",\"hiking\",\"coding\"]}" The search result is below. My expected output is below. I have the option to select "list" from the drop down, but this option is only available if I import the data to an index. Please help. Thanks JSON data: {
"name": "John Doe",
"age": 30,
"address": {
"street": "123 Main St",
"city": "Anytown",
"state": "CA",
"zip": "12345"
},
"interests": [
"reading",
"hiking",
"coding"
]
}