Skip to content

Instantly share code, notes, and snippets.

DELETE /test
PUT /test
{
"mappings": {
"_default_": {
"properties": {
"*": {
"type": "string",
"index": "no"
@nuzolx
nuzolx / gist:cb03b90fc9e6a73019c6
Created September 16, 2015 12:31
ElasticSearch Default mapping for all fields?
PUT /gb2
{
"mappings": {
"_default_": {
"properties": {
"*": {
"type": "string",
"index": "no"
}
}