node.js rested json

We're sending out a chunk of json to node/faye and having some issues with nested arrays. Here is the json:

{
    "event_189420": {
        "num_horses": 11,
        "sport_name": "horse",
        "conditions": "",
        "ort": 13,
        "result_4": [],
        "sis": "",
        "fixed_odds": false,
        "event_class": "Attele - Course G (trot)",
        "event_desc": "Prix de L'U.N.A.T.",
        "non_runners": "",
        "event_id": 189420,
        "tek": "",
        "distance": "2650m",
        "good_result_count": 0,
        "result_prices": {},
        "result_1": [],
        "ticker": "",
        "prize": "6000 EUR",
        "result_2": [],
        "race_name": "Bordeaux Le Bouscat",
        "big_screen": true,
        "horses": [
            [
                "Qu'Il Vive del Sol",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Rocky du Bordage",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Reve",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Rafale des Racques",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Releve du Liard",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Nichtstarter",
                false,
                "****",
                "****",
                "",
                "",
                "",
                "",
                true,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Rire Eclatant",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Quinquin",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Pacific d'Yvel",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Romain de Godisson",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ],
            [
                "Rhapsodie Models",
                false,
                "",
                "999",
                "",
                "",
                "",
                "",
                false,
                "",
                false,
                false,
                "OK"
            ]
        ],
        "starting_time": "16:10",
        "result_3": [],
        "race_status": "open",
        "small_screen": true,
        "pmsg": "",
        "race_num": 8
    }
}

As you can see there are a lot of 'empty' elements (just ""). For the 'top level' object this is fine, we get 'key': ''. But, for the sub array (in this case 'horses') the "" elements are simply removed.

This must be happening on the client side - everything we see on the server side looks ok. Even using static json pulled from a file exhibits the same behaviour on the client.

Are we doing something wrong or is this an issue with node/faye?

If you need to create a placeholder in the array, use NULL instead of an empty string.