-
Notifications
You must be signed in to change notification settings - Fork 1
/
tcan.owl
3301 lines (2175 loc) · 148 KB
/
tcan.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://ontology.phyloref.org/tcan.owl#"
xml:base="http://ontology.phyloref.org/tcan.owl"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:skos="http://www.w3.org/2004/02/skos/core#"
xmlns:terms="http://purl.org/dc/terms/"
xmlns:Common="http://rs.tdwg.org/ontology/voc/Common#">
<owl:Ontology rdf:about="http://ontology.phyloref.org/tcan.owl">
<owl:versionIRI rdf:resource="http://ontology.phyloref.org/2021-03-15/tcan.owl"/>
<dc:creator>Hilmar Lapp</dc:creator>
<dc:rights>Axioms under the namespace of this ontology are released under the Creative Commons Zero 1.0 public domain waiver. Terms and axioms imported from other sources are under the licenses of the vocabularies they are defined in (see rdfs:isDefinedBy annotations).</dc:rights>
<dc:title>Ontology for Taxon Concepts And Names</dc:title>
<terms:source rdf:resource="http://openbiodiv.net/ontology"/>
<terms:source rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<terms:source rdf:resource="http://rs.tdwg.org/dwc/iri/"/>
<terms:source rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<terms:source rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept"/>
<terms:source rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Generated by ROBOT version 1.8.1 from tcan.ofn</rdfs:comment>
<rdfs:comment>The Ontology for Taxon Concepts And Names (TCAN) is an application ontology for expressing, matching, and resolving taxon concepts and their names as encountered in the wild, such as in publications, taxon mentions, clade definitions, etc. One of the key use cases for which it is being developed is for expressing and matching specifiers (in essence taxon concepts) used in clade definitions.
The TCAN ontology is a synthesis of a variety of relevant vocabularies and ontologies, including in particular the TDWG TaxonName, TaxonConcept, and DarwinCore vocabularies; the NOMEN ontology (SpeciesFileGroup); the OpenBiodiv Ontology (Pensoft); and the Comparative Data Analysis Ontology (CDAO).
One of the express design goals of TCAN is to avoid as much as possible creating new terms, whether classes or properties. Hence, there will be few if any terms here that are not already present in its source vocabularies. Instead, TCAN considers its added value in the following.
(1) Provide an ontology for its application domain that stands on its own, meaning all necessary axioms are either directly included, or are imported from locations that resolve automatically and reliably.
(2) Select subsets suitable for its application domain from each source vocabulary, and drop extraneous axioms and annotations.
(3) Apply error corrections and replace non-standard annotation properties with standard ones. Ensure there are no parse nor reasoner errors.
(4) Supplement subclass, type, class expression and other axioms to promote alignment and interoperability between the source ontologies.
(5) Ensure expressivity is at least within the OWL-DL, and ideally within the OWL-EL profile.</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/NOMEN_0000017 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000017">
<rdfs:label xml:lang="en">synonym</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000018 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000018">
<rdfs:label xml:lang="en">abbreviation</rdfs:label>
</owl:AnnotationProperty>
<!-- http://purl.org/dc/elements/1.1/creator -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
<!-- http://purl.org/dc/elements/1.1/description -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
<!-- http://purl.org/dc/elements/1.1/publisher -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/publisher"/>
<!-- http://purl.org/dc/elements/1.1/relation -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/relation"/>
<!-- http://purl.org/dc/elements/1.1/rights -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
<!-- http://purl.org/dc/elements/1.1/title -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
<!-- http://purl.org/dc/terms/issued -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
<!-- http://purl.org/dc/terms/modified -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/modified"/>
<!-- http://purl.org/dc/terms/source -->
<owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/source"/>
<!-- http://rs.tdwg.org/ontology/voc/Common#tcsEquivalence -->
<owl:AnnotationProperty rdf:about="http://rs.tdwg.org/ontology/voc/Common#tcsEquivalence"/>
<!-- http://www.w3.org/2004/02/skos/core#altLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#altLabel"/>
<!-- http://www.w3.org/2004/02/skos/core#prefLabel -->
<owl:AnnotationProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://openbiodiv.net/nameAccordingTo -->
<owl:ObjectProperty rdf:about="http://openbiodiv.net/nameAccordingTo">
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/iri/nameAccordingTo"/>
<rdfs:comment xml:lang="en">The reference to the source in which the specific taxonomic
concept circumscription is defined or implied - traditionally signified by
the Latin 'sensu' or 'sec.'' (from secundum, meaning 'according to').
For taxa that are relevantly circumscribed by identifications, a reference
to the keys, monographs, experts and other sources should be given. Should
only be used with IRI's</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
</owl:ObjectProperty>
<!-- http://openbiodiv.net/replacementName -->
<owl:ObjectProperty rdf:about="http://openbiodiv.net/replacementName">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
<rdfs:comment xml:lang="en">This is a uni-directional property. Its meaning
is that one Linnaean name links to a different Linnaean name via the
usage of this property, then the object name is more accurate and should be
preferred given the information that system currently holds. This property is only
defined for Linnaean names.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">has replacement name</rdfs:label>
</owl:ObjectProperty>
<!-- http://openbiodiv.net/scientificName -->
<owl:ObjectProperty rdf:about="http://openbiodiv.net/scientificName">
<rdfs:subPropertyOf rdf:resource="http://openbiodiv.net/taxonomicName"/>
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/iri/scientificName"/>
<rdfs:domain rdf:resource="http://openbiodiv.net/TaxonomicConcept"/>
<rdfs:range rdf:resource="http://openbiodiv.net/ScientificName"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">has scientific name</rdfs:label>
</owl:ObjectProperty>
<!-- http://openbiodiv.net/taxonomicConceptLabel -->
<owl:ObjectProperty rdf:about="http://openbiodiv.net/taxonomicConceptLabel">
<rdfs:subPropertyOf rdf:resource="http://openbiodiv.net/scientificName"/>
<rdfs:domain rdf:resource="http://openbiodiv.net/TaxonomicConcept"/>
<rdfs:range rdf:resource="http://openbiodiv.net/TaxonomicConceptLabel"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">has taxon concept label</rdfs:label>
</owl:ObjectProperty>
<!-- http://openbiodiv.net/taxonomicName -->
<owl:ObjectProperty rdf:about="http://openbiodiv.net/taxonomicName">
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#hasName"/>
<rdfs:domain rdf:resource="http://openbiodiv.net/TaxonomicConcept"/>
<rdfs:range rdf:resource="http://openbiodiv.net/TaxonomicName"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">has taxonomic name</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/dwc/iri/nameAccordingTo -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/dwc/iri/nameAccordingTo">
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#accordingTo"/>
<rdfs:comment xml:lang="en">the IRI version of dwc:nameAccordingTo</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/iri/"/>
<rdfs:label xml:lang="en">name according to</rdfs:label>
<rdfs:seeAlso rdf:resource="http://rs.tdwg.org/dwc/terms/nameAccordingTo"/>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/dwc/iri/scientificName -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/dwc/iri/scientificName">
<rdfs:subPropertyOf rdf:resource="http://openbiodiv.net/taxonomicName"/>
<rdfs:comment xml:lang="en">the IRI version of dwc:scientificName</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/iri/"/>
<rdfs:label xml:lang="en">scientific name</rdfs:label>
<rdfs:seeAlso rdf:resource="http://rs.tdwg.org/dwc/terms/scientificName"/>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonConcept#accordingTo -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonConcept#accordingTo">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#TaxonConcept"/>
<rdfs:comment>Information about the authorship of this concept which uses the Name in their
sense (i.e. secundum, sensu). Could be an institution or collection or team of individuals.
Equivalent to TCS /DataSet/TaxonConcepts/TaxonConcept/AccordingTo/AccordingToDetailed </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept"/>
<rdfs:label>according to</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonConcept#hasName -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonConcept#hasName">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#TaxonConcept"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:comment>The TaxonName for this concept. Equivalent to TCS
/DataSet/TaxonConcepts/TaxonConcept/Name </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept"/>
<rdfs:label>Has Name</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#basionymFor -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#basionymFor">
<owl:inverseOf rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#hasBasionym"/>
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<Common:tcsEquivalence>No equivalent in TCS but is inverse of ScientificName/Basionym </Common:tcsEquivalence>
<rdfs:comment> Relationship between a basionym and a new combination of the name. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Basionym For</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#hasBasionym -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#hasBasionym">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<Common:tcsEquivalence>ScientificName/Basionym</Common:tcsEquivalence>
<rdfs:comment> The basionym of this name if it is a new combination. The current name is a recombination (comb. nov.) of the name pointed to and the name pointed to is not, itself, a
recombination.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Has Basionym</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#nomenclaturalCode -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#nomenclaturalCode">
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalCodeTerm"/>
<Common:tcsEquivalence>ScientificName@nomenclaturalCode</Common:tcsEquivalence>
<rdfs:comment>The nomenclatural code that governs a taxon name or rank. By definition all taxon names are governed by one of the codes of nomenclature. These include ICBN, ICZN, ICNCP and others.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Nomenclatural Code</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#rank -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#rank">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRankTerm"/>
<dc:relation rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#rankString"/>
<Common:tcsEquivalence>ScientificName/Rank/@code</Common:tcsEquivalence>
<rdfs:comment>The taxonomic rank of this name. This is a link to an instance of TaxonomicRank. Compare with the rankString property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Rank</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#typeName -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#typeName">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalType"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:comment>The name that is the type. TaxonNames at ranks above species level are typified by the NAME of a lower taxon. Ultimately, by following the chain of type names, all names resolve to
a type species and so a type specimen. This property is mutually exclusive with typeSpecimen. A name can't have both. Equivalent to TCS ScientificName/Typification/TypeName. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Type Name</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#typeOfType -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#typeOfType">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalType"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalTypeTypeTerm"/>
<rdfs:comment>The kind of type this specimen is e.g. paratype, isotype, holotype etc. Types can be of different kinds. Equivalent to TCS
ScientificName/Typification/TypeVouchers/TypeVoucher@typeOfType </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Type of Type</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#typeSpecimen -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#typeSpecimen">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalType"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/Specimen#Specimen"/>
<rdfs:comment>The specimen that is the type. TaxonNames at ranks of family and below are typified by a specimen. This property is mutually exclusive with typeName. Equivalent to TCS
ScientificName/Typification/TypeVouchers/TypeVoucher </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Type Specimen</rdfs:label>
</owl:ObjectProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#typifiedBy -->
<owl:ObjectProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#typifiedBy">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#NomenclaturalType"/>
<dc:relation rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#typificationString"/>
<Common:tcsEquivalence>ScientificName/Typification</Common:tcsEquivalence>
<rdfs:comment>A NomenclaturalType that typifies this name. An instance of NomenclaturalType that contains a type specimen or name for this name. See also note with NomenclaturalType class. See
also the typificationString property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Typified By</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://rs.tdwg.org/dwc/terms/accordingTo -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/dwc/terms/accordingTo">
<rdfs:comment xml:lang="en">Abstract term to attribute information to a source.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<rdfs:label xml:lang="en">According To</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/dwc/terms/nameAccordingTo -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/dwc/terms/nameAccordingTo">
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/accordingTo"/>
<dc:description xml:lang="en">Example: "McCranie, J. R., D. B. Wake, and L. D. Wilson. 1996. The taxonomic status of Bolitoglossa schmidti, with comments on the biology of the Mesoamerican salamander Bolitoglossa dofleini (Caudata: Plethodontidae). Carib. J. Sci. 32:395-398.", "Werner Greuter 2008", "Lilljeborg 1861, Upsala Univ. Arsskrift, Math. Naturvet., pp. 4, 5"</dc:description>
<rdfs:comment xml:lang="en">The reference to the source in which the specific taxon concept circumscription is defined or implied - traditionally signified by the Latin "sensu" or "sec." (from secundum, meaning "according to"). For taxa that result from identifications, a reference to the keys, monographs, experts and other sources should be given.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<rdfs:label xml:lang="en">Name According To</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/dwc/terms/scientificName -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/dwc/terms/scientificName">
<dc:description xml:lang="en">Examples: "Coleoptera" (order), "Vespertilionidae" (family), "Manis" (genus), "Ctenomys sociabilis" (genus + specificEpithet), "Ambystoma tigrinum diaboli" (genus + specificEpithet + infraspecificEpithet), "Roptrocerus typographi (Györfi, 1952)" (genus + specificEpithet + scientificNameAuthorship), "Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)</dc:description>
<rdfs:comment xml:lang="en">The full scientific name, with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined. This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/dwc/terms/"/>
<rdfs:label xml:lang="en">Has Scientific Name</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#authorship -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#authorship">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalAuthorship/Simple</Common:tcsEquivalence>
<rdfs:comment> The full author string used for this name. The full code-appropriate author team string for this name at this rank. Use this property for all names including both original
combinations and new combinations of bi and trinomial names (where some of the authors may be in brackets). If the TaxonName instance contains any details about authorship a representation of
them should be included in this property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Authorship</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#cultivarNameGroup -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#cultivarNameGroup">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/CultivarNameGroup</Common:tcsEquivalence>
<rdfs:comment> The cultivar or related name governed by ICNCP. The name of the Cultivar, Cultivar Group, grex, convar or graft chimera under the International Code for the Nomenclature of
Cultivated Plants. Only include here the string of the name. i.e. omit the single quotes around cultivar names, the word Group that denotes cultivar group and the + sign used in chimeras.
These symbols can be added in later on the basis of the rank of the name. For example the use of the word 'Group' is language dependent.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Cultivar Name or Cultivar Group Name</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#genusPart -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#genusPart">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/Genus</Common:tcsEquivalence>
<rdfs:comment> The genus part of a bi or trinomial name. The name of the genus for names below the rank of genus. This property should not be used for names at and above the rank of genus. For
names at and above genus rank the uninomial property should be used.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Genus Part</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#infragenericEpithet -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#infragenericEpithet">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/InfragenericEpithet</Common:tcsEquivalence>
<rdfs:comment> The infrageneric part of a binomial name at ranks above species but below genus. Names at ranks between species and genus are composed of two words; the genus and this
infrageneric epithet. This property should therefore always be accompanied by the genusPart property. If the infragenericEpithet property is present the uninomial, infraspecificEpithet,
specificEpithet and subspecificEpithet properties should be absent.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Infrageneric Epithet</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#infraspecificEpithet -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#infraspecificEpithet">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/InfraspecificEpithet</Common:tcsEquivalence>
<rdfs:comment> The infraspecific epithet part of a trinomial name below the rank of species. Names at ranks below species are composed of three words; the genus epithet, the specific epithet and
an infraspecific epithet. This property should therefore always be accompanied by the genusPart property and a specificEpithet property. If the specificEpithet property is present the
uninomial and infragenusPart properties should be absent. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Infraspecific Epithet</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#nameComplete -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#nameComplete">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/Simple</Common:tcsEquivalence>
<rdfs:comment> The complete uninomial, binomial or trinomial name without any authority or year components. Every TaxonName should have a DublinCore:title property that contains the complete
name string including authors and year (where appropriate).</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Name Complete</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#rankString -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#rankString">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:relation rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#rank"/>
<Common:tcsEquivalence>ScientificName/Rank</Common:tcsEquivalence>
<rdfs:comment>The taxonomic rank of this name as a string. A string representation of the rank of this name. It is highly recommended that the rank property be used along with this one unless
the correct rank is not available in the rank vocabulary.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Rank String</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#specificEpithet -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#specificEpithet">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/SpecificEpithet</Common:tcsEquivalence>
<rdfs:comment> The specific epithet part of a binomial or trinomial name at or below the rank of species. Names at ranks of species and below are composed of two or three words; the genus
epithet, the specific epithet and possibly an infraspecific epithet. This property should therefore always be accompanied by the genusPart property. If the specificEpithet property is present
the uninomial and infragenericEpithet properties should be absent.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Specific Epithet</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#typificationString -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#typificationString">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<dc:relation rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#typifiedBy"/>
<Common:tcsEquivalence>ScientificName/Typification/Simple</Common:tcsEquivalence>
<rdfs:comment>A string representing the typification of this name. See also the typifiedBy property.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Typified String</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#uninomial -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#uninomial">
<rdfs:subPropertyOf rdf:resource="http://rs.tdwg.org/dwc/terms/scientificName"/>
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/CanonicalName/Uninomial</Common:tcsEquivalence>
<rdfs:comment> Family, genus, infrafamilial, suprafamilial or other uninomial name. This property should be used for any 'single word' names. These include Family, genus, infrafamilial, and
suprafamilial names. Note that this property should be used for Genus names. The genus field should only be used for names below rank of genus. </rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Uninomial</rdfs:label>
</owl:DatatypeProperty>
<!-- http://rs.tdwg.org/ontology/voc/TaxonName#year -->
<owl:DatatypeProperty rdf:about="http://rs.tdwg.org/ontology/voc/TaxonName#year">
<rdfs:domain rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<Common:tcsEquivalence>ScientificName/Year</Common:tcsEquivalence>
<rdfs:comment> The year of publication of this name. This is the year this name was published. If it is a new combination of the name then it is the year of publication of the combination not
the basionym. It should be the same as the year given in the publishedIn property. In zoology the place of first publication of a new combination is rarely given as it is not considered a
nomenclatural act unless it leads to homonymy. For new combinations of names in zoology it may therefore be inappropriate to supply this property or the publishedIn, combintationAuthorship or
combintationAuthorTeam properties. The main role of this property is to aid disambiguation where author strings may be confusing. This property is not restricted to a date type as feedback
from TCS suggested that this restriction was inappropriate.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName"/>
<rdfs:label>Publication Year</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://openbiodiv.net/ScientificName -->
<owl:Class rdf:about="http://openbiodiv.net/ScientificName">
<owl:equivalentClass rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000036"/>
<rdfs:subClassOf rdf:resource="http://openbiodiv.net/TaxonomicName"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">Scientific Name</rdfs:label>
</owl:Class>
<!-- http://openbiodiv.net/TaxonomicConcept -->
<owl:Class rdf:about="http://openbiodiv.net/TaxonomicConcept">
<owl:equivalentClass rdf:resource="http://rs.tdwg.org/dwc/terms/Taxon"/>
<owl:equivalentClass rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#TaxonConcept"/>
<rdfs:comment xml:lang="en">A taxonomic concept in the sense of Berendsohn</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://openbiodiv.net/TaxonomicConcept"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2002/07/owl#equivalentClass"/>
<owl:annotatedTarget rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonConcept#TaxonConcept"/>
<rdfs:isDefinedBy rdf:resource="http://ontology.phyloref.org/tcan.owl"/>
</owl:Axiom>
<!-- http://openbiodiv.net/TaxonomicConceptLabel -->
<owl:Class rdf:about="http://openbiodiv.net/TaxonomicConceptLabel">
<rdfs:comment xml:lang="en">A taxon concept label is a taxonomic name
usage accompanied by an additional part, consisting of 'sec.' + an identifier
or a literature reference of a work containing the expression of a taxon concept
(treatment).</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">Taxon Concept Label</rdfs:label>
</owl:Class>
<!-- http://openbiodiv.net/TaxonomicName -->
<owl:Class rdf:about="http://openbiodiv.net/TaxonomicName">
<owl:equivalentClass rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000030"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<skos:altLabel xml:lang="en">Biological Name</skos:altLabel>
<skos:prefLabel xml:lang="en">Taxonomic Name</skos:prefLabel>
</owl:Class>
<!-- http://openbiodiv.net/VernacularName -->
<owl:Class rdf:about="http://openbiodiv.net/VernacularName">
<owl:equivalentClass rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000037"/>
<rdfs:subClassOf rdf:resource="http://openbiodiv.net/TaxonomicName"/>
<rdfs:isDefinedBy rdf:resource="http://openbiodiv.net/openbiodiv-ontology"/>
<rdfs:label xml:lang="en">Vernacular Name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/CDAO_0000138 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CDAO_0000138">
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/cdao.owl"/>
<rdfs:label xml:lang="en">TU</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000003 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000003">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000317"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICZN nonorder</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000005 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000005">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000384"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN autonym</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000006 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000006">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000339"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN subdivision of species and infraspecies</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000007 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000007">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000383"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000008"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN validly published name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000008 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000008">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000383"/>
<rdfs:comment>invalidum</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN invalidly published name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000009 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000009">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000384"/>
<obo:NOMEN_0000018>nom. cons.</obo:NOMEN_0000018>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN conserved name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000010 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000010">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000384"/>
<owl:disjointWith rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000011"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN correct name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000011 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000011">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000384"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN incorrect name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000014 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000014">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000386"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN incorrect original spelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000015 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000015">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000386"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN superfluous</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000016 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000016">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000386"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN homonym</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000019 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000019">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000008"/>
<obo:NOMEN_0000018>pro syn.</obo:NOMEN_0000018>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN as synonym</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000020 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000020">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000384"/>
<obo:NOMEN_0000018>orth. cons.</obo:NOMEN_0000018>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN conserved spelling</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000026 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000026">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000168"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICZN excluded</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000027 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000027">
<rdfs:subClassOf rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRankTerm"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">nomenclatural rank</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000029 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000029">
<rdfs:comment>The name that identifies a thing.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000030 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000030">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000029"/>
<rdfs:comment>The name that identifies a biological thing.</rdfs:comment>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">biological name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000033 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000033">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000027"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">above nomenclatural codes</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000034">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000033"/>
<obo:NOMEN_0000017>empire</obo:NOMEN_0000017>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">domain</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000036 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000036">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000030"/>
<rdfs:subClassOf rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">scientific name</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000036"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#TaxonName"/>
<rdfs:isDefinedBy rdf:resource="http://ontology.phyloref.org/tcan.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000037 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000037">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000030"/>
<obo:NOMEN_0000017>common name</obo:NOMEN_0000017>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">vernacular name</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000043 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000043">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000226"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICZN homonym</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000055 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000055">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000107"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICZN fossil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000056 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000056">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000109"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN hybrid</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000057 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000057">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000109"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICN fossil</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000062 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000062">
<rdfs:subClassOf>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000027"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#nomenclaturalCode"/>
<owl:hasValue rdf:resource="http://ontology.phyloref.org/tcan.owl#ICNP"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</rdfs:subClassOf>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICNP nomenclatural rank</rdfs:label>
</owl:Class>
<owl:Axiom>
<owl:annotatedSource rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000062"/>
<owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subClassOf"/>
<owl:annotatedTarget>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000027"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://rs.tdwg.org/ontology/voc/TaxonName#nomenclaturalCode"/>
<owl:hasValue rdf:resource="http://ontology.phyloref.org/tcan.owl#ICNP"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:annotatedTarget>
<rdfs:isDefinedBy rdf:resource="http://ontology.phyloref.org/tcan.owl"/>
</owl:Axiom>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000063 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000063">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000062"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICNP above family-group</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000064 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000064">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000062"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICNP family-group</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000065 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/NOMEN_0000065">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/NOMEN_0000062"/>
<rdfs:isDefinedBy rdf:resource="http://purl.obolibrary.org/obo/NOMEN"/>
<rdfs:label xml:lang="en">ICNP genus-group</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/NOMEN_0000066 -->