Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. curl -XPUT "http://localhost:9200/blog" -d'
  2. {
  3. "mappings":{
  4. "post":{
  5. "properties":{
  6. "published":{
  7. "type": "date"
  8. },
  9. "tags":{
  10. "type":"string"
  11. },
  12. "text":{
  13. "type":"string"
  14. },
  15. "title":{
  16. "type": "string"
  17. },
  18. "url":{
  19. "type": "string"
  20. }, "tenant":{ "type": "string"}
  21. }
  22. }
  23. }
  24. }'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement