lawsoc-scraper/test/geopoint_example/create_index.sh

18 lines
261 B
Bash

curl -XPUT http://localhost:9200/us_large_cities -d '{
"mappings": {
"city": {
"properties": {
"city": {
"type": "string"
},
"state": {
"type": "string"
},
"location": {
"type": "geo_point"
}
}
}
}
}'