- Organization:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"name": "公司名称",
"url": "公司网站URL",
"logo": "公司Logo图片URL",
"address": {
"@type": "PostalAddress",
"addressLocality": "公司所在城市",
"addressRegion": "公司所在省份",
"addressCountry": "公司所在国家"
}
}
</script>
- Article:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "文章URL"
},
"headline": "文章标题",
"image": {
"@type": "ImageObject",
"url": "文章配图URL",
"height": "图片高度",
"width": "图片宽度"
},
"datePublished": "文章发布时间",
"dateModified": "文章更新时间",
"author": {
"@type": "Person",
"name": "作者姓名"
},
"publisher": {
"@type": "Organization",
"name": "公司名称",
"logo": {
"@type": "ImageObject",
"url": "公司Logo图片URL",
"width": "图片宽度",
"height": "图片高度"
}
},
"description": "文章摘要"
}
</script>
- BreadcrumbList:
<script type="application/ld+json">
{
"@context":"http://schema.org",
"@type":"BreadcrumbList",
"itemListElement":[
{
"@type":"ListItem",
"position":1,
"name":"网站首页",
"item":"网站首页URL"
},
{
"@type":"ListItem",
"position":2,
"name":"文章分类",
"item":"文章分类URL"
},
{
"@type":"ListItem",
"position":3,
"name":"文章标题",
"item":"文章URL"
}
]
}
</script>
- Review:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Review",
"itemReviewed": {
"@type": "Thing",
"name": "产品名称"
},
"author": {
"@type": "Person",
"name": "作者姓名"
},
"reviewRating": {
"@type": "Rating",
"ratingValue": "评分",
"bestRating": 5,
"worstRating": 1
},
"publisher": {
"@type": "Organization",
"name": "公司名称"
},
"datePublished": "评测时间",
"description": "评测内容"
}
</script>