Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. {
  2. "my_array": {
  3. "type": "nested",
  4. "properties": {
  5. "first": {
  6. "type": "text",
  7. },
  8. "last": {
  9. "type": "text",
  10. }
  11. }
  12. }
  13. }
  14.  
  15. {
  16. "my_array": [
  17. { "first": "John", "last": "Smith" },
  18. { "first": "Alice", "last": "White" }
  19. ]
  20. }
  21.  
  22. {
  23. "query": {
  24. "query_string": {
  25. "query": "John"
  26. }
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement