Options
- Subscribe to RSS Feed
- Mark Question as New
- Mark Question as Read
- Float this Question for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Solved
Go to solution
Help with JOLT Spec to add new json key with a value from another key
Labels:
- Labels:
-
Apache NiFi
New Contributor
Created ‎04-19-2024 08:17 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hoping someone can help me with a JOLT spec.
I have the following json:
{
"schemaVersion": "3.2",
"uniqueIdentifier": "ri.nzRNR5a3ad1AzOkv_2FU9WN6Z_2FluxpEl4eXjgUnYpgkvk_3D",
"entityType": "CAR"
}
and I need to use JOLT to transform to this:
{
"_id": "ri.nzRNR5a3ad1AzOkv_2FU9WN6Z_2FluxpEl4eXjgUnYpgkvk_3D",
"schemaVersion": "3.2",
"uniqueIdentifier": "ri.nzRNR5a3ad1AzOkv_2FU9WN6Z_2FluxpEl4eXjgUnYpgkvk_3D",
"entityType": "CAR"
}
I cannot figure out the correct spec.
Thanks!
1 ACCEPTED SOLUTION
Super Guru
Created ‎04-19-2024 08:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can do this in different ways , here is one of them:
[
{
"operation": "shift",
"spec": {
"@uniqueIdentifier": "_id",
"*": "&"
}
}
]
Hope that helps.
2 REPLIES 2
Super Guru
Created ‎04-19-2024 08:30 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi,
You can do this in different ways , here is one of them:
[
{
"operation": "shift",
"spec": {
"@uniqueIdentifier": "_id",
"*": "&"
}
}
]
Hope that helps.
New Contributor
Created ‎04-20-2024 05:55 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you so much - that worked perfectly. I have so much to learn about JOLT.
