lJSON-LD语法错误:期望值,对象或数组

时间:2019-03-16 08:17:18

标签: json

我只是想使用标记将事件发布到google上,所以我对此还很陌生,所以希望有人可以帮助我检查以下内容并得到上面的错误

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Event",
  "name": “Staunton Harold Sportive”,
  "startDate": "2019-05-26T08:00",
  "endDate": "2019-05-26T17:00",
  "location": {
    "@type": "Place",
    "name": “Staunton Harold Hall”,
    "address": {
      "@type": "PostalAddress",
      "streetAddress": “Melbourne Road”,
      "addressLocality": “Ashby De la Zouch“,
      "postalCode": "LE65 1RT",
      "addressRegion": “Derbyshire”,
      "addressCountry": "UK”

    }
  },
  "image": [

    "https://static.wixstatic.com/media/36c4d1_84383c3423f0429b8fe7988a0382dbb0~mv2_d_3905_2194_s_2.png/v1/fill/w_1084,h_608,al_c,usm_0.66_1.00_0.01/Staunton%20Harold%20sportive.png",

   ],
  "description": " 
Fun - 14K
Short - 40K
Medium - 100K
Long - 160K  The Staunton Harold Sportive starts from the privately owned, estate in the stunning surroundings of Staunton Harold Hall  estate, providing the perfect backdrop for a fun and enjoyable bike ride.",
  "offers": {
    "@type": "Offer",
    "url": "https://www.triathlon-events.com/staunton-harold-sportive",
    "price": “20",
    "priceCurrency": “GBP”,
    "availability": "https://schema.org/InStock",
    "validFrom": "2018-05-26T16:00"
  },
  “Organizer”: {
    "@type": “Organizer”,
    "name": “Choose Sports Ltd”
  }
}
</script>

1 个答案:

答案 0 :(得分:1)

这可能是因为您在某些地方使用了弯引号而不是直的引号,例如“ Staunton Harold Sportive”需要使用“ https://schema.org”中的引号。我先将其换出并重新测试。希望有帮助。