Note: You are viewing the development version of Schema.org. See how we work for more details.

accessModeSufficient

A Schema.org Property
A list of single or combined accessModes that are sufficient to understand all the intellectual content of a resource. Values should be drawn from the approved vocabulary.

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/1100


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. A graphic novel book example.

  2. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org/",
  4.   "@type": "Book",
  5.   "name": "Some graphic novel",
  6.   "accessMode": ["textual", "visual"],
  7.   "accessModeSufficient": [
  8.     {
  9.       "@type": "ItemList",
  10.       "itemListElement": ["textual", "visual"],
  11.       "description": "Text and images"
  12.     },
  13.     {
  14.       "@type": "ItemList",
  15.       "itemListElement": ["textual"],
  16.       "description": "Text with textual alternatives and descriptions for images"
  17.     }
  18.   ],
  19.   "accessibilitySummary": "Visual elements are not described."
  20. }
  21. </script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
  1. A second example.

  2. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
Example encoded as JSON-LD in a HTML script tag.
  1. {
  2.   "@context": "https://schema.org/",
  3.   "@type": "Movie",
  4.   "accessMode": ["auditory", "visual"],
  5.   "accessibilityFeature": ["audioDescription", "captions"],
  6.   "accessModeSufficient": [
  7.     {
  8.       "@type": "ItemList",
  9.       "itemListElement": ["textual", "visual"],
  10.       "description": "Closed captioning"
  11.     },
  12.     {
  13.       "@type": "ItemList",
  14.       "itemListElement": ["auditory"],
  15.       "description": "Audio description"
  16.     }
  17.   ],
  18.   "accessibilitySummary": "Captions provided in English; short scenes in French have English subtitles instead."
  19. }
Structured representation of the JSON-LD example.
Example 3
Copied
Example notes or example HTML without markup.
  1. A third example.

  2. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
Example encoded as JSON-LD in a HTML script tag.
  1. {
  2.   "@context": "https://schema.org/",
  3.   "@type": "Book",
  4.   "name": "Alice in Wonderland",
  5.   "accessMode": ["auditory", "textual", "visual"],
  6.   "accessibilityFeature": ["alternativeText", "synchronizedAudioText"],
  7.   "accessModeSufficient": [
  8.     {
  9.       "@type": "ItemList",
  10.       "itemListElement": ["textual"],
  11.       "description": "See the text"
  12.     },
  13.     {
  14.       "@type": "ItemList",
  15.       "itemListElement": ["textual", "visual"],
  16.       "description": "See the text and images"
  17.     },
  18.     {
  19.       "@type": "ItemList",
  20.       "itemListElement": ["auditory"],
  21.       "description": "Hear the text and image descriptions"
  22.     },
  23.     {
  24.       "@type": "ItemList",
  25.       "itemListElement": ["auditory", "visual"],
  26.       "description": "Hear the text and see the images"
  27.     },
  28.     {
  29.       "@type": "ItemList",
  30.       "itemListElement": ["auditory", "visual", "textual"],
  31.       "description": "Hear the text and see the text and images"
  32.     }
  33.   ],
  34.   "accessibilitySummary": "Short descriptions are provided; long descriptions of the images are not needed for most readers."
  35. }
Structured representation of the JSON-LD example.