Can anyone identify the format of this JSON (if it even is JSON!) from the code snippet below? I've extracted this data from a website's HTML and now I'm struggling to parse it in C# using a JSON parser. The data requires significant preprocessing to align with 'valid' JSON standards as per JSONLint. One issue is that variable names should be wrapped in double quotes, unlike the current structure.
{
"status": "A",
"displayed": "Y",
"start_time": "2010-11-26 00:00:00",
"start_time_xls": {
"en": "26thofNov2010 00:00am",
"es": "26Nov2010 00:00am"
},
"suspend_at": "2010-11-26 19:57:59",
"is_off": "Y",
"score_home": "",
"score_away": "",
"bids_status": "",
"period_id": "",
"curr_period_start_time": "",
"score_extra_info": "",
"ev_id": 2257335,
"blurb": "",
"last_mkts_of_day": false,
"follow_hcap_mkt": 10999896
}
This data will always maintain the same structure, making it ideal for direct parsing into an object in languages like C# or Java.