Advertisement
Guest User

Untitled

a guest
Jan 20th, 2014
226
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.   "settings":{
  3.      "index":{
  4.         "analysis":{
  5.            "analyzer":{
  6.               "analyzer_keyword":{
  7.                  "tokenizer":"keyword",
  8.                  "filter":"lowercase"
  9.               }
  10.            }
  11.         }
  12.      }
  13.   },
  14.   "mappings":{
  15.      "orders":{
  16.         "properties":{
  17.            "storeOrderId":{
  18.               "analyzer":"analyzer_keyword",
  19.               "type":"string"
  20.            },
  21.            "storeName" : { "type": "string", "index" : "not_analyzed" },
  22.            "id" : {"type":"string"}
  23.         }
  24.      }
  25.   }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement