【发布时间】:2017-07-25 01:08:35
【问题描述】:
我正在尝试使用结构化数据来指定多个组织(见下文)。但谷歌的结构化数据测试工具只识别每种类型的第一项。
如何列出多个alumniOf 项目?
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "My Org",
"founder": {
"@type": "Person",
"name":"Me",
"alumniOf":{
"@type": "Organization",
"name": "My Org 1"
},
"alumniOf":{
"@type": "Organization",
"name": "My Org 2"
}
}
</script>
【问题讨论】:
-
@Richard Wallis 在这里写了关于这个主题的博客:dataliberate.com/2015/04/15/the-role-of-role-in-schema-org
标签: seo schema.org json-ld