Created
October 4, 2015 10:56
-
-
Save falzm/c0fbba78a135595ecee3 to your computer and use it in GitHub Desktop.
Longest single album duration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"took" : 59, | |
"timed_out" : false, | |
"_shards" : { | |
"total" : 1, | |
"successful" : 1, | |
"failed" : 0 | |
}, | |
"hits" : { | |
"total" : 8486, | |
"max_score" : 0.0, | |
"hits" : [ ] | |
}, | |
"aggregations" : { | |
"per_artist" : { | |
"doc_count_error_upper_bound" : 0, | |
"sum_other_doc_count" : 8319, | |
"buckets" : [ { | |
"key" : "Nobuo Uematsu", | |
"doc_count" : 166, | |
"per_album" : { | |
"doc_count_error_upper_bound" : 0, | |
"sum_other_doc_count" : 92, | |
"buckets" : [ { | |
"key" : "Final Fantasy VIII - Original Soundtrack", | |
"doc_count" : 74, | |
"album_duration" : { | |
"value" : 14932.0 | |
} | |
} ] | |
} | |
} ] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment