| 12345678910111213141516171819202122232425 | [[mapping-meta]]== MetaEach mapping can have custom meta data associated with it. These aresimple storage elements that are simply persisted along with the mappingand can be retrieved when fetching the mapping definition. The meta isdefined under the `_meta` element, for example:[source,js]--------------------------------------------------{    "tweet" : {        "_meta" : {            "attr1" : "value1",            "attr2" : {                "attr3" : "value3"            }        }    }}--------------------------------------------------Meta can be handy for example for client libraries that performserialization and deserialization to store its meta model (for example,the class the document maps to).
 |