Skip to content

Instantly share code, notes, and snippets.

@jprante
Created September 20, 2012 13:49
Show Gist options
  • Save jprante/3756035 to your computer and use it in GitHub Desktop.
Save jprante/3756035 to your computer and use it in GitHub Desktop.
Simple mapping
curl -XPUT 'http://localhost:9200/topic/document/_mapping' -d '
{
"document" : {
"properties" : {
"subject" : { "type" : "string" },
"post" : { "type" : "string" },
"plz" : { "type" : "string" },
"position" : { "type" : "geo_point" }
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment