accessMode
Canonical URL: http://schema.org/accessModeThe human sensory perceptual system or cognitive faculty through which a person may process or perceive information. Expected values include: auditory, tactile, textual, visual, colorDependent, chartOnVisual, chemOnVisual, diagramOnVisual, mathOnVisual, musicOnVisual, textOnVisual.
- Leave public feedback on this term 💬
- Check for open issues.
- 'accessMode' is mentioned in layer: core
| Values expected to be one of these types |
|---|
Text
|
| Used on these types |
|---|
CreativeWork
|
Source
https://github.com/schemaorg/schemaorg/issues/1100
Examples
A graphic novel book example. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
TODO
TODO
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Book",
"name": "Some graphic novel",
"accessMode": ["textual", "visual"],
"accessModeSufficient": ["textual", "visual"],
"accessibilitySummary": "Visual elements are not described."
}
</script>
A second example. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
TODO
TODO
{
"@context": "http://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."
}
A third example. See also https://github.com/daisy/epub-revision-a11y/wiki/ePub-3.1-Accessibility--Proposal-To-Schema.org
TODO
TODO
{
"@context": "http://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."
}
Schema Version 3.2