Ввод:
{ "table": [{ "_id": { "personId": 1234, "customer": 345, "locale": "en" }} ] }
Нужен вывод в этом формате, каким должен быть мой Jolt Spec
{ "table": [{ "personId": 1234, "customer": 345, "locale": "en" }] }
Мне удалось найти решение.
[ { "operation": "shift", "spec": { "*": { "*": { "_id": { "personId": "table[&2].personId", "customer": "table[&2].customer", "locale": "table[&2].locale" } } } } } ]
Попробуйте пример ниже:
[ { "operation": "shift", "spec": { "table": { // table items "*": { // internal object in item under "_id" key "*": "table[]" } } } } ]