i have a customer data table and would like to create a JSON output file using SAS, in specific hierarchy similar to one below.. Thanks [ { "Entity" : "Sale", "TransactionID" : "20190110_AC879", "Fields" : { "type" : "Individual", "cust_name" : "Bob Lee", "item_code" : "BV9849", "amt_prItem" : "99.99", and so on.... } { "Entity" : "Sale", "TransactionID" : "20190123_ZR067", "Fields" : { "type" : "Individual", "cust_name" : "Sarah Doe", "item_code" : "BV8549" "amt_prItem" : "15.09" and so on.. } } ]
... View more