0

JsonBuilder Script does not work when json key has dot. Works well when key does not contains dot.

security.set(data.getValue('set', index).toBoolean())

I want the output json like

"security.set": true
user2201789
  • 1,083
  • 2
  • 20
  • 45

1 Answers1

0
import data from <your json file path>;

data['security.set'] will give you the value.

Avinash
  • 879
  • 2
  • 14
  • 26