JSON will not compile, it gives: "Waiting" STRING "," NUMBER "," NULL "," TRUE "," FALSE "," {',' ['"error

Can someone please tell me what is wrong with this code? Ive tried everything and dont know why he keeps giving me this error:

Analysis error on line 3: ... "," shortName ":" Simple "," longN

---------------------------------------------- ^

Waiting for STRING, NUMBER, NULL, TRUE, FALSE, {{, '['

{
    "uuid": "13371337-d579-4d75-a5c5-8dfcfe110f62",
    "shortName": "Simple",
    "longName": "Simple",
    "companyName": "pjtnt11",
    "versionCode": 1,
    "versionLabel": "1.7",
    "watchapp": 
        {
            "watchface": true
        },
    "appKeys": 
        {
            "dummy": 0
        },
    "resources": 
        {
            "media": []
        }
}

Thank!

+4
source share
1 answer

"" . , , . JSON.

, , .

JSON:

{
    "uuid": "13371337-d579-4d75-a5c5-8dfcfe110f62",
    "shortName": "Simple",
    "longName": "Simple",
    "companyName": "pjtnt11",
    "versionCode": 1,
    "versionLabel": "1.7",
    "watchapp": {
        "watchface": true
    },
    "appKeys": {
        "dummy": 0
    },
    "resources": {
        "media": [

        ]
    }
}
+10

All Articles