JSON-LD 是一种易于使用的基于 JSON 的链接数据格式,它定义了 context
的概念,以指定类型和属性的词汇表。Gmail 支持 HTML 文档中嵌入的 JSON-LD 数据(@context
为 schema.org
),如以下示例所示:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Person",
"name": "John Doe",
"jobTitle": "Graduate research assistant",
"affiliation": "University of Dreams",
"additionalName": "Johnny",
"url": "http://www.example.com",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 Peach Drive",
"addressLocality": "Wonderland",
"addressRegion": "Georgia"
}
}
</script>
如需查看 JSON-LD 语法的完整规范和要求,请访问 json-ld.org。您也可以使用我们的架构验证器工具试用 JSON-LD 和调试标记。