Google事件的结构化数据

时间:2016-07-26 10:58:26

标签: seo schema.org json-ld google-rich-snippets

我想在Google上展示活动,所以我创建了这个JSON-LD:

<script type="application/ld+json">
[{
  "@context": "http://schema.org",
  "@type": "TestEvent",
  "name": "Rohit Patil Event",
  "startDate": "2014-10-10T19:30",
  "location": {
     "@type": "Place",
     "name": "Warner Theatre",
     "address": "Washington, DC"
  },
  "offers": {
     "@type": "Offer",
     "url": "https://www.etix.com/ticket/1771656"
  }
}
]
</script>

我在测试工具中测试了这个并且有0错误。

如何使用此代码在Google上运行?放置此代码的最佳文件是什么?

3 个答案:

答案 0 :(得分:0)

您可以将Error: Could not find or load main class C 元素添加到有关此事件的页面,in the head or in the body

如果您使用Microdata或RDFa而不是JSON-LD,则会变得更加清晰,因为您必须标记现有内容。使用JSON-LD,您可以复制内容,但仍应将其放置在实际/可见内容的位置。

答案 1 :(得分:0)

您需要将其嵌入到内容与同一事件相关的网页中。您可以在以下网址找到更多信息:

https://developers.google.com/search/docs/guides/intro-structured-data#markup-formats-and-placement

JSON-LD是谷歌此时推荐的格式。

答案 2 :(得分:0)

在这种情况下&#34;最好的文件&#34;将该代码放在 Rohit Patil事件文件中。它应该介于该网页的头部之间。即

 <html> 
<head> 
..your json-ld code.. 
</head> 
</html>