Advertisement
Guest User

Untitled

a guest
Apr 19th, 2022
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. ```
  2. {
  3. "hits" : {
  4. "total" : {
  5. "value" : 9,
  6. "relation" : "eq"
  7. },
  8. "max_score" : 1.0,
  9. "hits" : [
  10. {
  11. "_index" : "restaurants",
  12. "_id" : "MCEzQoABbeMqTGPabZWr",
  13. "_score" : 1.0,
  14. "_source" : {
  15. "AverageCostForTwo" : "400",
  16. "RestaurantID" : "18462602",
  17. "AggregateRating" : "3.3",
  18. }
  19. },
  20. [...]
  21. ]
  22. },
  23. "aggregations" : {
  24. "rating_ranges" : {
  25. "buckets" : {
  26. "bad" : {
  27. "to" : 3.0,
  28. "doc_count" : 6
  29. },
  30. "average" : {
  31. "from" : 3.0,
  32. "to" : 4.0,
  33. "doc_count" : 3
  34. },
  35. "good" : {
  36. "from" : 4.0,
  37. "doc_count" : 0
  38. }
  39. }
  40. }
  41. }
  42. }
  43. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement