Type : SASHELP
The data comes from the SASHELP library, specifically from the ORSALES table, which is an example dataset provided with SAS.
| 1 | * create a JSON version of the SAS table ; |
| 2 | PROC JSON out=_webout pretty nosastags ; |
| 3 | write open object ; |
| 4 | write values "rows" ; |
| 5 | write open array ; |
| 6 | export sashelp.orsales ; |
| 7 | write close ; |
| 8 | write close ; |
| 9 | RUN ; |