Created
February 26, 2018 08:33
-
-
Save shivam-tripathi/3fdd8da3383e53f443e51706332146d2 to your computer and use it in GitHub Desktop.
Elastic mapping
This file contains 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
"defaultAlias": { | |
"properties": { | |
"sortName": { | |
"fields": { | |
"keyword": { | |
"ignore_above": 256, | |
"type": "keyword" | |
} | |
}, | |
"type": "text" | |
}, | |
"primary": { | |
"type": "boolean" | |
}, | |
"id": { | |
"type": "long" | |
}, | |
"name": { | |
"fields": { | |
"autocomplete": { | |
"type": "text", | |
"analyzer": "edge" | |
}, | |
"search": { | |
"type": "text", | |
"analyzer": "trigrams" | |
} | |
}, | |
"type": "text" | |
}, | |
"languageId": { | |
"type": "long" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment