サンプル一覧へ戻る

構造化データ // TOOLPOOL.SAMPLES

BreadcrumbList構造化データのサンプル

パンくずの構造化データだけを確認するためのページです。

確認用URL

https://toolpool.tools/ja/samples/schema/breadcrumb

このページは検証用サンプルのため検索インデックス対象外です。カテゴリ一覧から利用できます。

確認できること

階層構造と position の検出を確認できます。

出力内容

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "BreadcrumbList",
  "itemListElement": [
    {
      "@type": "ListItem",
      "position": 1,
      "name": "ホーム",
      "item": "https://toolpool.tools/ja"
    },
    {
      "@type": "ListItem",
      "position": 2,
      "name": "サンプル",
      "item": "https://toolpool.tools/ja/samples"
    },
    {
      "@type": "ListItem",
      "position": 3,
      "name": "BreadcrumbList構造化データのサンプル",
      "item": "https://toolpool.tools/ja/samples/schema/breadcrumb"
    }
  ]
}
</script>