jsonfieldexplorer
Version:
Node.js tool to efficiently explore and list all field paths in a JSON object. Perfect for understanding complex JSON structures, it recursively analyzes JSON data to provide a clear summary of nested fields and arrays.
23 lines (22 loc) • 405 B
JSON
{
"organization": {
"name": "OpenAI",
"location": "San Francisco",
"departments": [
{
"name": "Research",
"employees": 10,
"isRemote": true
},
{
"name": "Engineering",
"employees": "80",
"budget": null,
"manager": {
"name": "John Doe",
"title": "Engineering Manager"
}
}
]
}
}