json_decode пустой массив из-за SyntaxError

У меня есть следующий файл Json:

{   "id": "04d925a8-c62a-4c28-83eb-21bfb879583a",   "timestamp": "2017-05-07T10:23:05.165Z",   "lang": "en",   "result": {     "source": "agent",     "resolvedQuery": "fever",     "action": "d",     "actionIncomplete": false,     "parameters": {       "Disease": [         "influenza"       ],       "Interest": "",       "Search": "",       "sick": "",       "Symptom": [         "Headache",         "Stomach ache",         "fever"       ],       "Use": "No"     },     "contexts": [],     "metadata": {       "intentId": "49ebecd7-4efd-421b-868e-5a97637ef749",       "webhookUsed": "false",       "webhookForSlotFillingUsed": "false",       "intentName": "Doctor"     },     "fulfillment": {       "speech": "I think you possible have the influenza with symptoms Headache, Stomach ache and fever, influenza, Headache, Stomach ache and fever",       "messages": [         {           "type": 0,           "speech": "I think you possible have the influenza with symptoms Headache, Stomach ache and fever, influenza, Headache, Stomach ache and fever"         },         {           "type": 4,           "payload": {             "Google": {               "attachment": {                 "type": "",                 "payload": {}               }             },             "kik": {               "type": "",               "body": ""             },             "slack": {               "text": "",               "attachments": []             },             "telegram": {               "text": ""             },             "viber": {               "type": "text",               "text": ""             }           }         }       ]     },     "score": 1   },   "status": {     "code": 200,     "errorType": "success"   },   "sessionId": "ba024d91-b309-4fa7-919c-6780e77f57e5" } 

но когда я делаю json_decode в php, он дает мне пустой массив. Это означает, что Json правильно отформатирован. Поэтому я проверил свой json на веб-сайте JsonLint json validator. И я получил SyntaxError: Bad string on line 1 это первая фигурная скобка json-файла. Почему это неправильно? или у меня есть другие ошибки в моем json? Потому что я не могу найти проблему. Любая помощь приветствуется.