-
Type:
Change Request
-
Resolution: Unresolved
-
Priority:
Trivial
-
None
-
Affects Version/s: 5.0.3
-
Component/s: None
-
None
I have a JSON file
{
"data": {
"carts": [
{
"user_id": 1,
"user_name": "John",
"total_price": 34
"in_cart" : [
{
"products": [{
"product_id": 1,
"price": 30
},
{
"product_id": 3,
"price": 4
}
]
}
]
},
{
"user_id": 2
"user_name": "Kate",
"total_price": 5,
"in_cart" : [
{
"products": [
{
"product_id": 3,
"price": 5
}
]
}
]
}
]
}
}
I need to discovery every product of each user.
I have created some screenshot to show you how it should be.
You can see that
{#PRODUCT_ID}
macros could not be "opened".
return_json is a external script
UserParameter=return_json[*], python /opt/return_json.py
This scrip returns:
{"data": {"carts": [{"user_name": "John", "total_price": 34, "user_id": 1, "in_cart": [{"products": [{"price": 30, "product_id": 1}, {"price": 4, "product_id": 3}]}]}, {"user_name": "Kate", "total_price": 5, "user_id": 2, "in_cart": [{"products": [{"price": 5, "product_id": 3}]}]}]}}
So I'm looking forward to be able to discovery any nested JSON file.