Advertisement
Guest User

Untitled

a guest
Sep 25th, 2015
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. PUT /idx
  2.  
  3. PUT /idx/mytype/_mapping
  4. {
  5. "properties": {
  6. "n1": {
  7. "type": "nested",
  8. "properties": {
  9. "title": {
  10. "type": "string"
  11. },
  12. "category": {
  13. "type": "string"
  14. }
  15. }
  16. }
  17. }
  18. }
  19.  
  20. PUT /idx/mytype/_bulk
  21. {"index": {}}
  22. {"n1":{"title": "t1", "category": ["c1", "c3"]}}
  23. {"index": {}}
  24. {"n1":{"title": "t2", "category": ["c1", "c3"]}}
  25. {"index": {}}
  26. {"n1":{"title": "t3", "category": ["c2", "c3"]}}
  27. {"index": {}}
  28. {"n1":{"title": "t4", "category": ["c2", "c3"]}}
  29. {"index": {}}
  30. {"n1":{"title": "t5", "category": ["c2", "c3"]}}
  31. {"index": {}}
  32. {"n1":{"title": "t6", "category": ["c3"]}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement