5

有人能发现我下面的代码有什么问题吗?(它在 Google 结构化测试工具中无效。)我正在尝试创建 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

6
于 2015-07-30T17:53:02.560 回答