| 1234567891011121314151617181920212223242526272829303132333435363738394041 | [[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}    }}--------------------------------------------------[float][[include-exclude]]==== Includes / ExcludesAllow to specify paths in the source that would be included / excludedwhen it's stored, supporting `*` as wildcard annotation. For example:[source,js]--------------------------------------------------{    "my_type" : {        "_source" : {            "includes" : ["path1.*", "path2.*"],            "excludes" : ["path3.*"]        }    }}--------------------------------------------------
 |