core + auto ():

item

Canonical URL: http://schema.org/item

Thing > Property > item

An entity represented by an entry in a list or data feed (e.g. an 'artist' in a list of 'artists')’.

Usage: Between 1000 and 10,000 domains
Values expected to be one of these types
Thing
Used on these types
DataFeedItem
ListItem


Examples

Example 1
  1. <ol>
  2.   <li>
  3.     <a href="https://example.com/dresses">Dresses</a>
  4.   </li>
  5.   <li>
  6.     <a href="https://example.com/dresses/real">Real Dresses</a>
  7.   </li>
  8. </ol>
  1. <ol itemscope itemtype="http://schema.org/BreadcrumbList">
  2.   <li itemprop="itemListElement" itemscope
  3.       itemtype="http://schema.org/ListItem">
  4.     <a itemprop="item" href="https://example.com/dresses">
  5.     <span itemprop="name">Dresses</span></a>
  6.     <meta itemprop="position" content="1" />
  7.   </li>
  8.   <li itemprop="itemListElement" itemscope
  9.       itemtype="http://schema.org/ListItem">
  10.     <a itemprop="item" href="https://example.com/dresses/real">
  11.     <span itemprop="name">Real Dresses</span></a>
  12.     <meta itemprop="position" content="2" />
  13.   </li>
  14. </ol>
  1. <ol vocab="http://schema.org/" typeof="BreadcrumbList">
  2.   <li property="itemListElement" typeof="ListItem">
  3.     <a property="item" typeof="WebPage" href="https://example.com/dresses">
  4.      <span property="name">Dresses</span></a>
  5.      <meta property="position" content="1">
  6.   </li>
  7.   <li property="itemListElement" typeof="ListItem">
  8.     <a property="item" typeof="WebPage" href="https://example.com/dresses/real">
  9.     <span property="name">Real Dresses</span></a>
  10.     <meta property="position" content="2">
  11.   </li>
  12. </ol>
  1. <script type="application/ld+json">
  2. {
  3.  "@context": "http://schema.org",
  4.  "@type": "BreadcrumbList",
  5.  "itemListElement":
  6.  [
  7.   {
  8.    "@type": "ListItem",
  9.    "position": 1,
  10.    "item":
  11.    {
  12.     "@id": "https://example.com/dresses",
  13.     "name": "Dresses"
  14.     }
  15.   },
  16.   {
  17.    "@type": "ListItem",
  18.   "position": 2,
  19.   "item":
  20.    {
  21.      "@id": "https://example.com/dresses/real",
  22.      "name": "Real Dresses"
  23.    }
  24.   }
  25.  ]
  26. }
  27. </script>
Example 2
  1. <ol>
  2.   <li>
  3.     <a href="https://example.com/dresses">Dresses</a>
  4.   </li>
  5.   <li>
  6.     <a href="https://example.com/dresses/real">Real Dresses</a>
  7.   </li>
  8. </ol>
  1. <ol itemscope itemtype="http://schema.org/BreadcrumbList">
  2.   <li itemprop="itemListElement" itemscope
  3.       itemtype="http://schema.org/ListItem">
  4.     <a itemprop="item" href="https://example.com/dresses">
  5.     <span itemprop="name">Dresses</span></a>
  6.     <meta itemprop="position" content="1" />
  7.   </li>
  8.   <li itemprop="itemListElement" itemscope
  9.       itemtype="http://schema.org/ListItem">
  10.     <a itemprop="item" href="https://example.com/dresses/real">
  11.     <span itemprop="name">Real Dresses</span></a>
  12.     <meta itemprop="position" content="2" />
  13.   </li>
  14. </ol>
  1. <ol vocab="http://schema.org/" typeof="BreadcrumbList">
  2.   <li property="itemListElement" typeof="ListItem">
  3.     <a property="item" typeof="WebPage" href="https://example.com/dresses">
  4.      <span property="name">Dresses</span></a>
  5.      <meta property="position" content="1">
  6.   </li>
  7.   <li property="itemListElement" typeof="ListItem">
  8.     <a property="item" typeof="WebPage" href="https://example.com/dresses/real">
  9.     <span property="name">Real Dresses</span></a>
  10.     <meta property="position" content="2">
  11.   </li>
  12. </ol>
  1. <script type="application/ld+json">
  2. {
  3.  "@context": "http://schema.org",
  4.  "@type": "BreadcrumbList",
  5.  "itemListElement":
  6.  [
  7.   {
  8.    "@type": "ListItem",
  9.    "position": 1,
  10.    "item":
  11.    {
  12.     "@id": "https://example.com/dresses",
  13.     "name": "Dresses"
  14.     }
  15.   },
  16.   {
  17.    "@type": "ListItem",
  18.   "position": 2,
  19.   "item":
  20.    {
  21.      "@id": "https://example.com/dresses/real",
  22.      "name": "Real Dresses"
  23.    }
  24.   }
  25.  ]
  26. }
  27. </script>

Schema Version 3.2