Skip to content

Commit 8dcf661

Browse files
committed
update accessibility, add accessibility registry, update links
1 parent 3710115 commit 8dcf661

File tree

4 files changed

+119
-31
lines changed

4 files changed

+119
-31
lines changed

source/_includes/links.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,7 @@
279279
[navPlace]: {{ site.api_url | absolute_url }}/extension/navplace/
280280
[georeference]: {{ site.api_url | absolute_url }}/extension/georef/
281281
[registry]: {{ site.api_url | absolute_url }}/registry/ "IIIF Extension Registry"
282+
[registry-accessibility]: {{ site.api_url | absolute_url }}/registry/accessibility/
282283
[registry-activity-streams]: https://registry.iiif.io/ "IIIF Registry of Activity Streams"
283284
[registry-motivations]: {{ site.api_url | absolute_url }}/registry/motivations/
284285
[registry-behaviors]: {{ site.api_url | absolute_url }}/registry/behaviors/
@@ -304,5 +305,6 @@
304305
[recipe-process]: {{ site.cookbook_url | absolute_url }}/recipe/ "Cookbook process"
305306
[recipe-mvm-image]: {{ site.cookbook_url | absolute_url }}/recipe/0001-mvm-image/ "Simplest Manifest - Image"
306307
[recipe-segment-image-part]: {{ site.api_url | absolute_url }}/cookbook/segment-image-part/ "Annotating part of an image to a canvas"
308+
[schema-accessibility]: https://www.w3.org/community/reports/a11y-discov-vocab/CG-FINAL-vocabulary-20241209/#accessibilityFeature-vocabulary "Accessibility Properties for Discoverability Vocabulary"
307309
[slack]: http://bit.ly/iiif-slack
308310
[web-arch]: http://www.w3.org/TR/webarch/ "Architecture of the World Wide Web"

source/presentation/4.0/index.md

Lines changed: 22 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,7 @@ This example is a Manifest with two Timelines, each of which represent a tempora
998998

999999
>
10001000
**Key Points**
1001-
* t vs. instant / verbose vs. append to URI???
1001+
* In the external annotation for the song lyrics, we append `#t=3.5,6.8` to the target URI to define the temporal extent in the target timeline that corresponds to the song lyric.
10021002
{: .note}
10031003

10041004
!!! warning TODO: The above should be a green class rgb(244,252,239) to distinguish from properties
@@ -1102,11 +1102,11 @@ This example is a Manifest with one Canvas that represents the temporal extent o
11021102
"id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles/anno",
11031103
"type": "Annotation",
11041104
"motivation": "supplementing",
1105+
"provides": [ "subtitles" ],
11051106
"body": {
11061107
"id": "https://example.org/text/subtitles.vtt",
11071108
"type": "Text",
11081109
"format": "text/vtt",
1109-
"provides": [ "subtitles" ],
11101110
"label": {
11111111
"en": [
11121112
"Subtitles in WebVTT format"
@@ -2640,46 +2640,37 @@ Responses _SHOULD_ be compressed by the server as there are significant performa
26402640

26412641
# Accessibility
26422642

2643-
Some IIIF resources have associated resources, such as closed-caption files for video, audio descriptions for images, or tactile graphics for visual materials, that improve access to the content for a wider range of users. These linked resources play a specific accessibility-related role relative to the resource they describe or supplement. [add fwd ref above in subtitles use case]
2643+
Some IIIF resources have associated resources, such as closed-caption files for video, audio descriptions for images, or tactile graphics for visual materials, that improve access to the content for a wider range of users. These linked resources play a specific accessibility-related role relative to the resource they describe or supplement. See [A/V Use Case 5: Movie with subtitles](link to section) above.
26442644

26452645
IIIF uses the `provides` property on supplementing annotations to define the specific accessibility functionality that a linked resource enables for its target, describing why and how a client might use it rather than what the resource is by type or format. For example, a text file linked from a video might provide closedCaptions, or an audio file associated with a Canvas might provide an audioDescription.
26462646

2647-
The value of provides _MUST_ be an array of strings. Each string _MUST_ be taken from the IIIF Provides registry (or the table of defined values in the model doc?).
2647+
The value of provides _MUST_ be an array of strings. Each string _MUST_ be taken from the [IIIF Registry of Accessibility Values][schema-accessibility].
26482648

26492649
Annotations MAY include the provides property only when the annotation has the supplementing motivation.
26502650
Clients SHOULD ignore the provides property on resources with any other motivation.
26512651

26522652
```json
2653-
"annotations": [
2654-
{
2655-
"id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles",
2656-
"type": "AnnotationPage",
2657-
"items": [
2658-
{
2659-
"id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles/anno",
2660-
"type": "Annotation",
2661-
"motivation": "supplementing",
2662-
"body": {
2663-
"id": "https://example.org/text/subtitles.vtt",
2664-
"type": "Text",
2665-
"format": "text/vtt",
2666-
"provides": [ "subtitles" ],
2667-
"label": {
2668-
"en": [
2669-
"Subtitles in WebVTT format"
2670-
]
2671-
},
2672-
"language": "en"
2673-
},
2674-
"target": "https://example.org/iiif/presentation/examples/manifest-with-movie/canvas"
2675-
}
2676-
]
2677-
}
2678-
]
2653+
"annotations": [
2654+
{
2655+
"id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles",
2656+
"type": "AnnotationPage",
2657+
"items": [
2658+
{
2659+
"id": "https://example.org/iiif/presentation/examples/manifest-with-movie/subtitles/anno",
2660+
"type": "Annotation",
2661+
"motivation": "supplementing",
2662+
"provides": [ "alternativeText" ],
2663+
"body": {...},
2664+
"target": "https://example.org/iiif/presentation/examples/manifest-with-movie/canvas"
2665+
}
2666+
]
2667+
}
2668+
]
26792669
```
26802670

26812671
**Key Points**
2682-
*
2672+
* The `provides` property is placed on the annotation and not on the target of the annotation.
2673+
* The property is primarly used to define accessibility features, but can be used to define other types of functionality, such as `transcription`.
26832674
{: .note}
26842675

26852676
!!! warning TODO: The above should be a green class rgb(244,252,239) to distinguish from properties
Lines changed: 94 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
---
2+
title: Registry of Accessibility Values
3+
layout: spec
4+
tags: [annex, service, services, specifications]
5+
cssversion: 2
6+
editors:
7+
- name: Michael Appleby
8+
ORCID: https://orcid.org/0000-0002-1266-298X
9+
institution: Yale University
10+
- name: Dawn Childress
11+
ORCID: https://orcid.org/0000-0003-2602-2788
12+
institution: UCLA
13+
- name: Tom Crane
14+
ORCID: https://orcid.org/0000-0003-1881-243X
15+
institution: Digirati
16+
- name: Jeff Mixter
17+
ORCID: https://orcid.org/0000-0002-8411-2952
18+
institution: OCLC
19+
- name: Robert Sanderson
20+
ORCID: https://orcid.org/0000-0003-4441-6852
21+
institution: Yale University
22+
- name: Julie Winchester
23+
ORCID: https://orcid.org/0000-0001-6578-764X
24+
institution: Duke University
25+
---
26+
27+
## Status of this Document
28+
{:.no_toc}
29+
30+
This document is not subject to [semantic versioning][notes-versioning].
31+
Changes will be tracked within the document.
32+
33+
**Editors:**
34+
35+
{% include api/editors.md editors=page.editors %}
36+
37+
{% include copyright.md %}
38+
39+
## Abstract
40+
{:.no_toc}
41+
This document lists a set of allowed values for the Presentation API `provides` property that have been identified as useful for implementations, especially related to accessibility. They may be defined by the IIIF community, or outside of it.
42+
43+
Please send feedback to [[email protected]][iiif-discuss]
44+
45+
46+
## 1. Introduction
47+
48+
This is one of a number of [IIIF registries][registry]. It lists a set of allowed values for the Presentation API `provides` property that have been identified as useful for implementations, especially related to accessibility. They may be defined by the IIIF community, or outside of it.
49+
50+
### 1.1. Disclaimer
51+
52+
The inclusion of entries in this document that are outside of the IIIF domain _MUST NOT_ be interpreted as endorsement, support, or approval from the editors, the IIIF community or any individual. This annex is provided as a registry to advertise the existence of these extensions and attempt to ensure some consistency between implementations for common but not universal requirements.
53+
54+
### 1.2. Inclusion Process
55+
56+
The process for having a new entry added to this registry is [described here][registry-process].
57+
58+
## 2. Requirements for Inclusion
59+
60+
## 3. Registry
61+
62+
This table summarizes the known values available for use with the [Presentation API][prezi-api] `provides` propery, which defines accessibility functionality that a linked resource enables for its target, describing why and how a client might use it rather than what the resource is by type or format. The current approved values are defined by Schema.org's [Accessibility Properties for Discoverability Vocabulary][schema-accessibility] and the IIIF Community.
63+
64+
| Value | Description | Source |
65+
| ------------------------------ | |
66+
| `closedCaptions` | ... | Schema.org |
67+
| `alternativeText` | ... | Schema.org |
68+
| `audioDescription` | ... | Schema.org |
69+
| `longDescription` | ... | Schema.org |
70+
| `signLanguage` | ... | Schema.org |
71+
| `highContrastAudio` | ... | Schema.org |
72+
| `highContrastDisplay` | ... | Schema.org |
73+
| `braille` | ... | Schema.org |
74+
| `tactileGraphic` | ... | Schema.org |
75+
| `transcript` | ... | Schema.org |
76+
| `translation` | ... | IIIF |
77+
| `subtitles` | ... | IIIF |
78+
{: .api-table}
79+
80+
81+
## Appendices
82+
83+
### A. Acknowledgements
84+
85+
Thanks to the members of the [IIIF][iiif-community] for their continuous engagement, innovative ideas and feedback.
86+
87+
### B. Change Log
88+
89+
| Date | Description |
90+
| ---------- | -------------------------------------------------- |
91+
| 2026-XX-YY | New Version 4 Registries |
92+
93+
{% include acronyms.md %}
94+
{% include links.md %}

source/registry/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The process for having an entry included in one of the IIIF extension registries
1313

1414
## Presentation API Registries
1515

16+
* [Accessibility Terms][registry-accessibility]
1617
* [Behaviors][registry-behaviors]
1718
* [Presentation API Extensions][extensions]
1819
* [Motivations][registry-motivations]

0 commit comments

Comments
 (0)