You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have this kind of json:
{ "entities": {
"organisations": [
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" }, ... other things ],
"places": [
{ "id": "97fe568b-5b25-46dc-bb85-0a7f52996f1d", "label": "Bangladesh" }, ... other things ]
}
}
I would like to have this:
[
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" },
{ "id": "97fe568b-5b25-46dc-bb85-0a7f52996f1d", "label": "Bangladesh" }
]
which works well for thsi case but when I have this other case:
{ "entities": {
"organisations": [
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" } ]
}
}
the result is not an array:
{
"id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" }
}
How can I fix this?
The text was updated successfully, but these errors were encountered:
I have this kind of json:
{ "entities": {
"organisations": [
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" }, ... other things ],
"places": [
{ "id": "97fe568b-5b25-46dc-bb85-0a7f52996f1d", "label": "Bangladesh" }, ... other things ]
}
}
I would like to have this:
[
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" },
{ "id": "97fe568b-5b25-46dc-bb85-0a7f52996f1d", "label": "Bangladesh" }
]
I used this transformation:
[{
"operation": "shift",
"spec": {
"entities": {
"places": {
"": "R0[#2]"
},
"organisations": {
"": "R0[#2]"
}
}
}
}, {
"operation": "shift",
"spec": {
"R0": { "*": "" }
}
}
]
which works well for thsi case but when I have this other case:
{ "entities": {
"organisations": [
{ "id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" } ]
}
}
the result is not an array:
{
"id": "b9c0b61b-e843-48c8-83a2-52bf2ea00971", "label": "ReCAAP ISC" }
}
How can I fix this?
The text was updated successfully, but these errors were encountered: