Guest User

Untitled

a guest
Jan 18th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. "hits": [
  2. {
  3. "_index": "my-index2",
  4. "_type": "my-type",
  5. "_id": "1",
  6. "_score": 1,
  7. "_source": {
  8. "entities": {
  9. "persons": [
  10. "Kobe Bryant",
  11. "Michael Jordan"
  12. ],
  13. "dates": [
  14. "Yesterday"
  15. ],
  16. "locations": [
  17. "Munich",
  18. "New York"
  19. ]
  20. },
  21. "my_field": "Kobe Bryant was one of the best basketball players of all times. Not even Michael Jordan has ever scored 81 points in one game. Munich is really an awesome city, but New York is as well. Yesterday has been the hottest day of the year."
  22. }
  23. }
  24.  
  25. {
  26. "aggs" : {
  27. "avg_date" : {
  28. "avg" : {
  29. "script" : {
  30. "source" : "doc.entities.dates"
  31. }
  32. }
  33. }
  34. }
  35. }
Add Comment
Please, Sign In to add comment