-
Improvement
-
Resolution: Unresolved
-
Minor
-
Jenkins ver. 2.46.3
Perhaps it is already possible and I am experiencing a bug? When I read a nested JSON file with readJSON, only keep the first entry of nested elements are kept.
{"flip": "flop", "flee": {"flit": "flup", "fleck": 5}}
becomes:
{"flip": "flop", "flee": {"flit": "flup"}}
[JENKINS-44978] allow nested JSON to be read with readJSON
Description |
Original:
Perhaps it is already possible and I am experiencing a bug? When I read a nested JSON file with readJSON, only keep the first entry of nested elements are kept. ```json \{"flip": "flop", "flee": \{"flit": "flup", "fleck": 5}} ``` becomes: ```json \{"flip": "flop", "flee": \{"flit": "flup"}} ``` |
New:
Perhaps it is already possible and I am experiencing a bug? When I read a nested JSON file with readJSON, only keep the first entry of nested elements are kept. {code:java} {"flip": "flop", "flee": {"flit": "flup", "fleck": 5}}{code} becomes: {code:java} {"flip": "flop", "flee": {"flit": "flup"}} {code} |