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

accessModeSufficient

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

Описание:

Список отдельных или комбинированных accessMode, которые достаточны для понимания всего интеллектуального содержания ресурса. Значения должны быть выбраны из утвержденного словаря.

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

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

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

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

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

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

Примеры

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