{
  "settings" : {
     "index":{
        "analysis":{
           "analyzer":{
              "analyzer_keyword":{
                 "tokenizer":"keyword",
                 "filter":"lowercase"
              }
           }
        }
     }
   },
  "mappings": {
    "_default_": {
      "_id": {
        "path": "id"
      },
      "_all" : {
        "enabled" : true
      },
      "properties": {
        "id": {
          "type": "string",
          "index": "not_analyzed"
        },
        "createdOn": {
          "type": "date"
        },
        "updatedOn": {
          "type": "date"
        },
        "name": {
          "type": "string",
          "index": "not_analyzed"
        },
        "slug": {
          "type": "string",
          "index": "not_analyzed"
        }
      }
    }
  }
}
