【SEO対策】BreadcrumbList-パンくずリスト用の構造化データ(JSON-LD)の書き方

設置が終わったらGoogle先生が提供している「構造化データテストツール」でエラーが出ていないかチェック

<script type="application/ld+json">
{"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://blackpigtail.com",
"name": "TOP"
}
}
,{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://blackpigtail.com/web-parts",
"name": "WEBパーツ"
}
}
,{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://blackpigtail.com/web-parts/cheat-sheet",
"name": "チートシート"
}
}
,{
"@type": "ListItem",
"position": 4,
"item": {
"@id": "https://blackpigtail.com/web-parts/cheat-sheet/seo-schema",
"name": "SEO対策 schema.org"
}
}
,{
"@type": "ListItem",
"position": 5,
"item": {
"@id": "https://blackpigtail.com/web-parts/cheat-sheet/seo-schema/json-ld",
"name": "構造化データ JSON-LD"
}
}
,{
"@type": "ListItem",
"position": 6,
"item": {
"@type": "WebPage",
"@id": "https://blackpigtail.com/web-parts/cheat-sheet/seo-schema/json-ld/breadcrumb/",
"name": "パンくずリスト用の構造化データ(JSON-LD)の書き方"
}
}
]}
</script>

参照:schema.org - パンくずリスト(BreadcrumbList)ページ