Member since
10-26-2020
1
Post
0
Kudos Received
0
Solutions
10-26-2020
06:50 AM
Actually I need to filter the id exist data and non existing data to separate user defined array list. can someone help me with Jolt Specification. someone please help me with the jolt specification to achieve the below results. Input:
{
"data": [
{
"name": "a",
"id": "100"
},
{
"name": "b",
"id": "101"
},
{
"name": "c"
}
]
}
Output:
{
"IdExists": [
{
"name": "a",
"id": "100"
},
{
"name": "b"
}
],
"IdNotExists": [
{
"name": "c"
}
]
}
jolt
... View more
Labels:
- Labels:
-
Apache NiFi