https://www.elastic.co/guide/en/elasticsearch/guide/current/mapping-intro.html

PUT /gb/_mapping/tweet
{
  "properties" : {
    "tag" : {
      "type" :    "string",
      "index":    "not_analyzed"
    }
  }
}