问题: 这是最好的方法吗?
工具:
jq --version
jq-1.5-1-a5b5cbe
要求:要递归地标识仅包含单个对象[]
的数组{}
并将该数组转换回标准对象{}
。本质上是在不需要父数组时将其删除。
似乎可行的方法:
(..|select(type=="array" and .[1] == null ) | . ) |= add | .
用例:
Google自定义搜索JSON包含许多数组,其中许多是单个对象数组。 Logstash input
,codec => json
和/或json
过滤器似乎无法自动将单个对象数组转换为Elasticsearch字段。
答案 0 :(得分:1)
最简单的方法是使用walk/1
,但是它仅在jq 1.5发行之后才引入。因此,以下内容包括其定义:
# Apply f to composite entities recursively, and to atoms
def walk(f):
. as $in
| if type == "object" then
reduce keys[] as $key
( {}; . + { ($key): ($in[$key] | walk(f)) } ) | f
elif type == "array" then map( walk(f) ) | f
else f
end;
walk(if type=="array" and length==1 and (.[0]|type) == "object" then .[0] else . end)
当然可以有很多变体,例如按照您的程序:
walk(if type=="array" and length==1 then .[0] else . end)