Hi
I'm not sure what you mean by "extracting" from that JSON? if you want to find "Logs Dashboard", you should execute the following:
GET .kibana/_search
{
"_source": [
"dashboard.title"
],
"query": {
"term": {
"dashboard.title": "Logs Dashboard"
}
}
}
Best,
Matthias