我正在寻找打破嵌套的JSON文件,并试图将它们扁平化,以适应SQL数据库。
当前JSON:
{
"content": {
"failedPerProductLineAndReason": {
"Product1": {
"Downsizing licenses is not allowed": 1
}
}
}
}
预期成果:
{
"ErrorType": "failedPerProductLineAndReason",
"product": "Product1",
"error": "Downsizing licenses is not allowed",
"quantity": 1
}
2条答案
按热度按时间ccrfmcuu1#
进入
Downsizing licenses is not allowed
并通过@
获取其值,然后通过$
获取您想要的另一个密钥8wtpewkr2#
您可以在对象/属性中使用**$**通配符,如
如主要需要提取密钥
站点http://jolt-demo.appspot.com/上的演示是