Hi, the JSON engine does not need any separate license, it's just baked in there in sufficiently recent SAS platform versions. If it's not there maybe SAS version is somewhat outdated and may be upgraded to a recent 9.4 maintenance release. Even in this case, and if SAS BI Web Services is still your choice (despite high availability concerns), there are plenty of workaround approaches: You can hard-code conversion logic using good old string manipulation functions without using specialized json libraries or engines You can possibly export json to a physical file and then run whatever Linux command or script you like to operate on that JSON ("jq", python, or node.js), then load the results back. The execution delay may increase with all these back-and-forths, that's correct. etc Or you can implement a conversion web service using any other programming environment (not necessarily SAS BI or AWS Lambda) - Java, Python, Perl - whatever works for you and your customer. If implemented properly, an impact on execution delay may be negligible (like under 5ms easily). At this moment I'm not sure what's your remaining question and how can we help you further. You may reach for more help on Stackoverflow... If you question is "are there any controls in SAS RTDM that will somehow teach him to accept hierarchical JSON queries without external conversion, that it does not do currently based on your test" - then the answer is unfortunately no. Good luck!
... View more