This is a 'for your information" post.
A few people have reported seeing an error lie below in the front end of their sites.
Error decoding JSON data
This happened to me yesterday so i thought I'd post the cause and our solution.
The symptom started with a search list that started returning a 404 page not found error. ON closer inspection there was a hidden server 500 error. We had several lists setup in Seblod all the same way and there were no differences with meta data as such. The issue as detailed here https://github.com/joomla/joomla-cms/issues/12460 strongly suggests that legacy json meta data might be in a format that the latest version of Joomla did not like.
I thought it could be 'dodgy' content and sure enough as soon as I unpublished one specific list item/article the 404 disappeared.
The problem: file upload plugin
The title link of the file set in the file upload plugin field is set to store as json but the field length in the databse is only 255 characters and the clients was adding a title that was 267 characters long. The json was broken and this made the front end list display 404, and the backend for that specific article also showed the same error
Solution:
In the field manager i located the specific field and altered ts storage to be longer than 255 in the plugins admin settings. Simple as that.
Hope this saves some one else a few hours head scratching ;)