Created
March 3, 2016 21:01
-
-
Save vinpereira/ffd9b0351fb2b590e025 to your computer and use it in GitHub Desktop.
Aggregation in another scope with dynamic value
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
{ | |
"_id" : { | |
"store" : true, | |
"index" : "not_analyzed" | |
}, | |
"_timestamp" : { | |
"enabled" : true, | |
"store" : true | |
}, | |
"properties" : { | |
"processDefinition.id" : { | |
"type" : "string", | |
"index" : "not_analyzed", | |
"doc_values" : true | |
}, | |
"processDefinition.key" : { | |
"type" : "string", | |
"index" : "not_analyzed", | |
"doc_values" : true | |
}, | |
"processDefinition.name" : { | |
"type" : "string" | |
}, | |
... | |
"variables" : { | |
"type" : "nested", | |
"properties" : { | |
... | |
"name" : { | |
"type" : "string", | |
"index" : "not_analyzed", | |
"doc_values" : true | |
}, | |
"rawValue" : { | |
"type" : "string", | |
"index" : "not_analyzed", | |
"doc_values" : true | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment