Skip to content

Instantly share code, notes, and snippets.

@kuy
Created July 23, 2017 15:18
Show Gist options
  • Save kuy/bbb7758141b0598e4b41a925fa1cc72d to your computer and use it in GitHub Desktop.
Save kuy/bbb7758141b0598e4b41a925fa1cc72d to your computer and use it in GitHub Desktop.
Mapping
curl -XPUT 'localhost:9200/answers?pretty' -H 'Content-Type: application/json' -d'
{
  "mappings": {
    "user": {
      "_all":       { "enabled": false  },
      "properties": {
        "user":   { "type": "integer" },
        "choice": { "type": "keyword" }
      }
    }
  }
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment