-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOntoMetadataShape4Forms.ttl
1446 lines (1324 loc) · 76.5 KB
/
OntoMetadataShape4Forms.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
991
992
993
994
995
996
997
998
999
1000
@base <https://www.purl.org/ontologymetadata/shape4forms> .
@prefix adms: <http://www.w3.org/ns/adms#> .
@prefix bibo: <http://purl.org/ontology/bibo/> .
@prefix cc: <http://creativecommons.org/ns#> .
@prefix dash: <http://datashapes.org/dash#> .
@prefix dbo: <http://dbpedia.org/ontology/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix doap: <http://usefulinc.com/ns/doap#> .
@prefix mod: <https://w3id.org/mod#> .
@prefix ontometa4forms: <https://www.purl.org/ontologymetadata/shape4forms#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix premis: <http://www.loc.gov/premis/rdf/v3/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <https://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix shacl: <http://www.w3.org/ns/shacl#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
ontometa4forms: rdf:type owl:Ontology ;
# owl:imports <http://www.w3.org/ns/shacl#> ; #when last imported (2024-04-05), SHACL was inconsistent
dcterms:title "Ontology Metadata Shape by TIB"@en, "TIB Metadatenshape für Ontologien"@de;
dcterms:creator <https://orcid.org/0000-0002-1019-9151>, <https://orcid.org/0000-0003-1043-4964>, <https://orcid.org/0000-0003-2499-7741>, <https://orcid.org/0000-0002-1595-3213>, <https://orcid.org/0000-0002-8280-0487>;
dcterms:created "2025-01-01T00:00:00"^^xsd:dateTime;
<http://purl.org/dc/terms/modified> "2025-01-01T00:00:00"^^xsd:dateTime;
dcterms:abstract "OntoMeta4Forms provides SHACL shapes for ontology metadata. It is intended for use in form generator applications, e.g. <https://ulb-darmstadt.github.io/shacl-form/#try-your-own>. You may re-use (please refer back to our repo!) for your own services. Please note that adaptations might be necessary. If you have any remarks or questions get in touch with us at https://github.com/TIBHannover/terminology-metadata/issues"@en;
dcterms:subject <http://d-nb.info/gnd/4827894-4>, <http://d-nb.info/gnd/4410512-5>;
# dcterms:bibliographicCitation "Arndt, S., Ganske, A., Hauschke, C., Strömert, P., & Vogt, L. (2024). Terminology Metadata Recommendations by TIB. Zenodo. https://doi.org/10.5281/zenodo.11103070 (latest version)";
dcterms:modified "2024-11-28T13:22:00"^^xsd:dateTime;
vann:preferredNamespacePrefix "ontometa4forms";
dcterms:license <https://creativecommons.org/licenses/by/4.0/legalcode>;
doap:audience "Ontology engineers, ontology publishers, terminology service providers, terminology service curators"@en;
schema:inLanguage <http://id.loc.gov/vocabulary/iso639-2/eng>;
owl:versionIRI <https://www.purl.org/ontologymetadata/shape4forms/20250101>;
bibo:status "active";
adms:versionNotes "In this version of OntoMeta, the sh:NodeShape is optimized for form generarators."@en;
doap:bug-database <https://github.com/TIBHannover/terminology-metadata/issues>;
premis:documentation <https://github.com/TIBHannover/terminology-metadata/blob/20250101/MetadataGuide.md>;
doap:repository <https://github.com/TIBHannover/terminology-metadata>;
dcterms:references <https://doi.org/10.5281/zenodo.11103070>;
mod:hasFormalityLevel "RDF(S), OWL, SHACL"@en;
<https://w3id.org/mod#hasSyntax> <http://www.w3.org/ns/formats/Turtle>;
mod:hasEquivalencesWith <https://github.com/TIBHannover/terminology-metadata/blob/20250101/MetadataGuide.md#7-relations-to-related-work>;
.
# Start of the Ontology Metadata Shape
ontometa4forms:OntologyMetadataShape a sh:NodeShape ;
sh:targetClass owl:Ontology ;
# MANDATORY METADATA
## Ontology title
### status: developer and external review needed
sh:property [
sh:path dcterms:title ;
sh:severity sh:Warning ;
sh:minCount 1 ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:uniqueLang true ;
sh:description """You must add an ontology title or label. The title must have a language tag. Only one title per language is accepted."""@en ;
sh:name "Ontology title"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Preferred ontology prefix/ acronym
### status: developer and external review needed: add check for forbidden characters like - ?
sh:property [
sh:path <http://purl.org/vocab/vann/preferredNamespacePrefix> ;
sh:severity sh:Warning;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype xsd:string ;
sh:description "You must add the preferred ontology prefix as an xsd:string. Only one preferred prefix is accepted."@en ;
sh:name "Preferred ontology prefix/ acronym"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology license
### status: developer and external review needed
sh:property [
sh:path dcterms:license ;
sh:severity sh:Warning ;
sh:minCount 1;
sh:maxCount 1;
sh:nodeKind sh:IRI ;
# tbd/todo: add further licenses to the list of accepted licenses?
sh:in (
<https://opendatacommons.org/licenses/by/1-0/>
<https://opendatacommons.org/licenses/pddl/1-0/>
<https://opendatacommons.org/licenses/odbl/1-0/>
<https://unlicense.org/>
<https://creativecommons.org/publicdomain/zero/1.0/legalcode>
<https://creativecommons.org/licenses/by/3.0/legalcode>
<https://creativecommons.org/licenses/by/4.0/legalcode>
<https://creativecommons.org/licenses/by/3.0/de/legalcode>
<https://creativecommons.org/licenses/by-sa/3.0/legalcode>
<https://creativecommons.org/licenses/by-sa/4.0/legalcode>
);
sh:description "You must add the ontology license. This metadata form promotes only open licenses."@en ;
sh:name "Ontology license"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology creator(s)
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/creator> ;
sh:severity sh:Warning ;
sh:minCount 1;
sh:description "You must add the ontology creators. Only URIs are accepted, e.g. ORCIDs (https://orcid.org/) or ROR (https://ror.org/) identifiers."@en ;
sh:nodeKind sh:IRI;
sh:name "Ontology creator(s)"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Version information
### Ontology version IRI
#### status: developer and external review needed
sh:property [
sh:path owl:versionIRI ;
sh:severity sh:Warning ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI;
sh:description "You must add the ontology's versionIRI. The ontology should be hosted on a version control system with release management in place, so that each version of the ontology can be referenced with a unique, stable versionIRI."@en ;
sh:name "Ontology version IRI"@en ;
sh:group ontometa4forms:VersionGroup;
] ;
### Ontology creation date
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/created> ;
sh:severity sh:Warning ;
sh:minCount 1;
sh:maxCount 1 ;
sh:datatype xsd:dateTime ;
sh:description "You must add the ontology creation date. Use xsd:dateTime format to do so."@en ;
sh:name "Ontology creation date"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Ontology abstract
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/abstract> ;
sh:severity sh:Warning ;
sh:minCount 1 ;
sh:description "You must add a short abstract describing the ontology. What is the ontology about? Which use case does it support? What is the motivation of the ontology? Please provide it, if knwon. Ideally use information provided by the ontology creators, e.g. in documentation, ontology homepage, papers or the like."@en ;
sh:name "Ontology abstract"@en ;
#sh:nodeKind sh:Literal ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:uniqueLang true ;
sh:maxLength 500 ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Ontology issue tracker
### status: developer and external review needed
sh:property [
sh:path <http://usefulinc.com/ns/doap#bug-database> ;
sh:severity sh:Warning ;
sh:nodeKind sh:IRI ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:description "You must add the ontology's issue tracker. The ontology development should happen on a version control platform like GitLab or GitHub. The issue tracker should be available so that users of the ontology can report problems and suggestions regarding the ontology."@en ;
sh:name "Ontology issue tracker"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
## Ontology documentation
### status: developer and external review needed
sh:property [
sh:path <http://www.loc.gov/premis/rdf/v3/documentation> ;
sh:severity sh:Warning ;
sh:nodeKind sh:IRI ;
sh:minCount 1 ;
sh:maxCount 1 ;
sh:description "You must add a link to the ontology documentation."@en ;
sh:name "Ontology documentation"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
# RECOMMENDED METADATA
## Ontology contributor(s)
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/contributor> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should add contributors to the ontology. Only URIs are accepted, e.g. ORCIDs (https://orcid.org/) or ROR (https://ror.org/) identifiers."@en ;
sh:name "Ontology contributor(s)"@en ;
sh:group ontometa4forms:FundingGroup ;
] ;
## Ontology funder
### status: developer and external review needed
sh:property [
sh:path <https://schema.org/funder> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should add funders of the ontology. Only URIs are accepted, e.g. RORs (https://ror.org/), Crossref Funder Registry IDs (https://www.crossref.org/services/funder-registry/) or comparable identifiers."@en ;
sh:name "Ontology funder"@en ;
sh:group ontometa4forms:FundingGroup;
] ;
## Ontology funding
### status: developer and external review needed
sh:property [
sh:path <https://schema.org/funding> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should add grants from which the ontology development was funded. Only URIs are accepted, e.g. Crossref Grant ID (https://www.crossref.org/documentation/research-nexus/grants/) or comparable identifiers."@en ;
sh:name "Ontology funding (grant)"@en ;
sh:group ontometa4forms:FundingGroup;
] ;
## Ontology audience description
### status: developer and external review needed
sh:property [
sh:path doap:audience ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:description "You should add a short description about the ontology audience. Who is supposed to use the ontology?"@en ;
skos:editorialNote "see also open comment at G-Doc: https://docs.google.com/document/d/1FRmCQ7eD6PcqSQgPbqCGjki3t39ROoYozsehCPX9E0Q/edit?disco=AAAAwke7GNs" ;
sh:name "Ontology audience description"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology subject(s)
### status: developer and external review needed
sh:property [
sh:path dcterms:subject ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should add some subjects of the ontology. Only URIs will be accepted, e.g. identifiers of controlled vocabularies or ontologies. You can search for fitting terms on, e.g. TIB Terminology Service (https://terminology.tib.eu)."@en ;
sh:name "Ontology subject(s)"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup
] ;
## Ontology annotation language(s)
### status: developer and external review needed
### add a list to make easier for forms
sh:property [
sh:path <https://schema.org/inLanguage> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
# sh:pattern "(^http://id.loc.gov/vocabulary/iso639-2/[a-z]{3}$|^https://id.loc.gov/vocabulary/iso639-2/[a-z]{3}$)" ; # for form replaced by list
sh:in (
<http://id.loc.gov/vocabulary/iso639-2/ara>
<http://id.loc.gov/vocabulary/iso639-2/ben>
<http://id.loc.gov/vocabulary/iso639-2/zbl>
<http://id.loc.gov/vocabulary/iso639-2/zho>
<http://id.loc.gov/vocabulary/iso639-2/cze>
<http://id.loc.gov/vocabulary/iso639-2/dan>
<http://id.loc.gov/vocabulary/iso639-2/nld>
<http://id.loc.gov/vocabulary/iso639-2/eng>
<http://id.loc.gov/vocabulary/iso639-2/fin>
<http://id.loc.gov/vocabulary/iso639-2/fra>
<http://id.loc.gov/vocabulary/iso639-2/ger>
<http://id.loc.gov/vocabulary/iso639-2/hin>
<http://id.loc.gov/vocabulary/iso639-2/ind>
<http://id.loc.gov/vocabulary/iso639-2/jpn>
<http://id.loc.gov/vocabulary/iso639-2/tlh>
<http://id.loc.gov/vocabulary/iso639-2/zxx>
<http://id.loc.gov/vocabulary/iso639-2/nor>
<http://id.loc.gov/vocabulary/iso639-2/pol>
<http://id.loc.gov/vocabulary/iso639-2/por>
<http://id.loc.gov/vocabulary/iso639-2/rus>
<http://id.loc.gov/vocabulary/iso639-2/spa>
<http://id.loc.gov/vocabulary/iso639-2/swe>
<http://id.loc.gov/vocabulary/iso639-2/mis>
<http://id.loc.gov/vocabulary/iso639-2/ukr>
<http://id.loc.gov/vocabulary/iso639-2/und>
<http://id.loc.gov/vocabulary/iso639-2/urd>
<http://id.loc.gov/vocabulary/iso639-2/tur>
);
sh:description "You should add the ontology annotation languages."@en ;
sh:name "Ontology annotation language(s)"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Applied logical framework
### status: developer and external review needed
### replace contraints by list of allowed values?
sh:property [
sh:path <https://w3id.org/mod#hasFormalityLevel>;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:maxCount 1 ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:description "You should clarify which logical framework is applied by the ontology, e.g. \"SKOS\", \"OWL2, EL profile\"."@en ;
sh:name "Applied logical framework description"@en ;
sh:group ontometa4forms:FormalizationMetadataGroup ;
] ;
## Ontology serialization/ file format
### status: developer and external review needed
sh:property [
sh:path <https://w3id.org/mod#hasSyntax> ;
sh:severity sh:Info ;
sh:group ontometa4forms:FormalizationMetadataGroup ;
#sh:minCount 1 ;
sh:maxCount 1;
sh:in (
<http://www.w3.org/ns/formats/RDF_XML>
<http://www.w3.org/ns/formats/Turtle>
<https://www.iana.org/assignments/media-types/application/rdf+xml>
<https://www.iana.org/assignments/media-types/text/turtle>
);
sh:nodeKind sh:IRI ;
sh:description "You should add the ontology serialization/ file format. Only one value is allowed that should fit the serialization of the ontology file for which these metadata are produced."@en ; # the message makes sense in the metadata form generators, but not for creating ontology files in different serializations that re-use metadata of a specific serialization
sh:name "Ontology serialization/ file format"@en ;
] ;
## Ontology status
### status: developer and external review needed
### for later: dedicated ontology_status property missing - suggest to OBO? if available: use instead of bibo:status
sh:property [
sh:path <http://purl.org/ontology/bibo/status> ;
sh:severity sh:Info ;
sh:maxCount 1 ;
sh:in ("active" "inactive" "orphaned" "obsolete"); # alternative 1 > nice dropdowns in forms, can the items be language tagged?
#sh:minCount 1 ;
#sh:datatype rdf:langString ; # alternative 2 properly language tagged
#sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern # alternative 2 properly language tagged
sh:description "You should declare the ontology maintenance status."@en ;
sh:name "Ontology status"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
## Ontology code repository
### status: developer and external review needed
sh:property [
sh:path <http://usefulinc.com/ns/doap#repository>;
sh:severity sh:Info ;
#sh:minCount 1;
sh:maxCount 1;
sh:nodeKind sh:IRI;
sh:description "You should provide the link to the ontology code repository."@en ;
sh:name "Ontology code repository"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
## Ontology distributions/ products
### status: developer and external review needed
sh:property [
sh:path <http://www.w3.org/ns/dcat#distribution>;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should provide links to alternative serializations of the ontology. The links provided should be stable and resolvable."@en ;
sh:name "Ontology distributions/ products"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
## Application example
### status: developer and external review needed
sh:property [
sh:path <https://vocab.org/vann/example> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should provide a link to an application example of the ontology. This can be a service or some other kind of demonstration."@en ;
sh:name "Application example"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
## Related resource(s)
### status: developer and external review needed
sh:property [
sh:path dcterms:references ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should provide links to related resources of the ontology, e.g. publications, alignments and mappings, etc.."@en ;
sh:name "Related resource(s)"@en ;
sh:group ontometa4forms:RelatedResources ;
] ;
## Citation suggestion
### status: developer and external review needed
sh:property [
sh:path dcterms:bibliographicCitation ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:description "You should provide a citation suggestion for the ontology. The suggestion should include ontology creators, publication year, title, version information, versionIRI and the repository URI."@en ;
sh:name "Citation suggestion"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Ontology sources (derived from)
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/pav/derivedFrom> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should provide version IRIs of ontologies the current ontology has been derived from. These URIs should be stable and resolvable."@en ;
sh:name "Ontology sources (derived from)"@en ;
sh:group ontometa4forms:RelatedResources ;
];
## Ontology root classes
### status: developer and external review needed
sh:property [
sh:path <http://purl.obolibrary.org/obo/IAO_0000700> ;
sh:severity sh:Info ;
#sh:minCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You should name the preferred root classes, if the ontology has any. These can be used on tree visualizations of the class hierarchy of the ontology on services like Ontology Lookup Service (OLS) from EMBL-EBI."@en ;
sh:name "Ontology root classes"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
# OPTIONAL METADATA
### status: developer and external review needed
## Ontology description
### status: developer and external review needed
sh:property [
sh:path schema:description;
sh:severity sh:Info ;
sh:nodeKind sh:Literal;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:uniqueLang true ;
sh:description "You can provide a longer description about the ontology in addition to its abstract. Only one description per language is accepted."@en ;
sh:name "Ontology description"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Alternative ontology title
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/alternative>;
sh:severity sh:Info ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:description "You can provide alternative titles of the ontology. You can provide more than one alternative title in each language."@en;
sh:name "Alternative ontology title"@en;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Alternative ontology prefix/ acronym
### status: developer and external review needed
sh:property [
sh:path <http://identifiers.org/idot/alternatePrefix> ;
sh:severity sh:Info ;
sh:datatype xsd:string ;
sh:description "You can provide an alternative ontology prefix. It should not contain hyphens."@en ;
sh:name "Alternative ontology prefix/ acronym"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Related version/ version history
### status: see below
### Prior ontology version
### status: developer and external review needed
sh:property [
sh:path <http://www.w3.org/2002/07/owl#priorVersion> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description """You can provide a link to the preceding version of the ontology if there is any. The URI should be a stable and resolvable versionIRI."""@en ;
sh:name "Prior ontology version"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
### Related ontology version
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/hasVersion> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide links to related versions of the ontology if there are any. The URI should be a stable and resolvable versionIRI."@en ;
sh:name "Related ontology version"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
### Compatible ontology version
### status: developer and external review needed
sh:property [
sh:path <http://www.w3.org/2002/07/owl#backwardCompatibleWith> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide links to compatible versions of the ontology. The URI should be a stable and resolvable versionIRI."@en ;
sh:name "Compatible ontology version"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
### Incompatible ontology version
### status: developer and external review needed
sh:property [
sh:path <http://www.w3.org/2002/07/owl#incompatibleWith> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide links to incompatible versions of the ontology if applicable. The URI should be a stable and resolvable versionIRI."@en ;
sh:name "Incompatible ontology version"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
## Social media
### status: intentionally no shape
## KOS type
### status: developer and external review needed
sh:property [
sh:path dcterms:type ;
sh:severity sh:Info ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:group ontometa4forms:FormalizationMetadataGroup ;
sh:in (
<http://w3id.org/nkos/nkostype#authority_file>
<http://w3id.org/nkos/nkostype#categorization_schema>
<http://w3id.org/nkos/nkostype#classification_schema>
<http://w3id.org/nkos/nkostype#dictionary>
<http://w3id.org/nkos/nkostype#gazetteer>
<http://w3id.org/nkos/nkostype#glossary>
<http://w3id.org/nkos/nkostype#list>
<http://w3id.org/nkos/nkostype#name_authority_list>
<http://w3id.org/nkos/nkostype#ontology>
<http://w3id.org/nkos/nkostype#pick_list>
<http://w3id.org/nkos/nkostype#semantic_network>
<http://w3id.org/nkos/nkostype#subject_heading_scheme>
<http://w3id.org/nkos/nkostype#synonym_ring>
<http://w3id.org/nkos/nkostype#taxonomy>
<http://w3id.org/nkos/nkostype#terminology>
<http://w3id.org/nkos/nkostype#thesaurus>
) ;
sh:description "You can declare the KOS-type from the NKOS type vocabulary."@en ;
sh:name "KOS type"@en ;
] ;
## Example ontology identifier
### status: developer and external review needed
sh:property [
sh:path <http://identifiers.org/idot/exampleIdentifier> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can name one example identifier of the ontology, e.g. the identifier of one of its classes."@en ;
sh:name "Example ontology identifier"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology identifier pattern
### status: developer and external review needed
sh:property [
sh:path <http://identifiers.org/idot/identifierPattern> ;
sh:severity sh:Info ;
sh:datatype xsd:string ;
sh:maxCount 2 ; # 2 because when using camel case for classes and properties, majusclues are usually used for classes, minuscules for properties, so two patterns may be valid
sh:description "Youd can add an identifier pattern that demonstrates how idetifiers of the ontology classes, properties and individuals should be built."@en ;
sh:name "Ontology identifier pattern"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology homepage
### status: developer and external review needed
sh:property [
sh:path <http://xmlns.com/foaf/0.1/homepage>;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:maxCount 1 ;
sh:description "You can provide the link of the ontology homepage."@en ;
sh:name "Ontology homepage"@en ;
sh:group ontometa4forms:RelatedResources;
] ;
## Ontology publisher
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/publisher> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:xone (
# pattern sources: Wikidata entries of the identifier types
[sh:pattern "https://ror.org/([a-z0-9]{9})" ; ]
[sh:pattern "https://isni.org/isni/[0]{4}[0-9]{4}[0-9]{4}[0-9]{3}[0-9X]" ;]
[sh:pattern "https://d-nb.info/gnd/(|(1[012]?[0-9]{7}[0-9X]|[47][0-9]{6}-[0-9]|[1-9][0-9]{0,7}-[0-9X]|3[0-9]{7}[0-9X]))$" ;]
) ;
sh:description "You can list the ontology publisher if any. Only URIs from the ROR, ISNI or GND namespace are accepted."@en ;
sh:name "Ontology publisher"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
## Ontology comments
### status: developer and external review needed
sh:property [
sh:path rdfs:comment ;
sh:severity sh:Info ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:description "You can provide comments about the ontology."@en ;
sh:name "Ontology comments"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Example ontology class
### status: developer and external review needed
sh:property [
sh:path <http://rdfs.org/ns/void#exampleResource> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide the identifiers of example classes of the ontology."@en ;
sh:name "Example ontology class"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology mailing list
### status: developer and external review needed
sh:property [
sh:path <http://usefulinc.com/ns/doap#mailing-list> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:maxCount 1 ;
sh:description "You can add the ontology mailing list if available."@en ;
sh:name "Ontology mailing list"@en ;
sh:group ontometa4forms:ContactGroup ;
];
## Ontology logo/ depiction/ related visualizations
### status: developer and external review needed
### needs to be split for forms (and validation?)
sh:property [
sh:path <http://xmlns.com/foaf/0.1/logo> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can add links to images related to the ontology, e.g. diagrams or schemas visualizing the ontology classes and relations."@en ;
sh:name "Ontology logo/ depiction/ related visualizations"@en ;
sh:group ontometa4forms:RelatedResources ;
];
## Alternative identifiers of the ontology
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/identifier> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide alternative identifiers of the ontology, e.g. a DOI, a Wikidata entry, or comparable identifiers."@en ;
sh:name "Related identifiers"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
];
## Development environment
#### status: intentionally no shape
## Alignments/ mappings
### status: developer and external review needed
### Aligned resources
### status: developer and external review needed
sh:property [
sh:path <https://w3id.org/mod#hasEquivalencesWith> ;
sh:severity sh:Info ;
sh:nodeKind sh:IRI ;
sh:description "You can provide identifiers of aligned ontologies or resources."@en ;
sh:name "Aligned resources"@en ;
sh:group ontometa4forms:AlignmentsGroup ;
];
### Alignment files/ Mapping files
### status: see shape "Related resources"
## Competency Questions
### status: developer and external review needed
### mit Marc besprechen, ob man für den Form-generator beides zulassen kann
sh:property [
sh:path <https://w3id.org/mod#competencyQuestion> ;
sh:severity sh:Info ;
# sh:xone (
# [
sh:nodeKind sh:IRI ; # inconsistent with ontometa:
# ]
# [sh:datatype rdf:langString ; sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
# ] );
sh:description "You can provide the link to some competency questions for the ontology."@en ;
sh:name "Competency questions"@en ;
sh:group ontometa4forms:RelatedResources ;
];
## Applied methodology
### status: intentionally no shape
## Preferred ontology namespace
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/vocab/vann/preferredNamespaceUri> ;
sh:severity sh:Info ;
sh:maxCount 1 ;
sh:nodeKind sh:IRI ;
sh:description "You can declare the preferred namespace URI of the ontology."@en ;
sh:name "Preferred ontology namespace"@en ;
sh:group ontometa4forms:IntrinsicGroup ;
] ;
## Ontology issue date
### status: developer and external review needed
sh:property [
sh:path <http://purl.org/dc/terms/issued> ;
sh:severity sh:Info ;
sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:description "You can provide the date when the ontology was issued. The value should use xsd:dateTime format, e.g. 2024-11-28T11:11:12"@en ;
sh:name "Ontology issue date"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
### Ontology modification date
### status: developer and external review needed
sh:property [
sh:path dcterms:modified;
sh:severity sh:Info ;
sh:datatype xsd:dateTime ;
sh:maxCount 1;
sh:description "You can provide the last modification date of the ontology in xsd:dateTime format, e.g. 2024-11-28T08:12:22"@en ;
sh:name "Ontology modification date"@en ;
sh:group ontometa4forms:BibliographicMetadataGroup ;
] ;
### Ontology version information
### status: developer and external review needed
sh:property [
sh:path owl:versionInfo ;
sh:severity sh:Info ;
sh:maxCount 1 ;
sh:datatype xsd:string ; # not consistent with ontometa:
sh:description "You can provide some textual information about the ontology version, e.g. a semantic versioning number as 2.0.1 or a date in xsd:date or xsd:dateTime format, e.g. 2024-11-26T18:00:01."@en ;
sh:name "Ontology version information"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
### Ontology version notes
### status: developer and external review needed
sh:property [
sh:path adms:versionNotes ;
sh:severity sh:Info ;
sh:nodeKind sh:Literal ;
sh:datatype rdf:langString ;
sh:languageIn ( "en" "de" "ar" "bn" "cs" "da" "es" "fi" "fr" "hi" "it" "ja" "nl" "no" "pl" "ru" "sv" "tr" "uk" "zh") ; # liste verlängern
sh:uniqueLang true ;
sh:description "You can add version notes, e.g. descriptions of the changes between this and the preceding version of the ontology."@en ;
sh:name "Ontology version notes"@en ;
sh:group ontometa4forms:VersionGroup ;
] ;
# End of shape
sh:closed false ;
sh:ignoredProperties ( rdf:type owl:topDataProperty owl:topObjectProperty ) .
ontometa4forms:BibliographicMetadataGroup a sh:PropertyGroup ;
rdfs:label "Bibliographic metadata" ;
sh:order 1.
ontometa4forms:DateMetadataGroup a sh:PropertyGroup ;
rdfs:label "Dates" ;
sh:order 2.
ontometa4forms:IntrinsicGroup a sh:PropertyGroup ;
rdfs:label "Intrinsic ontology data" ;
sh:order 3.
ontometa4forms:FormalizationMetadataGroup a sh:PropertyGroup ;
rdfs:label "Formalization info" ;
sh:order 4.
ontometa4forms:RelatedResources a sh:PropertyGroup ;
rdfs:label "Related resources" ;
sh:order 5.
ontometa4forms:AlignmentsGroup a sh:PropertyGroup ;
rdfs:label "Mappings and alignments" ;
sh:order 6.
ontometa4forms:FundingGroup a sh:PropertyGroup ;
rdfs:label "Funders and acknowledgements" ;
sh:order 7.
ontometa4forms:VersionGroup a sh:PropertyGroup ;
rdfs:label "Version information" ;
sh:order 8.
ontometa4forms:ContactGroup a sh:PropertyGroup ;
rdfs:label "Contact information" ;
sh:order 9.
# Could be used to add labels for list items in sh:in
# <https://creativecommons.org/licenses/by-sa/4.0/deed> rdfs:label "".
# <http://opendatacommons.org/licenses/by/summary/>
# <https://opendatacommons.org/licenses/by/summary/>
# <http://opendatacommons.org/licenses/by/1-0/>
# <http://opendatacommons.org/licenses/by/1.0/>
# <https://opendatacommons.org/licenses/by/1.0/>
# <http://opendatacommons.org/licenses/pddl/1-0/>
# <http://opendatacommons.org/licenses/pddl/summary/>
# <https://opendatacommons.org/licenses/pddl/summary/>
# <http://opendatacommons.org/licenses/pddl/1.0/>
# <https://opendatacommons.org/licenses/pddl/1.0/>
# <http://opendatacommons.org/licenses/odbl/summary/>
# <https://opendatacommons.org/licenses/odbl/summary/>
# <http://opendatacommons.org/licenses/odbl/1-0/>
# <http://opendatacommons.org/licenses/odbl/1.0/>
# <https://opendatacommons.org/licenses/odbl/1.0/>
# <http://spdx.org/licenses/Unlicense.html>
# <https://spdx.org/licenses/Unlicense.html>
# <http://unlicense.org/>
# <http://creativecommons.org/publicdomain/zero/1.0/>
# <https://creativecommons.org/publicdomain/zero/1.0/>
# <http://creativecommons.org/publicdomain/zero/1.0/legalcode>
# <https://creativecommons.org/publicdomain/zero/1.0/deed>
# <http://creativecommons.org/publicdomain/zero/1.0/deed>
# <http://creativecommons.org/licenses/by/3.0/legalcode>
# <https://creativecommons.org/licenses/by/3.0/deed>
# <http://creativecommons.org/licenses/by/3.0/deed>
# <http://creativecommons.org/licenses/by/3.0/>
# <https://creativecommons.org/licenses/by/3.0/>
# <https://creativecommons.org/licenses/by/3.0/de/deed>
# <http://creativecommons.org/licenses/by/3.0/de/deed>
# <http://creativecommons.org/licenses/by/3.0/de/legalcode>
# <https://creativecommons.org/licenses/by/3.0/de/>
# <http://creativecommons.org/licenses/by/3.0/de/>
# <http://creativecommons.org/licenses/by-sa/3.0/legalcode>
# <https://creativecommons.org/licenses/by-sa/3.0/deed>
# <http://creativecommons.org/licenses/by-sa/3.0/deed>
# <http://creativecommons.org/licenses/by-sa/3.0/>
# <https://creativecommons.org/licenses/by-sa/3.0/>
# <https://creativecommons.org/licenses/by/4.0/>
# <http://creativecommons.org/licenses/by/4.0/>
# <http://creativecommons.org/licenses/by/4.0/legalcode>
# <https://creativecommons.org/licenses/by/4.0/deed>
# <https://creativecommons.org/licenses/by/4.0/deed>
# <http://creativecommons.org/licenses/by-sa/4.0/>
# <https://creativecommons.org/licenses/by-sa/4.0/>
# <http://creativecommons.org/licenses/by-sa/4.0/legalcode>
# <http://creativecommons.org/licenses/by-sa/4.0/deed>
# <https://creativecommons.org/licenses/by-sa/4.0/deed>
# Other serializations for semantic data
# tbd: not all are relevant or digestable by the TS
# for the TS (OLS3) rdf+xml, turtle and obo are confirmed
# no expected value for obo ontologies > Ontorowser mentions application/obo and text/obo, but these are specific to the service, not officially acknowledged: https://github.com/Novartis/ontobrowser/blob/master/doc/web_services.md
# <http://www.w3.org/ns/formats/JSON-LD>
# <http://www.w3.org/ns/formats/N3>
# <http://www.w3.org/ns/formats/N-Triples>
# <http://www.w3.org/ns/formats/N-Quads>
# <http://www.w3.org/ns/formats/LD_Patch>
# <http://www.w3.org/ns/formats/microdata>
# <http://www.w3.org/ns/formats/OWL_XML>
# <http://www.w3.org/ns/formats/OWL_Functional>
# <http://www.w3.org/ns/formats/OWL_Manchester>
# <http://www.w3.org/ns/formats/POWDER>
# <http://www.w3.org/ns/formats/POWDER-S>
# <http://www.w3.org/ns/formats/PROV-N>
# <http://www.w3.org/ns/formats/PROV-XML>
# <http://www.w3.org/ns/formats/RDFa>
# <http://www.w3.org/ns/formats/RDF_JSON>
# <http://www.w3.org/ns/formats/RIF_XML>
# <http://www.w3.org/ns/formats/SPARQL_Results_XML>
# <http://www.w3.org/ns/formats/SPARQL_Results_JSON>
# <http://www.w3.org/ns/formats/SPARQL_Results_CSV>
# <http://www.w3.org/ns/formats/SPARQL_Results_TSV>
# <http://www.w3.org/ns/formats/TriG>
# <https://www.iana.org/assignments/media-types/application/trig>
# <https://www.iana.org/assignments/media-types/text/n3>
# <https://www.iana.org/assignments/media-types/application/n-triples>
# <https://www.iana.org/assignments/media-types/application/n-quads>
# <https://www.iana.org/assignments/media-types/application/ld+json>
# Languages resp. Labels for list istems in sh:in
# URI code Label (English) Label (French)
<http://id.loc.gov/vocabulary/iso639-2/ara> rdfs:label "Arabic" .
<http://id.loc.gov/vocabulary/iso639-2/ben> rdfs:label "Bengali" .
<http://id.loc.gov/vocabulary/iso639-2/zbl> rdfs:label "Blissymbols | Blissymbolics" .
<http://id.loc.gov/vocabulary/iso639-2/zho> rdfs:label "Chinese" .
<http://id.loc.gov/vocabulary/iso639-2/cze> rdfs:label "Czech" .
<http://id.loc.gov/vocabulary/iso639-2/dan> rdfs:label "Danish" .
<http://id.loc.gov/vocabulary/iso639-2/nld> rdfs:label "Dutch | Flemish" .
<http://id.loc.gov/vocabulary/iso639-2/eng> rdfs:label "English" .
<http://id.loc.gov/vocabulary/iso639-2/fin> rdfs:label "Finnish" .
<http://id.loc.gov/vocabulary/iso639-2/fra> rdfs:label "French" .
<http://id.loc.gov/vocabulary/iso639-2/ger> rdfs:label "German" .
<http://id.loc.gov/vocabulary/iso639-2/hin> rdfs:label "Hindi" .
<http://id.loc.gov/vocabulary/iso639-2/ind> rdfs:label "Indonesian" .
<http://id.loc.gov/vocabulary/iso639-2/jpn> rdfs:label "Japanese" .
<http://id.loc.gov/vocabulary/iso639-2/tlh> rdfs:label "Klingon | tlhIngan-Hol" .
<http://id.loc.gov/vocabulary/iso639-2/zxx> rdfs:label "No linguistic content | Not applicable" .
<http://id.loc.gov/vocabulary/iso639-2/nor> rdfs:label "Norwegian" .
<http://id.loc.gov/vocabulary/iso639-2/pol> rdfs:label "Polish" .
<http://id.loc.gov/vocabulary/iso639-2/por> rdfs:label "Portuguese" .
<http://id.loc.gov/vocabulary/iso639-2/rus> rdfs:label "Russian" .
<http://id.loc.gov/vocabulary/iso639-2/spa> rdfs:label "Spanish | Castilian" .
<http://id.loc.gov/vocabulary/iso639-2/swe> rdfs:label "Swedish" .
<http://id.loc.gov/vocabulary/iso639-2/mis> rdfs:label "Uncoded languages" .
<http://id.loc.gov/vocabulary/iso639-2/ukr> rdfs:label "Ukrainian".
<http://id.loc.gov/vocabulary/iso639-2/und> rdfs:label "Undetermined" .
<http://id.loc.gov/vocabulary/iso639-2/urd> rdfs:label "Urdu".
<http://id.loc.gov/vocabulary/iso639-2/tur> rdfs:label "Turkish" .
# http://id.loc.gov/vocabulary/iso639-2/aar aar Afar afar
# http://id.loc.gov/vocabulary/iso639-2/abk abk Abkhazian abkhaze
# http://id.loc.gov/vocabulary/iso639-2/ace ace Achinese aceh
# http://id.loc.gov/vocabulary/iso639-2/ach ach Acoli acoli
# http://id.loc.gov/vocabulary/iso639-2/ada ada Adangme adangme
# http://id.loc.gov/vocabulary/iso639-2/ady ady Adyghe | Adygei adyghé
# http://id.loc.gov/vocabulary/iso639-2/afa afa Afro-Asiatic languages afro-asiatiques, langues
# http://id.loc.gov/vocabulary/iso639-2/afh afh Afrihili afrihili
# http://id.loc.gov/vocabulary/iso639-2/afr afr Afrikaans afrikaans
# http://id.loc.gov/vocabulary/iso639-2/ain ain Ainu aïnou
# http://id.loc.gov/vocabulary/iso639-2/aka aka Akan akan
# http://id.loc.gov/vocabulary/iso639-2/akk akk Akkadian akkadien
# http://id.loc.gov/vocabulary/iso639-2/alb alb Albanian albanais
# http://id.loc.gov/vocabulary/iso639-2/ale ale Aleut aléoute
# http://id.loc.gov/vocabulary/iso639-2/alg alg Algonquian languages algonquines, langues
# http://id.loc.gov/vocabulary/iso639-2/alt alt Southern Altai altai du Sud
# http://id.loc.gov/vocabulary/iso639-2/amh amh Amharic amharique
# http://id.loc.gov/vocabulary/iso639-2/ang ang English, Old (ca.450-1100) anglo-saxon (ca.450-1100)
# http://id.loc.gov/vocabulary/iso639-2/anp anp Angika angika
# http://id.loc.gov/vocabulary/iso639-2/apa apa Apache languages apaches, langues
# http://id.loc.gov/vocabulary/iso639-2/arc arc Official Aramaic (700-300 BCE) | Imperial Aramaic (700-300 BCE) araméen d'empire (700-300 BCE)
# http://id.loc.gov/vocabulary/iso639-2/arg arg Aragonese aragonais
# http://id.loc.gov/vocabulary/iso639-2/arm arm Armenian arménien
# http://id.loc.gov/vocabulary/iso639-2/arn arn Mapudungun | Mapuche mapudungun | mapuche | mapuce
# http://id.loc.gov/vocabulary/iso639-2/arp arp Arapaho arapaho
# http://id.loc.gov/vocabulary/iso639-2/art art Artificial languages artificielles, langues
# http://id.loc.gov/vocabulary/iso639-2/arw arw Arawak arawak
# http://id.loc.gov/vocabulary/iso639-2/asm asm Assamese assamais
# http://id.loc.gov/vocabulary/iso639-2/ast ast Asturian | Bable | Leonese | Asturleonese asturien | bable | léonais | asturoléonais
# http://id.loc.gov/vocabulary/iso639-2/ath ath Athapascan languages athapascanes, langues
# http://id.loc.gov/vocabulary/iso639-2/aus aus Australian languages australiennes, langues
# http://id.loc.gov/vocabulary/iso639-2/ava ava Avaric avar
# http://id.loc.gov/vocabulary/iso639-2/ave ave Avestan avestique
# http://id.loc.gov/vocabulary/iso639-2/awa awa Awadhi awadhi