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

accessMode

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

Описание:

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

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

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

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

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

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

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

Примеры

Пример 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
Комментарии
Новые материалы на сайте