我正在尝试使用jq在API请求或响应的各个级别上修改json数据,以支持API版本控制。
这是我的(简化的)测试JSON:
[
{
"note": null,
"patient_id": 1,
"phenotypes": [
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 1,
"person_id": 1
},
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 1,
"person_id": 1
}
]
},
{
"note": null,
"patient_id": 2
},
{
"note": null,
"patient_id": 3,
"phenotypes": [
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 3,
"person_id": 3
},
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 3,
"person_id": 3
}
]
}
]
我有一个对象数组。每个对象都可以具有"phenotypes"
,我需要修改其内容,并从顶级对象中删除"note"
。
当前我的jq如下:
[ map(del(.note, .age)) | .[] | select(.phenotypes != null) | .phenotypes |= map(del(.person_id)) ]
这几乎可以工作,但是由于select(.phenotypes != null)
,数组中的第二个对象在过滤后再也不会恢复。
我也尝试过使用if-then-else(end),但是我不能使它没有错误,而且我找不到任何示例或说明它可以用于进一步表达的文档。
我的预期输出如下:
[
{
"patient_id": 1,
"phenotypes": [
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 1
},
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 1
}
]
},
{
"patient_id": 2
},
{
"patient_id": 3,
"phenotypes": [
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 3
},
{
"name": "Breast carcinoma",
"observation": "present",
"patient_id": 3
}
]
}
]
note
已从根目录中删除。
person_id
已从phenotypes
中删除。
答案 0 :(得分:3)
这对我有用:
map(del(.note, .age)) |
map(
if .phenotypes then
(.phenotypes |= map(del(.person_id)))
else
.
end
)