Re: Many I ask for a little guidance please?

Hi Terry,

It's telling you that your input is not valid JSON-LD.

Use a tool like jsonld-playground https://json-ld.org/playground/ to 
test your input. It will show you details about the error and where it 
is. In your case you are missing the closing *}* at the end of the document:

{
  "@context": "https://schema.org",
  "@type": "LocalBusiness",
  "name": "California Classics (Hull) Limited",
  "image": "https://images.cchl.co.uk/logo.png",
  "@id": "https://cchl.co.uk/",
  "url": "https://cchl.co.uk/",
  "telephone": "01482 441 551",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "29 Bankside",
    "addressLocality": "Hull",
    "postalCode": "HU5 1SY",
    "addressCountry": "GB",
    "addressRegion": "East Yorkshire"
  },
  "priceRange": "£19,950 to £59,950",
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": "53.762134",
    "longitude": "-0.334967"
  },
  "sameAs": [
"https://www.facebook.com/CCHLHull/",
"https://www.youtube.com/c/CchlCoUk/videos",
"https://www.youtube.com/@CCHLSimonLucasMGHull/videos"
  ],
  "openingHoursSpecification": [
    {
      "@type": "OpeningHoursSpecification",
      "dayOfWeek": [
        "Monday",
        "Tuesday",
        "Wednesday",
        "Thursday",
        "Friday"
      ],
      "opens": "08:00",
      "closes": "16:00"
    }
  ]
*}*


Sinc. Omar



On 31.07.23 15:16, terry wrote:
> Many I ask for a little guidance please?
> I keep seeing this error when I test this text on the validator.
> # Uncategorised Errors1 ERRORexpand_less
> cancel
> JSON-LD
>  
> Missing ',' or ']' in array declaration.
>
> If I am asking in the wrong place might someone point me to a better 
> place please?
>
>
> <script type="application/ld+json">
> {
>  "@context": "https://schema.org",
>  "@type": "LocalBusiness",
>  "name": "California Classics (Hull) Limited",
>  "image": "https://images.cchl.co.uk/logo.png",
>  "@id": "https://cchl.co.uk/",
>  "url": "https://cchl.co.uk/",
>  "telephone": "01482 441 551",
>  "address": {
>    "@type": "PostalAddress",
>    "streetAddress": "29 Bankside",
>    "addressLocality": "Hull",
>    "postalCode": "HU5 1SY",
>    "addressCountry": "GB",
>    "addressRegion": "East Yorkshire"
>  },
>  "priceRange": "£19,950 to £59,950",
>  "geo": {
>    "@type": "GeoCoordinates",
>    "latitude": "53.762134",
>    "longitude": "-0.334967"
>  },
>  "sameAs": [
>    "https://www.facebook.com/CCHLHull/",
>    "https://www.youtube.com/c/CchlCoUk/videos",
>    "https://www.youtube.com/@CCHLSimonLucasMGHull/videos"
>  ],
>  "openingHoursSpecification": [
>    {
>      "@type": "OpeningHoursSpecification",
>      "dayOfWeek": [
>        "Monday",
>        "Tuesday",
>        "Wednesday",
>        "Thursday",
>        "Friday"
>      ],
>      "opens": "08:00",
>      "closes": "16:00"
>    }
>  ]

Received on Tuesday, 1 August 2023 08:43:43 UTC