Vocabulary Deprecated
More information...

ItemList

schema:Thing > schema:Intangible > schema:ItemList

A list of items of any sort—for example, Top 10 Movies About Weathermen, or Top 100 Party Songs. Not to be confused with HTML lists, which are often used only for formatting.
PropertyExpected TypeDescription
Properties from schema:ItemList
schema:itemListElement schema:Text  or
schema:Thing  or
schema:ListItem 
For itemListElement values, you can use simple strings (e.g. "Peter", "Paul", "Mary"), existing entities, or use ListItem.

Text values are best if the elements in the list are plain strings. Existing entities are best for a simple, unordered list of existing things in your data. ListItem is used with ordered lists when you want to provide additional context about the element in that list or when the same item might be in different places in different lists.

Note: The order of elements in your mark-up is not sufficient for indicating the order or elements. Use ListItem with a 'position' property in such cases.
schema:itemListOrder schema:ItemListOrderType  or
schema:Text 
Type of ordering (e.g. Ascending, Descending, Unordered).
schema:numberOfItems schema:Number The number of items in an ItemList. Note that some descriptions might not full describe all items in a list (e.g. multi-page pagination).
Properties from schema:Thing
schema:additionalType schema:URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally.
schema:alternateName schema:Text An alias for the item.
schema:description schema:Text A short description of the item.
schema:image schema:ImageObject  or
schema:URL 
An image of the item. This can be a URL or a fully described ImageObject.
schema:name schema:Text The name of the item.
schema:potentialAction schema:Action Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
schema:sameAs schema:URL URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website.
schema:url schema:URL URL of the item.


Instances of schema:ItemList may appear as values for the following properties
PropertyOn TypesDescription
schema:track schema:MusicPlaylist  or
schema:MusicGroup 
A music recording (track)—usually a single song. If an ItemList is given, the list should contain items of type MusicRecording. Supersedes schema:tracks.

More specific Types
  • schema:BreadcrumbList

    Prefixes used:

  • schema: http://schema.org/
  • Examples

    <h2>Top 10 laptops</h2>
    <p>1. HP Pavilion dv6-6013cl</p>
    <p>2. Dell XPS 15 (Sandy Bridge)</p>
    <p>3. Lenovo ThinkPad X220</p>
    ...
    
    <div itemscope itemtype="http://schema.org/ItemList">
      <h2 itemprop="name">Top 10 laptops</h2><br>
      <meta itemprop="itemListOrder" content="http://schema.org/ItemListOrderDescending" />
      <p>1. <span itemprop="itemListElement">HP Pavilion dv6-6013cl</span></p>
      <p>2. <span itemprop="itemListElement">Dell XPS 15 (Sandy Bridge)</span></p>
      <p>3. <span itemprop="itemListElement">Lenovo ThinkPad X220</span></p>
      ...
    </div>
    
    <div vocab="http://schema.org/" typeof="ItemList">
      <h2 property="name">Top 10 laptops</h2><br>
      <meta property="itemListOrder" content="http://schema.org/ItemListOrderDescending" />
      <p>1. <span property="itemListElement">HP Pavilion dv6-6013cl</span></p>
      <p>2. <span property="itemListElement">Dell XPS 15 (Sandy Bridge)</span></p>
      <p>3. <span property="itemListElement">Lenovo ThinkPad X220</span></p>
      ...
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "ItemList",
      "itemListElement": [
        "HP Pavilion dv6-6013cl",
        "Dell XPS 15 (Sandy Bridge)",
        "Lenovo ThinkPad X220"
      ],
      "itemListOrder": "http://schema.org/ItemListOrderDescending",
      "name": "Top 10 laptops"
    }
    </script>
    
    <div>
      <link  href="http://multivarki.ru?filters%5Bprice%5D%5BLTE%5D=39600" />
      <span>315</span>
      <div>
        <img src="http://img01.multivarki.ru.ru/c9/f1/a5fe6642-18d0-47ad-b038-6fca20f1c923.jpeg" />
        <a alt="Photo of product" href="http://multivarki.ru/brand_502/">
          <span>BRAND 502</span>
        </a>
        <div>
          <span>4399 р.</span>
        </div>...
        <div>
        ...
        </div>
      </div>
    </div>
    
    <div  itemtype="http://schema.org/ItemList">
      <link itemprop="url" href="http://multivarki.ru?filters%5Bprice%5D%5BLTE%5D=39600" />
      <span itemprop="numberOfItems">315</span>
      <div itemprop="itemListElement" itemscope="" itemtype="http://schema.org/Product">
        <img alt="Photo of product" itemprop="image"
         src="http://img01.multivarki.ru.ru/c9/f1/a5fe6642-18d0-47ad-b038-6fca20f1c923.jpeg" />
        <a itemprop="url" href="http://multivarki.ru/brand_502/">
          <span itemprop="name">BRAND 502</span>
        </a>
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
          <span itemprop="price">4399 р.</span>
        </div>...
        <div itemprop="itemListElement"  itemtype="http://schema.org/Product">
        ...
        </div>
      </div>
    </div>
    
    <div vocab="http://schema.org/" typeof="ItemList">
      <link property="url" href="http://multivarki.ru?filters%5Bprice%5D%5BLTE%5D=39600" />
      <span property="numberOfItems">315</span>
      <div property="itemListElement" typeof="Product">
        <img property="image" alt="Photo of product"
         src="http://img01.multivarki.ru.ru/c9/f1/a5fe6642-18d0-47ad-b038-6fca20f1c923.jpeg" />
        <a property="url" href="http://multivarki.ru/brand_502/">
          <span property="name">BRAND 502</span>
        </a>
        <div property="offers" typeof="http://schema.org/Offer">
          <span property="price">4399 р.</span>
        </div>...
        <div property="itemListElement"  typeof="Product">
        ...
        </div>
      </div>
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "ItemList",
      "url": "http://multivarki.ru?filters%5Bprice%5D%5BLTE%5D=39600",
      "numberOfItems": "315",
      "itemListElement": [{
          "@type": "Product",
          "image": "http://img01.multivarki.ru.ru/c9/f1/a5fe6642-18d0-47ad-b038-6fca20f1c923.jpeg",
          "url": "http://multivarki.ru/brand_502/",
          "name": "Brand 502"
        },{
          "@type": "Product",
          "name": "..."
        }
      ],
        "offers": {
          "@type": "Offer",
          "price": "4399 p."
        }
    }
    </script>
    
    Top 5 covers of Bob Dylan Songs
    by John Doe
    5. If Not for You -- George Harrison
    4. The Times They Are A-Changin' -- Tracy Chapman
    3. It Ain't Me, Babe -- Johnny Cash and June Carter Cash
    2. Don't Think Twice, It's Alright -- Waylon Jennings
    1. All Along the Watchtower -- Jimi Hendrix
    
    <div itemtype="http://schema.org/ItemList http://schema.org/CreativeWork">
      <h1 itemprop="name">Top 5 covers of Bob Dylan Songs</h1>
      <div itemprop="author" itemscope itemtype="http://schema.org/Person">
        <span itemprop="name" content="John Doe">by John Doe</span>
      </div>
      <div itemprop="about" itemscope itemtype="http://schema.org/MusicRecording">
        <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
          <meta itemprop="name" content="Bob Dylan" />
        </div>
      </div>
      <meta itemprop="itemListOrder" content="http://schema.org/ItemListOrderAscending" />
      <meta itemprop="numberOfItems" content="5" />
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">5</span>
        <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
          <span itemprop="name">If Not For You</span>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">George Harrison</span>
          </div>
        </div>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">4</span>
        <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
          <span itemprop="name">The Times They Are A-Changin'</span>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">Tracy Chapman</span>
          </div>
        </div>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">3</span>
        <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
          <span itemprop="name">It Ain't Me Babe</span>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">Johnny Cash</span>
          </div>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">June Carter Cash</span>
          </div>
        </div>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">2</span>
        <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
          <span itemprop="name">Don't Think Twice It's Alright</span>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">Waylon Jennings</span>
          </div>
        </div>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">1</span>
        <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
          <span itemprop="name">All Along the Watchtower</span>
          <div itemprop="byArtist" itemscope itemtype="http://schema.org/Person">
            <span itemprop="name">Jimi Hendrix</span>
          </div>
        </div>
      </div>
    </div>
    
    <div vocab="http://schema.org/" typeof="ItemList CreativeWOrk">
      <h1 property="name">Top 5 covers of Bob Dylan Songs</h1>
      <div property="author" typeof="Person">
        <span property="name" content="John Doe">by John Doe</span>
      </div>
      <div property="about" typeof="MusicRecording">
        <div property="byArtist" typeof="Person">
          <meta property="name" content="Bob Dylan" />
        </div>
      </div>
      <meta property="itemListOrder" content="http://schema.org/ItemListOrderAscending" />
      <meta property="numberOfItems" content="5" />
      <div property="itemListElement" typeof="ListItem">
        <span property="position">5</span>
        <div property="item" typeof="MusicRecording">
          <span property="name">If Not For You</span>
          <div property="byArtist" typeof="Person">
            <span property="name">George Harrison</span>
          </div>
        </div>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">4</span>
        <div property="item" typeof="MusicRecording">
          <span property="name">The Times They Are A-Changin'</span>
          <div property="byArtist" typeof="Person">
            <span property="name">Tracy Chapman</span>
          </div>
        </div>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">3</span>
        <div property="item" typeof="MusicRecording">
          <span property="name">It Ain't Me Babe</span>
          <div property="byArtist" typeof="Person">
            <span property="name">Johnny Cash</span>
          </div>
          <div property="byArtist" typeof="Person">
            <span property="name">June Carter Cash</span>
          </div>
        </div>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">2</span>
        <div property="item" typeof="MusicRecording">
          <span property="name">Don't Think Twice It's Alright</span>
          <div property="byArtist" typeof="Person">
            <span property="name">Waylon Jennings</span>
          </div>
        </div>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">1</span>
        <div property="item" typeof="MusicRecording">
          <span property="name">All Along the Watchtower</span>
          <div property="byArtist" typeof="Person">
            <span property="name">Jimi Hendrix</span>
          </div>
        </div>
      </div>
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": ["ItemList", "CreativeWork"],
      "name": "Top 5 covers of Bob Dylan Songs",
      "author": "John Doe",
      "about: {
        "@type": "MusicRecording",
        "byArtist": {
          "@type": "Person",
          "name": "Bob Dylan"
        }
      },
      "itemListOrder": "http://schema.org/ItemListOrderAscending",
      "numberOfItems: 5,
      itemListElement: [
        {
          "@type": "ListItem",
          "position": 5,
          "item": {
            "@type": "MusicRecording",
            "name": "If Not For You",
            "byArtist": {
              "@type": "Person",
              "name": "George Harrison"
            }
          }
        },
        {
          "@type": "ListItem",
          "position": 4,
          "item": {
            "@type": "MusicRecording",
            "name": "The Times They Are A-Changin'",
            "byArtist": {
              "@type": "Person",
              "name": "Tracy Chapman"
            }
          }
        },
        {
          "@type": "ListItem",
          "position": 3,
          "item": {
            "@type": "MusicRecording",
            "name": "It Ain't Me Babe",
            "byArtist": [
              {
                "@type": "Person",
                "name": "Johnny Cash"
              },
              {
                "@type": "Person",
                "name": "June Carter Cash"
              }
            ]
          }
        },
        {
          "@type": "ListItem",
          "position": 2,
          "item": {
            "@type": "MusicRecording",
            "name": "Don't Think Twice It's Alright",
            "byArtist": {
              "@type": "Person",
              "name": "Waylon Jennings"
            }
          }
        },
        {
          "@type": "ListItem",
          "position": 1,
          "item": {
            "@type": "MusicRecording",
            "name": "All Along the Watchtower",
            "byArtist": {
              "@type": "Person",
              "name": "Jimi Hendrix"
            }
          }
        }
      ]
    }
    </script>
    
    The artists with the most cumulative weeks at number one according to Billboard 200
    1. Beatles: 132 weeks
    2. Elvis Presley: 67 weeks
    3. Michael Jackson: 51 weeks
    4. Garth Brooks: 51 weeks
    
    <div itemtype="http://schema.org/ItemList">
      <link itemprop="url" href="http://en.wikipedia.org/wiki/Billboard_200" />
      <h1><span itemprop="name">Top music artists</span></h1>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">1</span>
        <span itemprop="item" itemscope itemtype="http://schema.org/MusicGroup">
          <span itemprop="name">Beatles</span>
        </span>
        <span>132 weeks</span>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">2</span>
        <span itemprop="item" itemscope itemtype="http://schema.org/MusicGroup">
          <span itemprop="name">Elvis Presley</span>
        </span>
        <span>67 weeks</span>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">3</span>
        <span itemprop="item" itemscope itemtype="http://schema.org/MusicGroup">
          <span itemprop="name">Michael Jackson</span>
        </span>
        <span>51 weeks</span>
      </div>
      <div itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem">
        <span itemprop="position">3</span>
        <span itemprop="item" itemscope itemtype="http://schema.org/MusicGroup">
          <span itemprop="name">Garth Brooks</span>
        </span>
        <span>51 weeks</span>
      </div>
    </div>
    
    <div vocab="http://schema.org/" typeof="ItemList">
      <link property="url" href="http://en.wikipedia.org/wiki/Billboard_200" />
      <span property="name">Top music artists</span>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">1</span>
        <span property="item" typeof="MusicGroup">
          <span property="name">Beatles</span>
        </span>
      </div>
      <div property="itemListElement" typeof="http://schema.org/ListItem">
        <span property="position">2</span>
        <span property="item" typeof="MusicGroup">
          <span property="name">Elvis Presley</span>
        </span>
        <span>67 weeks</span>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">3</span>
        <span property="item" typeof="MusicGroup">
          <span property="name">Michael Jackson</span>
        </span>
        <span>51 weeks</span>
      </div>
      <div property="itemListElement" typeof="ListItem">
        <span property="position">3</span>
        <span property="item" typeof="MusicGroup">
          <span itemprop="name">Garth Brooks</span>
        </span>
        <span>51 weeks</span>
      </div>
    </div>
    
    <script type="application/ld+json">
    {
      "@context": "http://schema.org",
      "@type": "ItemList",
      "@url": "http://en.wikipedia.org/wiki/Billboard_200",
      "name": "Top music artists",
      "description": "The artists with the most cumulative weeks at number one according to Billboard 200",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "item": {
            "@type": "MusicGroup",
            "name": "Beatles"
          }
        },
        {
          "@type": "ListItem",
          "position": 2,
          "item": {
            "@type": "MusicGroup",
            "name": "Elvis Presley"
          }
        },
        {
          "@type": "ListItem",
          "position": 3,
          "item": {
            "@type": "MusicGroup",
            "name": "Michael Jackson"
          }
        },
        {
          "@type": "ListItem",
          "position": 3,
          "item": {
            "@type": "MusicGroup",
            "name": "Garth Brooks"
          }
        }
      ]
    }
    </script>
    
    King of Limbs - Radiohead
    Tracks:
    1. Bloom
    2. Morning Mr. Magpie
    3. Little by Little
    
    <div itemscope itemtype="http://schema.org/MusicAlbum">
      <span itemprop="name">King of Limbs</span>
      <span itemprop="byArtist">Radiohead</span>
      <div itemprop="track" itemscope itemtype="http://schema.org/ItemList">
        <span itemprop="numberOfItems" content=8 />
        <div itemprop="itemListElement itemscope itemtype="http://schema.org/ListItem">
          <span itemprop="position">1</span>
          <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
            <span itemprop="name">Bloom</span>
          </div>
        </div>
        <div itemprop="itemListElement itemscope itemtype="http://schema.org/ListItem">
          <span itemprop="position">2</span>
          <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
            <span itemprop="name">Morning Mr. Magpie</span>
          </div>
        </div>
        <div itemprop="itemListElement itemscope itemtype="http://schema.org/ListItem">
          <span itemprop="position">3</span>
          <div itemprop="item" itemscope itemtype="http://schema.org/MusicRecording">
            <span itemprop="name">Little by Little</span>
          </div>
        </div>
      </div>
    </div>
    
    <div vocab="http://schema.org/" typeof="MusicAlbum">
      <span property="name">King of Limbs</span>
      <span property="byArtist">Radiohead</span>
      <div property="track" typeof="ItemList">
        <span property="numberOfItems" content=8 />
        <div property="itemListElement" typeof="ListItem">
          <span property="position">1</span>
          <div property="item" typeof="http://schema.org/MusicRecording">
            <span property="name">Bloom</span>
          </div>
        </div>
        <div property="itemListElement typeof="ListItem">
          <span property="position">2</span>
          <div property="item" typeof="MusicRecording">
            <span property="name">Morning Mr. Magpie</span>
          </div>
        </div>
        <div property="itemListElement typeof="ListItem">
          <span property="position">3</span>
          <div property="item" ypeof="MusicRecording">
            <span property="name">Little by Little</span>
          </div>
        </div>
      </div>
    </div>
    
    <script type="application/ld+json>
    {
      "@context": "http://schema.org",
      "@type": "MusicAlbum",
      "name": "King of Limbs",
      "byArtist": {
        "@type": "MusicGroup",
        "name": "Radiohead",
      },
      track: {
        "@type": "ItemList",
        "numberOfItems": 8,
        "itemListElement": [
          {
            "@type": "ListItem",
            "position": 1,
            "item": {
              "@type": "MusicRecording",
              "name": "Bloom"
            }
          },
          {
            "@type": "ListItem",
            "position": 2,
            "item": {
              "@type": "MusicRecording",
              "name": "Morning Mr. Magpie"
            }
          },
          {
            "@type": "ListItem",
            "position": 3,
            "item": {
              "@type": "MusicRecording",
              "name": "Little by Little"
            }
          }
        ]
      }
    }
    </script>
    
    <ol>
      <li>
        <a href="https://example.com/dresses">Dresses</a>
      </li>
    › <li>
        <a href="https://example.com/dresses/real">Real Dresses</a>
      </li>
    </ol>
    
    <ol itemscope itemtype="http://schema.org/BreadcrumbList">
      <li itemprop="itemListElement" itemscope
          itemtype="http://schema.org/ListItem">
        <a itemprop="item" href="https://example.com/dresses">
        <span itemprop="name">Dresses</span></a>
        <meta itemprop="position" content="1" />
      </li>
    › <li itemprop="itemListElement" itemscope
          itemtype="http://schema.org/ListItem">
        <a itemprop="item" href="https://example.com/dresses/real">
        <span itemprop="name">Real Dresses</span></a>
        <meta itemprop="position" content="2" />
      </li>
    </ol>
    
    <ol vocab="http://schema.org/" typeof="BreadcrumbList">
      <li property="itemListElement" typeof="ListItem">
        <a property="item" typeof="WebPage" href="https://example.com/dresses">
         <span property="name">Dresses</span></a>
         <meta property="position" content="1">
      </li>
    › <li property="itemListElement" typeof="ListItem">
        <a property="item" typeof="WebPage" href="https://example.com/dresses/real">
        <span property="name">Real Dresses</span></a>
        <meta property="position" content="2">
      </li>
    </ol>
    
    <script type="application/ld+json>
    {
     "@context": "http://schema.org",
     "@type": "BreadcrumbList",
     "itemListElement":
     [
      {
       "@type": "ListItem",
       "position": 1,
       "item":
       {
        "@id": "https://example.com/dresses",
        "name": "Dresses"
        }
      },
      {
       "@type": "ListItem",
      "position": 2,
      "item":
       {
         "@id": "https://example.com/dresses/real",
         "name": "Real Dresses"
       }
      }
     ]
    }
    </script>
    

    BiblioGraph.net Version 1.1
    Schema.org Version 1.93
    Code Version 1.1