diff --git a/docs/Aggregation/ReverseNested.md b/docs/Aggregation/ReverseNested.md index 7ef138aa86cc3cec6e422d1482d3b6e679af819a..d375bb9ede3148ecc2632fb29c71b3b324b60013 100644 --- a/docs/Aggregation/ReverseNested.md +++ b/docs/Aggregation/ReverseNested.md @@ -9,17 +9,17 @@ A special single bucket aggregation that enables aggregating on parent docs from ```JSON { "aggregations": { - "agg_comments": { + "comments": { "nested": { "path": "comments" }, "aggregations": { - "agg_top_usernames": { + "top_usernames": { "terms": { "field": "comments.username" }, "aggregations": { - "agg_comment_to_issue": { + "comment_to_issue": { "reverse_nested": {}, "aggregations": { "top_tags_per_comment": {