Note: You are viewing the development version of Schema.org. See how we work for more details.

item

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

Values expected to be one of these types

Used on these types

Examples

Example 1
Copied
Example notes or example HTML without markup.
  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>
Example encoded as Microdata embedded in HTML.
  1. <ol itemscope itemtype="https://schema.org/BreadcrumbList">
  2.   <li itemprop="itemListElement" itemscope
  3.       itemtype="https://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="https://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>
Example encoded as RDFa embedded in HTML.
  1. <ol vocab="https://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>
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.  "@context": "https://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>
Structured representation of the JSON-LD example.