When jQuery receive a json, jQuery automatically convert it to a javascript object. So data
just contains your object ready to be used.
If you want to access to the original text of the response, you can do this :
success: function(data, textStatus, jqXHR){
alert(jqXHR.responseText);
}