First of all, it would be a lot easier for people trying to help if you posted your JSON within code tags:
[code][/code]
Second, if you're having trouble removing the forum's formatting codes, e.g. links, etc., are you still using the graphical editor? If so, as has been suggested a couple of times before, it's a whole lot easier using the 'View source' mode (left-most toolbar icon), and removing/modifying formatting codes by hand. This is by far the crappiest forum editor I've ever used, but unfortunately we're stuck with it.
Third, it's much easier to read your JSON if you indent it instead of lining up every line with the far left-hand column. There are plenty of text editors and plugins/linters/formatters, etc. that will accomplish this for you. It will make it a lot easier to spot where you might have mismatched parentheses or brackets. E.g:
{
"providerName": "TVByDemand Productions",
"lastUpdated": "2017-04-20T12:57:08+00:00",
"language": "en",
"Series": [
{
"id": "1",
"title": "Bonanza",
"seasons": [
{
"seasonnumber": "1",
"episodes": [
{
"id": "2085",
"title": "S1E12 The Hanging Posse",
"content": {
"dateAdded": "2016-03-03T12:35:13+00:00",
"videos": [
{
"url": "http://www.tvbydemand.com/.............n1/s01e12/finished.ism/manifest",
"quality": "SD",
"videoType": "SMOOTH",
"duration": 3623,
"thumbnail": "http://www.tvbydemand.com/images/bonanza.JPG",
"episodenumber": 12,
"shortDescription": "S1E12 The Hanging Posse"
}
]
}
},
{
"id": "2086",
"title": "S1E13 Vendetta",
"content": {
"dateAdded": "2016-03-03T12:35:14+00:00",
"videos": [
{
"url": "http://www.tvbydemand.com/....................1/s01e13/finished.ism/manifest",
"quality": "SD",
"videoType": "SMOOTH",
"duration": 2969,
"thumbnail": "http://www.tvbydemand.com/images/bonanza.JPG",
"episodenumber": 13,
"shortDescription": "S1E13 Vendetta"
}
]
}
},
{
"id": "2087",
"title": "S1E14 The Sisters",
"content": {
"dateAdded": "2016-03-03T12:35:16+00:00",
"videos": [
{
"url": "http://www.tvbydemand.com/media3/iis/tv/bonanza/season1/s01e14/finished.ism/manifest",
"quality": "SD",
"videoType": "SMOOTH",
"duration": 3464,
"thumbnail": "http://www.tvbydemand.com/images/bonanza.JPG",
"episodenumber": 14,
"shortDescription": "S1E14 The Sisters"
}
]
}
}
]
}
]
}
]
}
^^^ formatted using the ATOM Editor with the prettify-json plugin -- available on Windows, Mac, and Linux; it will syntax-check, format, and syntax-highlight your JSON code making it much easier to read; it even lets you collapse indented blocks, to de-clutter and focus on what piece of the file you're currently working on.
Fourth, the DP Feed Specification states:
All the properties in the schema are case sensitive.
It defines
series in all lower-case, yet you've used
Series instead. That may explain why DP doesn't find any content it recognizes.