Guest User

Untitled

a guest
May 13th, 2015
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {  
  2.    "post_filter":{  
  3.       "term":{  
  4.          "megabytes":1000
  5.       }
  6.    },
  7.    "sort":{  
  8.       "monthlyCost":{  
  9.          "order":"asc"
  10.       }
  11.    },
  12.    "aggs":{  
  13.       "minutes":{  
  14.          "filter":{  
  15.             "term":{  
  16.                "megabytes":1000
  17.             }
  18.          },
  19.          "aggs":{  
  20.             "minutes":{  
  21.                "terms":{  
  22.                   "field":"minutes",
  23.                   "min_doc_count":0
  24.                }
  25.             }
  26.          }
  27.       },
  28.       "megabytes":{  
  29.          "terms":{  
  30.             "field":"megabytes",
  31.             "min_doc_count":0
  32.          }
  33.       },
  34.       "company":{  
  35.          "terms":{  
  36.             "field":"company",
  37.             "min_doc_count":0
  38.          }
  39.       },
  40.       "min_price":{  
  41.          "min":{  
  42.             "field":"monthlyCost"
  43.          }
  44.       },
  45.       "max_price":{  
  46.          "max":{  
  47.             "field":"monthlyCost"
  48.          }
  49.       }
  50.    }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment