5

以下の私のコードの何が問題なのか、誰かが見つけることができますか? (Google Structured Testing Tool では検証されません。) 複数の商品を販売するページに追加する JSON-LD コードを作成しようとしています。

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@graph": [
{
  "@type": “Product”,
  "name": “tshirt",
  “description”: "test copy 1.”,
  “image”: “image.jpg”
},
{
  "@type": “Product”,
  "name": “tshirt 2",
  “description”: "test copy 2.”,
  “image”: “image2.jpg”
}
]
}
</script>

どんな助けでも大歓迎です!

4

1 に答える 1