JQ基于其他属性值删除属性

时间:2015-12-07 20:34:21

标签: json jq

我正在尝试编写一个JQ过滤器,允许我根据其他值来有选择地过滤对象属性。

例如,给出以下输入

{
"object1": {
"Type": "Type1",
"Properties": {
  "Property1": "blablabla",
  "Property2": [
    {
      "Key": "Name",
      "Value": "xxx"
    },
    {
      "Key": "Surname",
      "Value": "yyy"
    }
  ],
  "Property3": "xxx"
 }
},
"object2": {
"Type": "Type2",
"Properties": {
  "Property1": "blablabla",
  "Property2": [
    {
      "Key": "Name",
      "Value": "xxx"
    },
    {
      "Key": "Surname",
      "Value": "yyy"
    }
  ],
  "Property3": "xxx"
  }
 }
}

我想构建一个基于对象类型的过滤器,比如“Type2”,删除或清除该对象的属性,比如说Property2。 结果输出将是:

{
"object1": {
"Type": "Type1",
"Properties": {
  "Property1": "blablabla",
  "Property2": [
    {
      "Key": "Name",
      "Value": "xxx"
    },
    {
      "Key": "Surname",
      "Value": "yyy"
    }
  ],
  "Property3": "xxx"
 }
},
"object2": {
"Type": "Type2",
"Properties": {
  "Property1": "blablabla",
  "Property3": "xxx"
  }
 }
}

任何帮助非常感谢。提前谢谢。

2 个答案:

答案 0 :(得分:0)

非常简单。找到要更新的对象,然后更新它们。

查看根对象的值,根据您的条件对其进行过滤,更新Properties属性,删除所需的属性。

(.[] | select(.Type == "Type2")).Properties |= del(.Property2)

在对象上使用.[]会生成对象的所有属性值。另外值得一提的是,当您使用赋值更新值时,表达式的结果只返回输入(换句话说,它不会更改上下文)。

答案 1 :(得分:0)

直接方法:

.[] |= (if .Type == "Type2" then delpaths([["Properties", "Property2"]]) else . end)