14 do x=._,.,.a,.b,.c,.d,.e,-99, 0, 1,2, 3.333333;
18%mp_jsonout(OPEN,jref=webref)
19%mp_jsonout(OBJ,demo,jref=webref,fmt=N,missing=STRING)
20%mp_jsonout(CLOSE,jref=webref)
28libname web JSON fileref=webref;
31data work.test(keep=x);
32 set web.demo(rename=(x=y));
34 else if anyalpha(y) then x=input(cats(
".",y),best.);
35 else x=input(y,best.);
41 desc=Checking
for error condition with special missing export,
42 outds=work.test_results
45proc compare base=work.demo compare=work.test;
50 desc=Returned json is identical to input table for all special missings,
51 outds=work.test_results