# = Create a fresh index curl -X DELETE "http://localhost:9200/bookmarks" curl -X PUT "http://localhost:9200/bookmarks" curl -X PUT "http://localhost:9200/bookmarks/bookmark/_mapping" -d ' { "bookmark": { "properties": { "title": { "type": "string" }, "outboundDomainLinks": { "type": "string", "index":"not_analyzed" }, "description": { "type": "string" }, "image": { "type": "string", "index":"no" } }, "_timestamp" : { "enabled" : true } } } '