Created
March 1, 2018 08:42
-
-
Save selcukusta/7f6ca7d66fbc91b9e0ba2e584d3bbbfe to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PUT /first_index HTTP/1.1 | |
| { | |
| "settings": { | |
| "number_of_shards": 1, | |
| "number_of_replicas": 0, | |
| "analysis": { | |
| "analyzer": { | |
| "default": { | |
| "filter": [ | |
| "lowercase", | |
| "asciifolding", | |
| ], | |
| "tokenizer": "standard" | |
| } | |
| } | |
| } | |
| }, | |
| "mappings": { | |
| "city": { | |
| "properties": { | |
| "name": { | |
| "type": "text", | |
| "analyzer": "default", | |
| "fields": { | |
| "sortable": { | |
| "type": "keyword", | |
| "index" : false | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment