| 12345678910111213141516171819202122 | [[mapping-source-field]]=== `_source`The `_source` field is an automatically generated field that stores theactual JSON that was used as the indexed document. It is not indexed(searchable), just stored. When executing "fetch" requests, like<<docs-get,get>> or<<search-search,search>>, the `_source` field isreturned by default.Though very handy to have around, the source field does incur storageoverhead within the index. For this reason, it can be disabled. Forexample:[source,js]--------------------------------------------------{    "tweet" : {        "_source" : {"enabled" : false}    }}--------------------------------------------------
 |