display json on html

display json on html

hello. i am calling an json file via ajax using jquery. its response succesfully but i dont have idea how to display this on html using jquery.
i only want to display is SCHEDULE_ID, ACCOUNT_NO, POLE_NO and DESC.. 
here my ajax code
$ . ajax ( {
   type : 'GET' ,
   url : "test2.php" ,
   success : function ( data ) {
           console . log ( data ) ;
              document . writeln ( data ) ;
       }
} ) ;

and this is the json..

{  "SQL_CFG_1": {  "@id": "12345678",  "schedulebyaccountNo": { "CURSOR_OUT": [  {  "SCHEDULE_ID": "1234",  "ACCOUNT_NO": "123123123",  "POLE_NO": "1231231",  "DESC": "SOMEDESCRIPTION"  },  {  "SCHEDULE_ID": "1234",  "ACCOUNT_NO": "123123123",  "POLE_NO": "1231231",  "DESC": "SOMEDESCRIPTION"  },  {  "SCHEDULE_ID": "1234",  "ACCOUNT_NO": "123123123",  "POLE_NO": "1231231",  "DESC": "SOMEDESCRIPTION"  }  ]}  } }