Elasticsearch - Basic Search Queries
Identify the error in this bool query:
{
"bool": {
"must": { "match": { "title": "Elasticsearch" } },
"filter": { "term": { "status": "published" } },
"must_not": [ { "term": { "archived": true } } ]
}
}