Skip to content

Instantly share code, notes, and snippets.

@benoitguigal
Created July 27, 2018 09:01
Show Gist options
  • Save benoitguigal/d9a5ef93b770d9b7c3e75fd7e816b705 to your computer and use it in GitHub Desktop.
Save benoitguigal/d9a5ef93b770d9b7c3e75fd7e816b705 to your computer and use it in GitHub Desktop.
GET users/_mapping/
{
"users": {
"mappings": {
"_doc": {
"properties": {
"date_of_birth": {
"type": "long"
},
"description": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"name": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment