forked from GSA/openacr
-
Notifications
You must be signed in to change notification settings - Fork 1
/
2.4-edition-wcag-2.0-508-en.yaml
1054 lines (1054 loc) · 26.5 KB
/
2.4-edition-wcag-2.0-508-en.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
title: VPAT® 2.4 Revised Section 508 Edition
lang: en
standards:
- id: wcag-2.0
label: Web Content Accessibility Guidelines 2.0
report_heading: WCAG 2.0 Report
url: https://www.w3.org/TR/WCAG20/
chapters:
- success_criteria_level_a
- success_criteria_level_aa
- success_criteria_level_aaa
- id: "508"
label: >-
Revised Section 508 standards published January 18, 2017 and corrected
January 22, 2018
report_heading: Revised Section 508 Report
url: https://www.access-board.gov/ict/
chapters:
- functional_performance_criteria
- hardware
- software
- support_documentation_and_services
chapters:
- id: success_criteria_level_a
label: "Table 1: Success Criteria, Level A"
short_label: A
order: 1
criteria:
- id: 1.1.1
handle: Non-text Content
alt_id: text-equiv-all
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.1
handle: Audio-only and Video-only (Prerecorded)
alt_id: media-equiv-av-only-alt
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.2
handle: Captions (Prerecorded)
alt_id: media-equiv-captions
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.3
handle: Audio Description or Media Alternative (Prerecorded)
alt_id: media-equiv-audio-desc
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.3.1
handle: Info and Relationships
alt_id: content-structure-separation-programmatic
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.3.2
handle: Meaningful Sequence
alt_id: content-structure-separation-sequence
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.3.3
handle: Sensory Characteristics
alt_id: content-structure-separation-understanding
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.1
handle: Use of Color
alt_id: visual-audio-contrast-without-color
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.2
handle: Audio Control
alt_id: visual-audio-contrast-dis-audio
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.1.1
handle: Keyboard
alt_id: keyboard-operation-keyboard-operable
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.1.2
handle: No Keyboard Trap
alt_id: keyboard-operation-trapping
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.2.1
handle: Timing Adjustable
alt_id: time-limits-required-behaviors
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.2.2
handle: Pause, Stop, Hide
alt_id: time-limits-pause
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.3.1
handle: Three Flashes or Below Threshold
alt_id: seizure-does-not-violate
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.1
handle: Bypass Blocks
alt_id: navigation-mechanisms-skip
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.2
handle: Page Titled
alt_id: navigation-mechanisms-title
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.3
handle: Focus Order
alt_id: navigation-mechanisms-focus-order
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.4
handle: Link Purpose (In Context)
alt_id: navigation-mechanisms-refs
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.1
handle: Language of Page
alt_id: meaning-doc-lang-id
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.2.1
handle: On Focus
alt_id: consistent-behavior-receive-focus
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.2.2
handle: On Input
alt_id: consistent-behavior-unpredictable-change
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.1
handle: Error Identification
alt_id: minimize-error-identified
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.2
handle: Labels or Instructions
alt_id: minimize-error-cues
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 4.1.1
handle: Parsing
alt_id: ensure-compat-parses
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 4.1.2
handle: Name, Role, Value
alt_id: ensure-compat-rsv
components:
- web
- electronic-docs
- software
- authoring-tool
- id: success_criteria_level_aa
label: "Table 2: Success Criteria, Level AA"
short_label: AA
order: 2
criteria:
- id: 1.2.4
handle: Captions (Live)
alt_id: media-equiv-real-time-captions
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.5
handle: Audio Description (Prerecorded)
alt_id: media-equiv-audio-desc-only
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.3
handle: Contrast (Minimum)
alt_id: visual-audio-contrast-contrast
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.4
handle: Resize text
alt_id: visual-audio-contrast-scale
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.5
handle: Images of Text
alt_id: visual-audio-contrast-text-presentation
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.5
handle: Multiple Ways
alt_id: navigation-mechanisms-mult-loc
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.6
handle: Headings and Labels
alt_id: navigation-mechanisms-descriptive
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.7
handle: Focus Visible
alt_id: navigation-mechanisms-focus-visible
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.2
handle: Language of Parts
alt_id: meaning-other-lang-id
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.2.3
handle: Consistent Navigation
alt_id: consistent-behavior-consistent-locations
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.2.4
handle: Consistent Identification
alt_id: consistent-behavior-consistent-functionality
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.3
handle: Error Suggestion
alt_id: minimize-error-suggestions
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.4
handle: Error Prevention (Legal, Financial, Data)
alt_id: minimize-error-reversible
components:
- web
- electronic-docs
- software
- authoring-tool
- id: success_criteria_level_aaa
label: "Table 3: Success Criteria, Level AAA"
short_label: AAA
order: 3
criteria:
- id: 1.2.6
handle: Sign Language (Prerecorded)
alt_id: media-equiv-sign
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.7
handle: Extended Audio Description (Prerecorded)
alt_id: media-equiv-extended-ad
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.8
handle: Media Alternative (Prerecorded)
alt_id: media-equiv-text-doc
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.2.9
handle: Audio-only (Live)
alt_id: media-equiv-live-audio-only
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.6
handle: Contrast (Enhanced)
alt_id: visual-audio-contrast7
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.7
handle: Low or No Background Audio
alt_id: visual-audio-contrast-noaudio
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.8
handle: Visual Presentation
alt_id: visual-audio-contrast-visual-presentation
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 1.4.9
handle: Images of Text (No Exception)
alt_id: visual-audio-contrast-text-images
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.1.3
handle: Keyboard (No Exception)
alt_id: keyboard-operation-all-funcs
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.2.3
handle: No Timing
alt_id: time-limits-no-exceptions
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.2.4
handle: Interruptions
alt_id: time-limits-postponed
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.2.5
handle: Re-authenticating
alt_id: time-limits-server-timeout
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.3.2
handle: Three Flashes
alt_id: seizure-three-times
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.8
handle: Location
alt_id: navigation-mechanisms-location
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.9
handle: Link Purpose (Link Only)
alt_id: navigation-mechanisms-link
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 2.4.10
handle: Section Headings
alt_id: navigation-mechanisms-headings
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.3
handle: Unusual Words
alt_id: meaning-idioms
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.4
handle: Abbreviations
alt_id: meaning-located
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.5
handle: Reading Level
alt_id: meaning-supplements
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.1.6
handle: Pronunciation
alt_id: meaning-pronunciation
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.2.5
handle: Change on Request
alt_id: consistent-behavior-no-extreme-changes-context
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.5
handle: Help
alt_id: minimize-error-context-help
components:
- web
- electronic-docs
- software
- authoring-tool
- id: 3.3.6
handle: Error Prevention (All)
alt_id: minimize-error-reversible-all
components:
- web
- electronic-docs
- software
- authoring-tool
- id: functional_performance_criteria
label: "Chapter 3: Functional Performance Criteria (FPC)"
short_label: FPC
order: 3
criteria:
- id: "302.1"
handle: Without Vision
alt_id: "302.1"
components:
- none
- id: "302.2"
handle: With Limited Vision
alt_id: "302.2"
components:
- none
- id: "302.3"
handle: Without Perception of Color
alt_id: "302.3"
components:
- none
- id: "302.4"
handle: Without Hearing
alt_id: "302.4"
components:
- none
- id: "302.5"
handle: With Limited Hearing
alt_id: "302.5"
components:
- none
- id: "302.6"
handle: Without Speech
alt_id: "302.6"
components:
- none
- id: "302.7"
handle: With Limited Manipulation
alt_id: "302.7"
components:
- none
- id: "302.8"
handle: With Limited Reach and Strength
alt_id: "302.8"
components:
- none
- id: "302.9"
handle: With Limited Language, Cognitive, and Learning Abilities
alt_id: "302.9"
components:
- none
- id: hardware
label: "Chapter 4: Hardware"
short_label: Hardware
order: 4
criteria:
- id: 402.2.1
handle: Information Displayed On-Screen
alt_id: 402.2.1
components:
- none
- id: 402.2.2
handle: Transactional Outputs
alt_id: 402.2.2
components:
- none
- id: 402.2.3
handle: Speech Delivery Type and Coordination
alt_id: 402.2.3
components:
- none
- id: 402.2.4
handle: User Control
alt_id: 402.2.4
components:
- none
- id: 402.2.5
handle: Braille Instructions
alt_id: 402.2.5
components:
- none
- id: 402.3.1
handle: Private Listening
alt_id: 402.3.1
components:
- none
- id: 402.3.2
handle: Non-private Listening
alt_id: 402.3.2
components:
- none
- id: "402.4"
handle: Characters on Display Screens
alt_id: "402.4"
components:
- none
- id: "402.5"
handle: Characters on Variable Message Signs
alt_id: "402.5"
components:
- none
- id: "403.1"
handle: General (Biometrics)
alt_id: "403.1"
components:
- none
- id: "404.1"
handle: General (Preservation of Information Provided for Accessibility)
alt_id: "404.1"
components:
- none
- id: "405.1"
handle: General (Privacy)
alt_id: "405.1"
components:
- none
- id: "406.1"
handle: General (Standard Connections)
alt_id: "406.1"
components:
- none
- id: "407.2"
handle: Contrast (Operable Parts)
alt_id: "407.2"
components:
- none
- id: 407.3.1
handle: Tactilely Discernible
alt_id: 407.3.1
components:
- none
- id: 407.3.2
handle: Alphabetic Keys
alt_id: 407.3.2
components:
- none
- id: 407.3.3
handle: Numeric Keys
alt_id: 407.3.3
components:
- none
- id: "407.4"
handle: Key Repeat
alt_id: "407.4"
components:
- none
- id: "407.5"
handle: Timed Response
alt_id: "407.5"
components:
- none
- id: "407.6"
handle: Operation
alt_id: "407.6"
components:
- none
- id: "407.7"
handle: Tickets, Fare Cards, and Keycards
alt_id: "407.7"
components:
- none
- id: 407.8.1
handle: Vertical Reference Plane
alt_id: 407.8.1
components:
- none
- id: 407.8.1.1
handle: Vertical Plane for Side Reach
alt_id: 407.8.1.1
components:
- none
- id: 407.8.1.2
handle: Vertical Plane for Forward Reach
alt_id: 407.8.1.2
components:
- none
- id: 407.8.2
handle: Side Reach
alt_id: 407.8.2
components:
- none
- id: 407.8.2.1
handle: Unobstructed Side Reach
alt_id: 407.8.2.1
components:
- none
- id: 407.8.2.2
handle: Obstructed Side Reach
alt_id: 407.8.2.2
components:
- none
- id: 407.8.3
handle: Forward Reach
alt_id: 407.8.3
components:
- none
- id: 407.8.3.1
handle: Unobstructed Forward Reach
alt_id: 407.8.3.1
components:
- none
- id: 407.8.3.2
handle: Obstructed Forward Reach
alt_id: 407.8.3.2
components:
- none
- id: 407.8.3.2.1
handle: Operable Part Height for ICT with Obstructed Forward Reach
alt_id: 407.8.3.2.1
components:
- none
- id: 407.8.3.2.2
handle: Knee and Toe Space under ICT with Obstructed Forward Reach
alt_id: 407.8.3.2.2
components:
- none
- id: "408.2"
handle: Visibility
alt_id: "408.2"
components:
- none
- id: "408.3"
handle: Flashing
alt_id: "408.3"
components:
- none
- id: "409.1"
handle: General (Status Indicators)
alt_id: "409.1"
components:
- none
- id: "410.1"
handle: General (Color Coding)
alt_id: "410.1"
components:
- none
- id: "411.1"
handle: General (Audible Signals)
alt_id: "411.1"
components:
- none
- id: 412.2.1
handle: Volume Gain for Wireline Telephones
alt_id: 412.2.1
components:
- none
- id: 412.2.2
handle: Volume Gain for Non-Wireline ICT
alt_id: 412.2.2
components:
- none
- id: 412.3.1
handle: Wireless Handsets
alt_id: 412.3.1
components:
- none
- id: 412.3.2
handle: Wireline Handsets
alt_id: 412.3.2
components:
- none
- id: "412.4"
handle: Digital Encoding of Speech
alt_id: "412.4"
components:
- none
- id: "412.5"
handle: Real-Time Text Functionality
alt_id: "412.5"
components:
- none
- id: "412.6"
handle: Caller ID
alt_id: "412.6"
components:
- none
- id: "412.7"
handle: Video Communication
alt_id: "412.7"
components:
- none
- id: 412.8.1
handle: TTY Connectability
alt_id: 412.8.1
components:
- none
- id: 412.8.2
handle: Voice and Hearing Carry Over
alt_id: 412.8.2
components:
- none
- id: 412.8.3
handle: Signal Compatibility
alt_id: 412.8.3
components:
- none
- id: 412.8.4
handle: Voice Mail and Other Messaging Systems
alt_id: 412.8.4
components:
- none
- id: 413.1.1
handle: Decoding and Display of Closed Captions
alt_id: 413.1.1
components:
- none
- id: 413.1.2
handle: Pass-Through of Closed Caption Data
alt_id: 413.1.2
components:
- none
- id: 414.1.1
handle: Digital Television Tuners
alt_id: 414.1.1
components:
- none
- id: 414.1.2
handle: Other ICT
alt_id: 414.1.2
components:
- none
- id: 415.1.1
handle: Caption Controls
alt_id: 415.1.1
components:
- none
- id: 415.1.2
handle: Audio Description Controls
alt_id: 415.1.2
components:
- none
- id: software
label: "Chapter 5: Software"
short_label: Software
order: 5
criteria:
- id: 502.2.1
handle: User Control of Accessibility Features
alt_id: 502.2.1
components:
- none
- id: 502.2.2
handle: No Disruption of Accessibility Features
alt_id: 502.2.2
components:
- none
- id: 502.3.1
handle: Object Information
alt_id: 502.3.1
components:
- none
- id: 502.3.2
handle: Modification of Object Information
alt_id: 502.3.2
components:
- none
- id: 502.3.3
handle: Row, Column, and Headers
alt_id: 502.3.3
components:
- none
- id: 502.3.4
handle: Values
alt_id: 502.3.4
components:
- none
- id: 502.3.5
handle: Modification of Values
alt_id: 502.3.5
components:
- none
- id: 502.3.6
handle: Label Relationships
alt_id: 502.3.6
components:
- none
- id: 502.3.7
handle: Hierarchical Relationships
alt_id: 502.3.7
components:
- none
- id: 502.3.8
handle: Text
alt_id: 502.3.8
components:
- none
- id: 502.3.9
handle: Modification of Text
alt_id: 502.3.9
components:
- none
- id: 502.3.10
handle: List of Actions
alt_id: 502.3.10
components:
- none
- id: 502.3.11
handle: Actions on Objects
alt_id: 502.3.11
components:
- none
- id: 502.3.12
handle: Focus Cursor
alt_id: 502.3.12
components:
- none
- id: 502.3.13
handle: Modification of Focus Cursor
alt_id: 502.3.13
components:
- none
- id: 502.3.14
handle: Event Notification
alt_id: 502.3.14
components:
- none
- id: "502.4"
handle: Platform Accessibility Features
alt_id: "502.4"
components:
- none
- id: "503.2"
handle: User Preferences
alt_id: "503.2"
components:
- none
- id: "503.3"
handle: Alternative User Interfaces
alt_id: "503.3"
components:
- none
- id: 503.4.1
handle: Caption Controls
alt_id: 503.4.1
components:
- none
- id: 503.4.2
handle: Audio Description Controls
alt_id: 503.4.2
components:
- none
- id: "504.2"
handle: Content Creation or Editing
alt_id: "504.2"
components:
- none
- id: 504.2.1
handle: >-
Preservation of Information Provided for Accessibility in Format
Conversion
alt_id: 504.2.1
components:
- none
- id: 504.2.2
handle: PDF Export
alt_id: 504.2.2
components:
- none
- id: "504.3"
handle: Prompts
alt_id: "504.3"
components:
- none
- id: "504.4"
handle: Templates
alt_id: "504.4"
components:
- none
- id: support_documentation_and_services
label: "Chapter 6: Support Documentation and Services"
short_label: Documentation
order: 6
criteria:
- id: "602.2"
handle: Accessibility and Compatibility Features