⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех кто плохо воспринимает технический английский. Оригинальную и актуальную информацию на английском языке вы можете найти тут: schema.org/ListItem.

ListItem - Микроразметка Schema.org

Изучите микроразметку ListItem на schema.su.

ListItem - Тип Schema.org
Описание: ListItem - Элемент списка, например, шаг в чек-листе или описании инструкции.

Микроразметка ListItem представляет собой элемент списка, например, этап в чек-листе или инструкции. Эта метка используется для определения конкретного элемента на веб-странице, который представляет собой пункт списка.

Для правильного применения микроразметки ListItem, убедитесь в том, что каждый пункт списка на вашем сайте описан соответствующим образом, чтобы поисковые системы могли лучше понимать содержимое страницы.

СвойствоОжидаемый типОписание
Properties from ListItem
item Thing Сущность, представленная элементом в списке или данных (например, 'художник' в списке 'художников').
nextItem ListItem Свойство nextItem
position Integer или Text Позиция элемента в серии или последовательности элементов.
previousItem ListItem Ссылка на ListItem, предшествующий текущему.
Properties from Thing
additionalType Text или 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. Typically the value is a URI-identified RDF class, and in this case corresponds to the use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org style guide.
alternateName Text Псевдоним для элемента.
description Text или TextObject Описание элемента.
disambiguatingDescription Text Подсвойство описания. Краткое описание элемента, используемое для различения от других, схожих элементов. Для того чтобы описание было полезным для разрешения неоднозначности, может потребоваться информация из других свойств (в частности, name).
identifier PropertyValue или Text или URL The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details.
image ImageObject или URL An image of the item. This can be a URL or a fully described ImageObject.
mainEntityOfPage CreativeWork или URL Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details. Обратное свойство: mainEntity
name Text Название элемента.
potentialAction Action Указывает на потенциальное действие, описывающее идеализированное действие, в котором этот объект мог бы выполнять роль 'объекта'.
sameAs URL URL страницы для ссылки, однозначно указывающей на идентичность объекта. Например, URL страницы объекта на Википедии, записи в Wikidata или официального веб-сайта.
subjectOf CreativeWork или Event Свойство Schema.org - subjectOf: A CreativeWork or Event about this Thing. Обратное свойство: about
url URL URL объекта.

Instances of ListItem may appear as a value for the following properties
СвойствоOn TypesОписание
itemListElement ItemList
Для значений itemListElement вы можете использовать простые строки (например, "Петр", "Павел", "Мария"), существующие сущности или использовать ListItem.

Текстовые значения лучше всего, если элементы в списке являются простыми строками. Существующие сущности лучше всего подходят для простого неупорядоченного списка существующих ваших данных. ListItem используется с упорядоченными списками, когда вы хотите предоставить дополнительный контекст об элементе в этом списке или когда один и тот же элемент может находиться в разных местах разных списков.

Примечание: Порядок элементов в вашей разметке недостаточен для указания порядка элементов. Используйте ListItem с 'position' свойством в таких случаях.
negativeNotes Product или Review Provides negative considerations regarding something, most typically in pro/con lists for reviews (alongside positiveNotes). For symmetry In the case of a Review, the property describes the itemReviewed from the perspective of the review; in the case of a Product, the product itself is being described. Since product descriptions tend to emphasise positive claims, it may be relatively unusual to find negativeNotes used in this way. Nevertheless for the sake of symmetry, negativeNotes can be used on Product.The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most negative is at the beginning of the list).
nextItem ListItem Свойство nextItem
positiveNotes Product или Review Provides positive considerations regarding something, for example product highlights or (alongside negativeNotes) pro/con lists for reviews.In the case of a Review, the property describes the itemReviewed from the perspective of the review; in the case of a Product, the product itself is being described.The property values can be expressed either as unstructured text (repeated as necessary), or if ordered, as a list (in which case the most positive is at the beginning of the list).
previousItem ListItem Ссылка на ListItem, предшествующий текущему.

More specific Types

Examples

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

Обсуждение "ListItem"