-
Notifications
You must be signed in to change notification settings - Fork 3
/
AccessibleOCW.ttl
990 lines (679 loc) · 41.3 KB
/
AccessibleOCW.ttl
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
@prefix : <http://purl.org/accessible_ocw#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix GenericOntology: <http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#> .
@base <http://purl.org/accessible_ocw> .
<http://purl.org/accessible_ocw> rdf:type owl:Ontology ;
dc:contributor "Steffen Lohmann" ;
dc:creator "Mirette Elias" ;
dc:description "This ontology is designed for accessible OpenCourseWare. It is built on the accessibilty concepts of IMS Learning Global Consortium (https://www.imsglobal.org/activity/accessibility) and the vocabulary structure of the ACCESSIBLE ontology (http://www.accessible-eu.org/index.php/ontology.html). The ontology is published at (https://vocol.iais.fraunhofer.de/accessibilityOnto/)"@en ;
dc:title "Accessible OpenCourseWare"@en ;
rdfs:label "AccessibleOCW Ontology"@en .
#################################################################
# Annotation properties
#################################################################
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#Meet
GenericOntology:Meet rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#TechnologyUsage
GenericOntology:TechnologyUsage rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#User_has_Disability
GenericOntology:User_has_Disability rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasAge
GenericOntology:hasAge rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasEducation
GenericOntology:hasEducation rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasJob
GenericOntology:hasJob rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasLocation
GenericOntology:hasLocation rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasMaritalStatus
GenericOntology:hasMaritalStatus rdf:type owl:AnnotationProperty .
### http://160.40.50.89/Accessible_Ontology/Version5.1/OWLs/GenericOntology.owl#hasName
GenericOntology:hasName rdf:type owl:AnnotationProperty .
### http://purl.org/accessible_ocw#User_has_Disability
:User_has_Disability rdf:type owl:AnnotationProperty .
### http://purl.org/accessible_ocw#hasMaritalStatus
:hasMaritalStatus rdf:type owl:AnnotationProperty .
### http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled
<http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://purl.org/accessible_ocw#accessMode_adaptionRequest
:accessMode_adaptionRequest rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAccessMode ;
rdfs:range :AccessModeType ;
rdfs:comment "The hasAdaptationRequest property defines the requested adaptation by the RequiredAccessMode class; given the existing AccessModeType"@en ;
rdfs:label "has Adaptation Request"@en .
### http://purl.org/accessible_ocw#accessMode_existingAccessMode
:accessMode_existingAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAccessMode ;
rdfs:range :AccessModeType ;
rdfs:comment "The hasExistingAccessMode property defines the existing access mode of a resource. The Learner selects his requested adaptation with respect to existing mode of the resource."@en ;
rdfs:label "has Existing AccessMode"@en .
### http://purl.org/accessible_ocw#adaptationDetail_adaptationRequest
:adaptationDetail_adaptationRequest rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAdaptationDetail ;
rdfs:range :AdaptationDetailType ;
rdfs:comment "The hasAdaptationRequest property defines the requested adaptation by the RequiredAdaptationDetail class; given the existing AccessModeType"@en ;
rdfs:label "has Adaptation Request"@en .
### http://purl.org/accessible_ocw#adaptationDetail_existingAccessMode
:adaptationDetail_existingAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAdaptationDetail ;
rdfs:range :AccessModeType ;
rdfs:comment "The hasExistingAccessMode property defines the existing access mode of a resource. The Learner selects his requested adaptation with respect to existing mode of the resource. "@en ;
rdfs:label "has Existing AccessMode"@en .
### http://purl.org/accessible_ocw#adaptationMedia_adaptationRequest
:adaptationMedia_adaptationRequest rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAdaptationMedia ;
rdfs:range :AdaptationMediaType ;
rdfs:comment "The hasAdaptationRequest property defines the requested adaptation by the RequiredAdaptationMedia class; given the existing AccessModeType"@en ;
rdfs:label "has Adaptation Request"@en .
### http://purl.org/accessible_ocw#adaptationType_adaptationRequest
:adaptationType_adaptationRequest rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAdaptationType ;
rdfs:range :AdaptationType ;
rdfs:comment "The hasAdaptationRequest property defines the requested adaptation by the RequiredAdaptationType class; given the existing AccessModeType"@en ;
rdfs:label "has Adaptation Request"@en .
### http://purl.org/accessible_ocw#adaptationType_requiredAccessMode
:adaptationType_requiredAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAdaptationType ;
rdfs:range :RequiredAccessMode ;
rdfs:comment "The hasExistingAccessMode property defines the existing access mode of a resource. The Learner selects his requested adaptation with respect to existing mode of the resource. "@en ;
rdfs:label "has Existing AccessMode"@en .
### http://purl.org/accessible_ocw#hasAccess
:hasAccess rdf:type owl:ObjectProperty ;
rdfs:domain :Learner ;
rdfs:range :DigitalResource ;
rdfs:comment "A learner can access a Digital Resource if all his requirements are satisfied"@en ;
rdfs:label "has Access"@en .
### http://purl.org/accessible_ocw#hasAccessMode
:hasAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AccessModeType ;
rdfs:comment "An access mode through which the intellectual content of a described resource or adaptation is communicated; if adaptations for the resource are known, the access modes of those adaptations are not included." ;
rdfs:label "has Access Mode"@en .
### http://purl.org/accessible_ocw#hasAccessModeOrnamental
:hasAccessModeOrnamental rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AccessModeType ;
rdfs:comment "An access mode through which ornamental content of the described resource or adaptation is communicated; if adaptations for the resource are known the access modes of those adaptations are not included." ;
rdfs:label "has Access Mode Ornament"@en .
### http://purl.org/accessible_ocw#hasAdaptationDetail
:hasAdaptationDetail rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AdaptationDetailType ;
rdfs:comment "Fine detail of one or more adaptation type values." ;
rdfs:label "has Adaptation Detail"@en .
### http://purl.org/accessible_ocw#hasAdaptationMediaType
:hasAdaptationMediaType rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AdaptationMediaType ;
rdfs:comment "Identifies the media type of the described resource, for media types commonly used to aggregate modalities or functionalities." ;
rdfs:label "has Adaptation Media Type"@en .
### http://purl.org/accessible_ocw#hasAdaptationType
:hasAdaptationType rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AdaptationType ;
rdfs:comment "Nature or genre of the adaptation." ;
rdfs:label "has Adaptation Type"@en .
### http://purl.org/accessible_ocw#hasAdaptedAccessMode
:hasAdaptedAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AccessModeType ;
rdfs:comment "The access mode of the intellectual content of the resource that is being adapted." ;
rdfs:label "has Adapted Access Mode"@en .
### http://purl.org/accessible_ocw#hasControlFlexibility
:hasControlFlexibility rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :ControlFlexibilityType ;
rdfs:comment "dentifies a single input method that is sufficient to control the described resource."@en ;
rdfs:label "has Control Flexibility"@en .
### http://purl.org/accessible_ocw#hasDisplayTransformability
:hasDisplayTransformability rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :DisplayTransformabilityType ;
rdfs:comment "Identifies a characteristic of display of the described resource that can be programmatically modified." ;
rdfs:label "has Display Transformability"@en .
### http://purl.org/accessible_ocw#hasEducationalComplexityOfAdaptation
:hasEducationalComplexityOfAdaptation rdf:type owl:ObjectProperty ;
rdfs:domain :Learner ;
rdfs:range :EducationalComplexityType ;
rdfs:comment "A preference for the education level of the adaptation." ;
rdfs:label "has Educational Complexity of Adaptation"@en .
### http://purl.org/accessible_ocw#hasEducationalComplexityOfAdaptation_dr
:hasEducationalComplexityOfAdaptation_dr rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :EducationalComplexityType ;
rdfs:comment "Identifies if the resource is simplified or enriched relative to another resource that presents the same intellectual content." ;
rdfs:label "DR has Educational Complexity of Adaptation"@en .
### http://purl.org/accessible_ocw#hasHazard
:hasHazard rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :HazardType ;
rdfs:comment "A characteristic of the described resource that must not be delivered to some users."@en ;
rdfs:label "has Hazard"@en .
### http://purl.org/accessible_ocw#hasHazardAvoidance
:hasHazardAvoidance rdf:type owl:ObjectProperty ;
rdfs:domain :Learner ;
rdfs:range :HazardType ;
rdfs:comment "A resource having such a characteristic should not be delivered to a user with this preference." ;
rdfs:label "has Hazard Avoidance"@en .
### http://purl.org/accessible_ocw#hasInputRequirements
:hasInputRequirements rdf:type owl:ObjectProperty ;
rdfs:domain :Learner ;
rdfs:range :ControlFlexibilityType ;
rdfs:comment "Single input system that is sufficient to control a resource." ;
rdfs:label "has Input Requirements"@en .
### http://purl.org/accessible_ocw#hasReqAccessMode
:hasReqAccessMode rdf:type owl:ObjectProperty ;
rdfs:domain :Learner ;
rdfs:range :RequiredAccessMode ;
rdfs:label "has Required Access Mode"@en .
### http://purl.org/accessible_ocw#hasReqAdaptationDetail
:hasReqAdaptationDetail rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAccessMode ;
rdfs:range :RequiredAdaptationDetail ;
rdfs:comment "Fine detail of one or more required adaptation types." ;
rdfs:label "has Required Adaptation Details"@en .
### http://purl.org/accessible_ocw#hasReqAdaptationMedia
:hasReqAdaptationMedia rdf:type owl:ObjectProperty ;
rdfs:domain :RequiredAccessMode ;
rdfs:range :RequiredAdaptationMedia ;
rdfs:comment "Requirement for a particular type of media." ;
rdfs:label "has Required Adaptation Media"@en .
### http://purl.org/accessible_ocw#isApiInteroperable
:isApiInteroperable rdf:type owl:ObjectProperty ;
rdfs:domain :DigitalResource ;
rdfs:range :AccessibilityApiType ;
rdfs:comment "Indicates that the resource is compatible with the referenced accessibility API."@en ;
rdfs:label "is API Interoperable"@en .
#################################################################
# Data properties
#################################################################
### http://purl.org/accessible_ocw#hasAdaptation
:hasAdaptation rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:anyURI ;
rdfs:comment "Identifier of a resource that is an adaptation for this resource."@en ;
rdfs:label "has Adaptation"@en .
### http://purl.org/accessible_ocw#hasEducationalLevelOfAdaptation
:hasEducationalLevelOfAdaptation rdf:type owl:DatatypeProperty ;
rdfs:domain :Learner ;
rdfs:range xsd:normalizedString ;
rdfs:comment "A preference for the education level of the adaptation. It should follow some educational standard vocabulary, examples at http://elastic1.asn.desire2learn.com/asn/scheme"@en ;
rdfs:label "has Educational Level of Adaptation"@en .
### http://purl.org/accessible_ocw#hasEducationalLevelOfAdaptation_dr
:hasEducationalLevelOfAdaptation_dr rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:normalizedString ;
rdfs:comment "The level of education for which the described resource is intended. It should follow some educational standard vocabulary, examples at http://elastic1.asn.desire2learn.com/asn/scheme"@en ;
rdfs:label "DR Educational Level of Adaptation"@en .
### http://purl.org/accessible_ocw#hasLanguageOfAdaptation
:hasLanguageOfAdaptation rdf:type owl:DatatypeProperty ;
rdfs:domain :Learner ;
rdfs:range xsd:normalizedString ;
rdfs:comment """A preference for the language of the adaptation [RFC4646].
This dataproperty extends from the DCMI Metadata Terms http://purl.org/dc/terms/RFC4646"""@en ;
rdfs:label "has Language of Adaptation"@en .
### http://purl.org/accessible_ocw#hasLanguageOfAdaptation_dr
:hasLanguageOfAdaptation_dr rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:normalizedString ;
rdfs:comment "A language of the intellectual content of the resource"@en ;
rdfs:label "DR has Language of Adaptation"@en .
### http://purl.org/accessible_ocw#hasLanguageOfInterface
:hasLanguageOfInterface rdf:type owl:DatatypeProperty ;
rdfs:domain :Learner ;
rdfs:range xsd:normalizedString ;
rdfs:comment """A preference for the language of the user interface [RFC4646].
This dataproperty extends from the DCMI Metadata Terms http://purl.org/dc/terms/RFC4646"""@en ;
rdfs:label "has Language of Interface"@en .
### http://purl.org/accessible_ocw#isAdaptationOf
:isAdaptationOf rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:anyURI ;
rdfs:comment "Identifier of a resource for which this is an adaptation."@en ;
rdfs:label "is Adaptation of"@en .
### http://purl.org/accessible_ocw#isAtInteroperable
:isAtInteroperable rdf:type owl:DatatypeProperty ;
rdfs:domain :Learner ;
rdfs:range xsd:boolean ;
rdfs:comment "A preference for resources that are compatible with assistive technologies." ;
rdfs:label "Interoperability to Assistive Technology"@en .
### http://purl.org/accessible_ocw#isAtInteroperable_dr
:isAtInteroperable_dr rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:boolean ;
rdfs:comment "The resource is compatible with assistive technologies. Setting this resource metadata indicates compliance with WCAG 2.0 checkpoints: 1.1.1, 1.3.1, 1.3.2, 2.4.4, 3.1.1, 3.1.2, 3.3.2, 4.1.1, 4.1.2." ;
rdfs:label "DR Interoperability to Assistive Technology"@en .
### http://purl.org/accessible_ocw#isFullAdaptationOf
:isFullAdaptationOf rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:anyURI ;
rdfs:comment "A resource for which the described resource provides a full adaptation."@en ;
rdfs:label "is Full Adaptation of"@en .
### http://purl.org/accessible_ocw#isPartialAdaptationOf
:isPartialAdaptationOf rdf:type owl:DatatypeProperty ;
rdfs:domain :DigitalResource ;
rdfs:range xsd:anyURI ;
rdfs:comment "A resource for which the described resource provides a partial adaptation."@en ;
rdfs:label "is Partial Adaptation of"@en .
### http://purl.org/accessible_ocw#standardName
:standardName rdf:type owl:DatatypeProperty ;
rdfs:domain :AccessibilityApiType ;
rdfs:range xsd:string ;
rdfs:comment "The name of the accessibility standard"@en ;
rdfs:label "Standard Name"@en .
### http://purl.org/accessible_ocw#standardReference
:standardReference rdf:type owl:DatatypeProperty ;
rdfs:domain :AccessibilityApiType ;
rdfs:range xsd:string ;
rdfs:comment "The URL reference of an accessibility standard"@en ;
rdfs:label "Standard Reference URL"@en .
#################################################################
# Classes
#################################################################
### http://purl.org/accessible_ocw#AccessModeType
:AccessModeType rdf:type owl:Class ;
rdfs:comment "Human sensory perceptual system or cognitive faculty through which a person may process or perceive information." ;
rdfs:label "Access Mode Type"@en .
### http://purl.org/accessible_ocw#AccessibilityApiType
:AccessibilityApiType rdf:type owl:Class ;
rdfs:comment "Indicates that the resource is compatible with the referenced accessibility API" ;
rdfs:label "Accessibility API Type"@en .
### http://purl.org/accessible_ocw#AdaptationDetailType
:AdaptationDetailType rdf:type owl:Class ;
rdfs:comment "Term that gives fine detail of one or more adaptation type values."@en ;
rdfs:label "Adaptation Detail Type"@en .
### http://purl.org/accessible_ocw#AdaptationMediaType
:AdaptationMediaType rdf:type owl:Class ;
rdfs:comment "Term identifying a media type commonly used to aggregate accessibility modalities or functionalities as media."@en ;
rdfs:label "Adaptation Media Type"@en .
### http://purl.org/accessible_ocw#AdaptationType
:AdaptationType rdf:type owl:Class ;
rdfs:comment "Term describing an adaptation type."@en ;
rdfs:label "Adaptation Type"@en .
### http://purl.org/accessible_ocw#ControlFlexibilityType
:ControlFlexibilityType rdf:type owl:Class ;
rdfs:comment "Term describing an input method"@en ;
rdfs:label "Control Flexibility Type"@en .
### http://purl.org/accessible_ocw#DigitalResource
:DigitalResource rdf:type owl:Class ;
rdfs:comment "Digital Resource represents any type of educational resources"@en ;
rdfs:label "Digital Resource"@en .
### http://purl.org/accessible_ocw#DisplayTransformabilityType
:DisplayTransformabilityType rdf:type owl:Class ;
rdfs:comment "Identifies a characteristic of display of the described resource that can be programmatically modified."@en ;
rdfs:label "Display Transformability Type"@en .
### http://purl.org/accessible_ocw#EducationalComplexityType
:EducationalComplexityType rdf:type owl:Class ;
owl:equivalentClass [ rdf:type owl:Class ;
owl:oneOf ( :enriched
:simplified
)
] ;
rdfs:comment "A preference for a resource that is simplified or enriched relative to another resource that presents the same intellectual content."@en ;
rdfs:label "Educational Complexity Type"@en .
### http://purl.org/accessible_ocw#HazardType
:HazardType rdf:type owl:Class ;
rdfs:comment "Term describing a characteristic of the described resource that must not be delivered to some users."@en ;
rdfs:label "Hazard Type"@en .
### http://purl.org/accessible_ocw#Learner
:Learner rdf:type owl:Class ;
rdfs:subClassOf <http://www.AccessibleOntology.com/GenericOntology.owl#User> ;
rdfs:comment "Learner is a subclass of the User class"@en ;
rdfs:label "Learner"@en .
### http://purl.org/accessible_ocw#RequiredAccessMode
:RequiredAccessMode rdf:type owl:Class ;
rdfs:comment "Access mode that a user seeks either in an adaptation or an original resource as a replacement for a different access mode." ;
rdfs:label "Required Access Mode"@en .
### http://purl.org/accessible_ocw#RequiredAdaptationDetail
:RequiredAdaptationDetail rdf:type owl:Class ;
rdfs:comment "Fine detail of one or more required adaptation types."@en ;
rdfs:label "Required Adaptation Detail"@en .
### http://purl.org/accessible_ocw#RequiredAdaptationMedia
:RequiredAdaptationMedia rdf:type owl:Class ;
rdfs:comment "Term identifying a media type commonly used to aggregate accessibility modalities or functionalities as media"@en ;
rdfs:label "Required Adaptation Media"@en .
### http://purl.org/accessible_ocw#RequiredAdaptationType
:RequiredAdaptationType rdf:type owl:Class ;
rdfs:comment "Nature or genre of the adaptation required as a replacement for a specific access mode" ;
rdfs:label "Required Adaptation Type"@en .
### http://www.AccessibleOntology.com/GenericOntology.owl#User
<http://www.AccessibleOntology.com/GenericOntology.owl#User> rdf:type owl:Class ;
rdfs:comment "User class is extended from ACCESSIBLE ontology"@en ;
rdfs:label "User"@en .
#################################################################
# Individuals
#################################################################
### http://purl.org/accessible_ocw#ARIAv1
:ARIAv1 rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#AT-SPI
:AT-SPI rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#ATK
:ATK rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#AndroidAccessibility
:AndroidAccessibility rdf:type owl:NamedIndividual ,
:AccessibilityApiType ;
rdfs:comment "Term identifying an adaptive technology API for reference in resource metadata."@en ;
rdfs:label "Android Accessibility"@en .
### http://purl.org/accessible_ocw#BlackberryAccessibility
:BlackberryAccessibility rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#ChemML
:ChemML rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#Daisy
:Daisy rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#EPUB3
:EPUB3 rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#JavaAccessibility
:JavaAccessibility rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#LIT
:LIT rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#LaTeX
:LaTeX rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#Learner_blindness
:Learner_blindness rdf:type owl:NamedIndividual ,
:Learner ;
:hasHazardAvoidance :flashing ,
:motionSimulation ,
:sound ;
:hasReqAccessMode :auditory_auditory ,
:auditory_textual ,
:colour_textual ,
:orientation_textual ,
:position_textual ,
:textOnImage_textual ,
:textual_textual ,
:visual_auditory ,
:visual_textual ;
:isAtInteroperable "true"^^xsd:boolean ;
GenericOntology:User_has_Disability "Blindness" .
### http://purl.org/accessible_ocw#Learner_deaf
:Learner_deaf rdf:type owl:NamedIndividual ,
:Learner ;
:hasReqAccessMode :auditory_textual ;
:hasLanguageOfAdaptation "Spanish"^^xsd:string ;
:hasLanguageOfInterface "Spanish"^^xsd:string ;
GenericOntology:User_has_Disability :Deafness .
### http://purl.org/accessible_ocw#Learner_lowVision
:Learner_lowVision rdf:type owl:NamedIndividual ,
:Learner ;
:hasHazardAvoidance :flashing ;
:hasReqAccessMode :auditory_auditory ,
:auditory_textual ,
:colour_textual ,
:orientation_textual ,
:position_textual ,
:textOnImage_textual ,
:textual_textual ,
:visual_auditory ,
:visual_textual ;
:hasLanguageOfAdaptation "English"^^xsd:string ;
:hasLanguageOfInterface "English"^^xsd:string ;
GenericOntology:User_has_Disability :Colour_Blindness .
### http://purl.org/accessible_ocw#MSAA
:MSAA rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#MacOSXAccessibility
:MacOSXAccessibility rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#MathML
:MathML rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#NIMAS
:NIMAS rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#Nemeth
:Nemeth rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#OEBPS
:OEBPS rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#PDF
:PDF rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#UIAutomation
:UIAutomation rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#alternativeText
:alternativeText rdf:type owl:NamedIndividual ,
:AdaptationType ;
rdfs:comment "Text that is programmatically associated with non-text content and that serves the equivalent purpose (WCAG2)."@en ;
rdfs:label "Alternative Text"@en .
### http://purl.org/accessible_ocw#audioDescription
:audioDescription rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#auditory
:auditory rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#auditory_auditory
:auditory_auditory rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#auditory_textual
:auditory_textual rdf:type owl:NamedIndividual ,
:RequiredAccessMode ;
:accessMode_adaptionRequest :textual ;
:accessMode_existingAccessMode :auditory .
### http://purl.org/accessible_ocw#auditory_transcript
:auditory_transcript rdf:type owl:NamedIndividual ,
:RequiredAdaptationType ;
:adaptationType_adaptationRequest :transcript ;
:adaptationType_requiredAccessMode :auditory_textual .
### http://purl.org/accessible_ocw#auditory_verbatim
:auditory_verbatim rdf:type owl:NamedIndividual ,
:RequiredAdaptationDetail ;
:adaptationDetail_adaptationRequest :verbatim ;
:adaptationDetail_existingAccessMode :auditory .
### http://purl.org/accessible_ocw#backgroundColour
:backgroundColour rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#braille
:braille rdf:type owl:NamedIndividual ,
:AdaptationMediaType .
### http://purl.org/accessible_ocw#captions
:captions rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#color
:color rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#color_textual
:color_textual rdf:type owl:NamedIndividual ,
:RequiredAccessMode ;
:accessMode_adaptionRequest :textual ;
:accessMode_existingAccessMode :color .
### http://purl.org/accessible_ocw#colour_textual
:colour_textual rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#cursorPresentation
:cursorPresentation rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#digitalResource1
:digitalResource1 rdf:type owl:NamedIndividual ,
:DigitalResource ;
:hasAccessMode :visual ;
:hasControlFlexibility :fullKeyboardControl ;
:hasDisplayTransformability :backgroundColour ;
:hasEducationalComplexityOfAdaptation_dr :enriched ;
:hasHazard :flashing ;
:hasAdaptation "digitalResource2_URI"^^xsd:anyURI ,
"digitalResource3_URI"^^xsd:anyURI ;
:isAtInteroperable_dr "true"^^xsd:boolean .
### http://purl.org/accessible_ocw#digitalResource2
:digitalResource2 rdf:type owl:NamedIndividual ,
:DigitalResource ;
:hasAccessMode :textual ;
:hasAdaptationMediaType :braille ;
:hasAdaptedAccessMode :transcript ;
:hasControlFlexibility :fullKeyboardControl ;
:hasEducationalComplexityOfAdaptation_dr :enriched ;
:isAdaptationOf "digitalResource1_URL"^^xsd:anyURI ;
:isAtInteroperable_dr "true"^^xsd:boolean .
### http://purl.org/accessible_ocw#digitalResource3
:digitalResource3 rdf:type owl:NamedIndividual ,
:DigitalResource ;
:hasAccessMode :auditory ;
:hasControlFlexibility :fullKeyboardControl ;
:hasEducationalComplexityOfAdaptation_dr :enriched ;
:isAdaptationOf "digitalResource1_URI"^^xsd:anyURI ;
:isAtInteroperable_dr "true"^^xsd:boolean .
### http://purl.org/accessible_ocw#e-book
:e-book rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#enhanced
:enhanced rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#enriched
:enriched rdf:type owl:NamedIndividual ,
:EducationalComplexityType ;
rdfs:comment "ُEnriched instance indicates the capability of accessing a normal/complex resource"@en ;
rdfs:label "Enriched"@en .
### http://purl.org/accessible_ocw#flashing
:flashing rdf:type owl:NamedIndividual ,
:HazardType .
### http://purl.org/accessible_ocw#fontFace
:fontFace rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#fontSize
:fontSize rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#fontWeight
:fontWeight rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#foregroundColour
:foregroundColour rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#fullKeyboardControl
:fullKeyboardControl rdf:type owl:NamedIndividual ,
:ControlFlexibilityType .
### http://purl.org/accessible_ocw#fullMouseControl
:fullMouseControl rdf:type owl:NamedIndividual ,
:ControlFlexibilityType .
### http://purl.org/accessible_ocw#haptic
:haptic rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#highContrast
:highContrast rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#highlightPresentation
:highlightPresentation rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#iAccessible2
:iAccessible2 rdf:type owl:NamedIndividual ,
:AccessibilityApiType .
### http://purl.org/accessible_ocw#itemsize
:itemsize rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#layout
:layout rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#letterSpacing
:letterSpacing rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#lineHeight
:lineHeight rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#longDescription
:longDescription rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#motionSimulation
:motionSimulation rdf:type owl:NamedIndividual ,
:HazardType .
### http://purl.org/accessible_ocw#olfactory
:olfactory rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#olfactoryHazard
:olfactoryHazard rdf:type owl:NamedIndividual ,
:HazardType .
### http://purl.org/accessible_ocw#orientation
:orientation rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#orientation_textual
:orientation_textual rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#position
:position rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#position_textual
:position_textual rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#realTime
:realTime rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#recorded
:recorded rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#signLanguage
:signLanguage rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#simplified
:simplified rdf:type owl:NamedIndividual ,
:EducationalComplexityType ;
rdfs:comment "Simplified instance indicates the requirment of an simple/easy resource"@en ;
rdfs:label "Simplified"@en .
### http://purl.org/accessible_ocw#sound
:sound rdf:type owl:NamedIndividual ,
:HazardType .
### http://purl.org/accessible_ocw#structurePresentation
:structurePresentation rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### http://purl.org/accessible_ocw#symbolic
:symbolic rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#synthesized
:synthesized rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#tactile
:tactile rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#textOnImage
:textOnImage rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#textOnImage_textual
:textOnImage_textual rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#textual
:textual rdf:type owl:NamedIndividual ,
:AccessModeType .
### http://purl.org/accessible_ocw#textual_textual
:textual_textual rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#transcript
:transcript rdf:type owl:NamedIndividual ,
:AdaptationType .
### http://purl.org/accessible_ocw#verbatim
:verbatim rdf:type owl:NamedIndividual ,
:AdaptationDetailType .
### http://purl.org/accessible_ocw#visual
:visual rdf:type owl:NamedIndividual ,
:AccessModeType ;
:accessMode_adaptionRequest :textual .
### http://purl.org/accessible_ocw#visual_alternativeText
:visual_alternativeText rdf:type owl:NamedIndividual ,
:RequiredAdaptationType ;
:adaptationType_adaptationRequest :alternativeText ;
:adaptationType_requiredAccessMode :visual_textual .
### http://purl.org/accessible_ocw#visual_audioDiscription
:visual_audioDiscription rdf:type owl:NamedIndividual ,
:RequiredAdaptationType ;
:adaptationType_adaptationRequest :audioDescription ;
:adaptationType_requiredAccessMode :visual_auditory .
### http://purl.org/accessible_ocw#visual_auditory
:visual_auditory rdf:type owl:NamedIndividual .
### http://purl.org/accessible_ocw#visual_textual
:visual_textual rdf:type owl:NamedIndividual ,
:RequiredAccessMode ;
:accessMode_adaptionRequest :textual ;
:accessMode_existingAccessMode :visual .
### http://purl.org/accessible_ocw#wordSpacing
:wordSpacing rdf:type owl:NamedIndividual ,
:DisplayTransformabilityType .
### Generated by the OWL API (version 4.5.6.2018-09-06T00:27:41Z) https://github.com/owlcs/owlapi