My question a bit similar to Elasticsearch - get nested fields
but my data is more complex, so nested field in my case is array of dicts keywords:
keywords = [{'key': key1, 'value': value1}, {'key': key2, 'value': value2}, ...]
Is there any way to get only some value specifying it somehow in _source, for example I need value where key = key2?
Or the only way is to get all keywords and parse it manually in my script?