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

          C R created issue -
          C R made changes -
          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}

            rsandell rsandell
            cnjr2 C R
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: