hansva commented on issue #3395:
URL: https://github.com/apache/hop/issues/3395#issuecomment-1812113279
You are right, I think with the option you added you should be able to
create all you need.
You might need some extra steps but you should be able to create whatever
json you need now, using the json fragment feature and the array feature...
Fyi was thinking about something like this:
| client | host | options |
| ------- | ------ | -------- |
| client1 | host 1 | option a |
| client1 | host 1 | option b |
| client1 | host 1 | option c |
| client1 | host 1 | option d |
| client1 | host 2 | option a |
| client1 | host 2 | option b |
| client1 | host 2 | option c |
| client1 | host 2 | option d |
to convert to
```
{
"client1" : [
{
"host": "host 1",
"options" : [
"option a",
"option b",
"option c",
"option d"
]
},
{
"host" : "host2"
....
}
]
}
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]