| 12345678910111213141516171819202122232425262728293031323334353637383940 | [[mapping-ignored-field]]=== `_ignored` fieldThe `_ignored` field indexes and stores the names of every field in a documentthat has been ignored because it was malformed and<<ignore-malformed,`ignore_malformed`>> was turned on.This field is searchable with <<query-dsl-term-query,`term`>>,<<query-dsl-terms-query,`terms`>> and <<query-dsl-exists-query,`exists`>>queries, and is returned as part of the search hits.For instance the below query matches all documents that have one or more fieldsthat got ignored:[source,console]--------------------------------------------------GET _search{  "query": {    "exists": {      "field": "_ignored"    }  }}--------------------------------------------------Similarly, the below query finds all documents whose `@timestamp` field wasignored at index time:[source,console]--------------------------------------------------GET _search{  "query": {    "term": {      "_ignored": "@timestamp"    }  }}--------------------------------------------------
 |