Hi, I have a json where not all the elements have all the fields. How can we extract and show this in a table? For example: "{ "node" :" node1", "Command_output_interface" : [ { "TABLE_interface" : { "ROW_interface" : [ { "interface" : "ethernet1/1", "description" : "local", } { "interface" : "ethernet1/2", } { "interface" : "ethernet1/3", "description" : "wan", } ] } } ] }" As you can see, ethernet1/2 is not having description. When I try to table it using Spath and mvzip and mvextract, it is not working fine because it is shown in this way: node interface description node1 ethernet1/1 local node1 ethernet1/2 wan node1 ethernet1/3 And of course I want the following result, where there is no description for ethernet1/2: node interface description node1 ethernet1/1 local node1 ethernet1/2 node1 ethernet1/3 wan Can you help me? Seems simple but I haven't been able to find the way. Regards,
... View more