Help finding bad JSON issues

Mark D Kerr:
[{
“schema”: {
“groups”: [{
“fields”: [{
“_”: “SPLASH”,
“html”: “\n <div class="mb-3 pt-28 pb-16 sm:pb-24 sm:mb-12 px-4 flex flex-1 flex-col mx-auto ">\n\n <div class="flex-1 flex flex-col">\n <h1 class="text-sky-700 text-center text-4xl sm:text-5xl font-bold tracking-tight ">Q-Shred\n \n <img src="https://ucarecdn.com/ffebd2bd-ca87-4134-9bbb-30f35f7d6c30/Round_Q_trans.png” alt="ShredMetric Logo" class="mx-auto mt-3 w-56">\n \n \n\n\n \n\n \n\n",
“styleClasses”: "mb-0 ",
“type”: “html”
}],
“styleClasses”: “h-screen sm:h-min”
}]
}
}]


Eduardo Aramizu:
it looks like the start of your src URL has an escaped double quotes, but the end does not

src=\"<https://ucarecdn.com/ffebd2bd-ca87-4134-9bbb-30f35f7d6c30/Round_Q_trans.png>"

Mark D Kerr:
Thank you! I added what I thought would address your comment, but seemingly, still not getting it quite right…


Mark D Kerr:
[{
“schema”: {
“groups”: [{
“fields”: [{
“_”: “SPLASH”,
“html”: “\n <div class="mb-3 pt-28 pb-16 sm:pb-24 sm:mb-12 px-4 flex flex-1 flex-col mx-auto ">\n\n <div class="flex-1 flex flex-col">\n <h1 class="text-sky-700 text-center text-4xl sm:text-5xl font-bold tracking-tight ">Q-Shred\n \n <img src="https://ucarecdn.com/ffebd2bd-ca87-4134-9bbb-30f35f7d6c30\Round_Q_trans.png" alt="ShredMetric Logo" class="mx-auto mt-3 w-56">\n \n \n\n\n \n\n \n\n”,
“styleClasses”: "mb-0 ",
“type”: “html”
}],
“styleClasses”: “h-screen sm:h-min”
}]
}
}]


Mark D Kerr:
Error reports Bad String


Mark D Kerr:
SORRY…I see it.


Mark D Kerr:
Works! Thanky you so much for helping this poor rookie!


Mark D Kerr:
I do/have learned from your assist:+1:


Eduardo Aramizu:
No problem, glad you figure it out


Trevor Gildersleeve:
Another tip… If you put your JSON into https://jsoneditoronline.org it will show you where the error has occurred, and in this case even offers to auto-repair it.


Mark D Kerr:
Thanks! Very helpful.