PubSub JSON parsing difficulty

Admittedly I am new to this side of scripting. The console just returns the error “Uncaught SyntaxError: Unexpected token u in JSON at position 77”

Here’s the very basic javascript code I’m trying to read the data with, it’s trying to parse specifically the message I received in the console before:

testjson()

function testjson () {

var obj = $.parseJSON(’{“type”:“MESSAGE”,“data”:{“topic”:“channel-bitsevents.XXXX”,“message”:"{“user_name”:“metal_babble”,“channel_name”:“cleartonic”,“user_id”:“XXXX”,“channel_id”:“XXXX”,“time”:“2016-09-18T13:54:13.668Z”,“chat_message”:“cheer1 Test 2.”,“bits_used”:1,“total_bits_used”:2,“context”:“cheer”}"}}’);
console.log( obj.type);
alert(“Success”)
}

What do you mean by “parse that part as JSON again” (assuming you’re talking about message) ?

Thank you