Skip to content

Instantly share code, notes, and snippets.

@kimchy
Created May 2, 2012 21:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimchy/2580514 to your computer and use it in GitHub Desktop.
Save kimchy/2580514 to your computer and use it in GitHub Desktop.
curl -XPUT localhost:9200/test -d '{
"mappings" : {
"type1" : {
"doc" : {
"type" : "object",
"enabled" : false
}
}
}
}'
curl -XPUT localhost:9200/test/type/1 -d '{
"name" : "test1",
"doc" : "value"
}'
curl -XPUT localhost:9200/test/type/1 -d '{
"name" : "test2",
"doc" : {
"value" : "value"
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment