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

accessibilitySummary

Свойство schema.org ?

Описание:

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

Свойство accessibilitySummary в Schema.org служит для предоставления краткого и понятного описания доступности объекта, например, веб-страницы, продукта или услуги. Оно предназначено для того, чтобы сообщить пользователям о специфических особенностях доступности, которые могут быть важны для людей с ограниченными возможностями.

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

Основная цель этого свойства — улучшить пользовательский опыт для людей с ограничениями, предоставляя им ясную информацию о том, как они могут взаимодействовать с контентом. Это может включать указания на наличие кратких и длинных описаний, а также информацию о том, какие дополнительные ресурсы могут быть необходимы для полного восприятия информации.

Таким образом, accessibilitySummary является важным инструментом для повышения уровня доступности и инклюзивности, способствуя тому, чтобы информация была доступна для всех пользователей, независимо от их физических возможностей.

Ожидается, что значения будут одного из этих типов

Используется в этих типах

Примеры

Пример 1

Пример заметки или HTML разметки.


A graphic novel book example.

See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org

Пример, закодированный в формате JSON-LD в теге <script> HTML.


<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "Book",
  "name": "Some graphic novel",
  "accessMode": ["textual", "visual"],
  "accessModeSufficient": [
    {
      "@type": "ItemList",
      "itemListElement": ["textual", "visual"],
      "description": "Text and images"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["textual"],
      "description": "Text with textual alternatives and descriptions for images"
    }
  ],
  "accessibilitySummary": "Visual elements are not described."
}
</script>

Структурированное представление примера JSON-LD.

@context
https://schema.org/
@type
Book
name
Some graphic novel
accessMode
0
textual
1
visual
accessModeSufficient
0
@type
ItemList
itemListElement
0
textual
1
visual
description
Text and images
1
@type
ItemList
itemListElement
0
textual
description
Text with textual alternatives and descriptions for images
accessibilitySummary
Visual elements are not described.

Пример 2

Пример заметки или HTML разметки.


A second example.

See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org

Пример, закодированный в формате JSON-LD в теге <script> HTML.


{
  "@context": "https://schema.org/",
  "@type": "Movie",
  "accessMode": ["auditory", "visual"],
  "accessibilityFeature": ["audioDescription", "captions"],
  "accessModeSufficient": [
    {
      "@type": "ItemList",
      "itemListElement": ["textual", "visual"],
      "description": "Closed captioning"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["auditory"],
      "description": "Audio description"
    }
  ],
  "accessibilitySummary": "Captions provided in English; short scenes in French have English subtitles instead."
}

Структурированное представление примера JSON-LD.

@context
https://schema.org/
@type
Movie
accessMode
0
auditory
1
visual
accessibilityFeature
0
audioDescription
1
captions
accessModeSufficient
0
@type
ItemList
itemListElement
0
textual
1
visual
description
Closed captioning
1
@type
ItemList
itemListElement
0
auditory
description
Audio description
accessibilitySummary
Captions provided in English; short scenes in French have English subtitles instead.

Пример 3

Пример заметки или HTML разметки.


A third example.

See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org

Пример, закодированный в формате JSON-LD в теге <script> HTML.


{
  "@context": "https://schema.org/",
  "@type": "Book",
  "name": "Alice in Wonderland",
  "accessMode": ["auditory", "textual", "visual"],
  "accessibilityFeature": ["alternativeText", "synchronizedAudioText"],
  "accessModeSufficient": [
    {
      "@type": "ItemList",
      "itemListElement": ["textual"],
      "description": "See the text"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["textual", "visual"],
      "description": "See the text and images"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["auditory"],
      "description": "Hear the text and image descriptions"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["auditory", "visual"],
      "description": "Hear the text and see the images"
    },
    {
      "@type": "ItemList",
      "itemListElement": ["auditory", "visual", "textual"],
      "description": "Hear the text and see the text and images"
    }
  ],
  "accessibilitySummary": "Short descriptions are provided; long descriptions of the images are not needed for most readers."
}

Структурированное представление примера JSON-LD.

@context
https://schema.org/
@type
Book
name
Alice in Wonderland
accessMode
0
auditory
1
textual
2
visual
accessibilityFeature
0
alternativeText
1
synchronizedAudioText
accessModeSufficient
0
@type
ItemList
itemListElement
0
textual
description
See the text
1
@type
ItemList
itemListElement
0
textual
1
visual
description
See the text and images
2
@type
ItemList
itemListElement
0
auditory
description
Hear the text and image descriptions
3
@type
ItemList
itemListElement
0
auditory
1
visual
description
Hear the text and see the images
4
@type
ItemList
itemListElement
0
auditory
1
visual
2
textual
description
Hear the text and see the text and images
accessibilitySummary
Short descriptions are provided; long descriptions of the images are not needed for most readers.
Автор: Семён Авдосов [schema.su]
Дата публикации: 16.11.2024
Дата обновления: 20.11.2024
Комментарии
Новые материалы на сайте