-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgdCommon.ttl
More file actions
2270 lines (1769 loc) · 106 KB
/
gdCommon.ttl
File metadata and controls
2270 lines (1769 loc) · 106 KB
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
@prefix : <https://w3id.org/ad4gd/model/> .
@prefix qb: <http://purl.org/linked-data/cube#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix stat: <http://data.europa.eu/m8g/> .
@prefix schema: <https://schema.org/> .
@prefix af-inspire: <http://inspire.ec.europa.eu/schemas/af/3.0#> .
@prefix act-inspire: <http://inspire.ec.europa.eu/schemas/act-core/3.0#> .
@prefix foodie: <http://foodie-cloud.com/model/foodie#> .
@prefix saref4agri: <https://saref.etsi.org/saref4agri/> .
@prefix s4watr: <https://saref.etsi.org/saref4watr/> .
@prefix common: <http://portele.de/ont/inspire/baseInspire#> .
@prefix fiware-agrifood: <https://smartdatamodels.org/dataModel.Agrifood/> .
@prefix fiware: <https://smartdatamodels.org/> .
@prefix iso19109: <http://def.seegrid.csiro.au/isotc211/iso19109/2005/feature#> .
@prefix iso19150-2: <http://def.seegrid.csiro.au/isotc211/iso19150/-2/2012/basic#> .
@prefix iso19103: <http://def.seegrid.csiro.au/isotc211/iso19103/2005/basic#> .
@prefix iso19115-citation: <http://def.seegrid.csiro.au/isotc211/iso19115/2003/citation#> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix ssn: <http://www.w3.org/ns/ssn/> .
@prefix sosa: <http://www.w3.org/ns/sosa/> .
@prefix saref: <https://saref.etsi.org/core/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix demeterAgriCommon: <https://w3id.org/demeter/agri/agriCommon#> .
@prefix GDCommon: <https://w3id.org/ad4gd/model/GDCommon/> .
@prefix qudt: <http://qudt.org/schema/qudt/> .
@prefix dwc: <http://rs.tdwg.org/dwc/terms/> .
@prefix dwc-mbg: <http://mmisw.org/ont/ioos/marine_biogeography/> .
@prefix dwc-hc: <http://rs.tdwg.org/hc/terms/> .
@base <https://w3id.org/ad4gd/model/gdCommon/> .
<https://w3id.org/ad4gd/model/gdCommon> a owl:Ontology ;
owl:versionIRI <https://w3id.org/ad4gd/model/gdCommon/1.1> ;
dct:contributor [ schema:affiliation [ foaf:name "PSNC"
] ;
foaf:name "Bogusz Janiak"
] ;
dct:creator [ schema:affiliation [ foaf:name "PSNC"
] ;
rdfs:seeAlso <http://orcid.org/0000-0003-4289-4922> ;
foaf:name "Raul Palma"
] ;
owl:imports <https://w3id.org/ad4gd/model/crossDomain> ;
dct:description "The GDCommon module is the common ontology module of the AD4GD - Green Deal Information Model (GDIM) domain layer. This ontology module was created by reusing and aligning well-known ontologies and vocabularies, including Darwin Core"@en ;
dct:rights "This vocabulary is distributed under Creative Commons Attribution 4.0 License - http://creativecommons.org/licenses/by/4.0"@en ;
dct:title "GDIM GDCommon"@en ;
rdfs:label "GDIM GDCommon"@en ;
rdfs:comment "The AD4GD - Green Deal Information Model (GDIM) is the common vocabulary in AD4GD project providing the basis for semantic interoperability across solutions related to the green deal domain"@en ;
rdfs:comment "The GDCommon ontology is based on the DEMETER Agriculture Information Model (AIM) agriCommon ontology"@en ;
owl:versionInfo "1.1" ;
foaf:maker [ foaf:homepage <https://ad4gd.eu/> ;
foaf:name "AD4GD project"
] .
#################################################################
# Annotation properties
#################################################################
dct:accessRights
a owl:AnnotationProperty ;
rdfs:comment "Access Rights may include information regarding access or restrictions based on privacy, security, or other policies."@en-us ;
rdfs:label "Access Rights"@en-us ;
skos:definition "Information about who can access the resource or an indication of its security status."@en-us ;
rdfs:subPropertyOf dct:rights .
# rdfs:range dc:RightsStatement .
dct:bibliographicCitation
a owl:AnnotationProperty ;
rdfs:comment "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible."@en-us ;
rdfs:label "Bibliographic Citation"@en-us ;
skos:definition "A bibliographic reference for the resource."@en-us .
# rdfs:subPropertyOf dc:identifier ;
# rdfs:range rdfs:Literal ;
# rdfs:domain dc:BibliographicResource .
dct:language
a owl:AnnotationProperty ;
dct:bibliographicCitation "[RFC4646] http://www.ietf.org/rfc/rfc4646.txt" ;
rdfs:comment "Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646]."@en-us ;
rdfs:label "Language"@en-us ;
rdfs:seeAlso <http://www.ietf.org/rfc/rfc4646.txt> ;
skos:definition "A language of the resource."@en-us .
# rdfs:subPropertyOf dc11:language ;
# rdfs:range dc:LinguisticSystem .
dct:license
a owl:AnnotationProperty ;
rdfs:label "License"@en-us ;
skos:definition "A legal document giving official permission to do something with the resource."@en-us ;
rdfs:subPropertyOf dct:rights .
# rdfs:range dc:LicenseDocument .
dct:modified
a owl:AnnotationProperty ;
rdfs:label "Date Modified"@en-us ;
skos:definition "Date on which the resource was changed."@en-us .
# rdfs:subPropertyOf dc:date ;
# rdfs:range rdfs:Literal .
dct:references
a owl:AnnotationProperty ;
rdfs:label "References"@en-us ;
skos:definition "A related resource that is referenced, cited, or otherwise pointed to by the described resource."@en-us ;
skos:note "This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration."@en-us .
#rdfs:subPropertyOf dc:relation .
dct:rights
a owl:AnnotationProperty ;
rdfs:comment "Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights."@en-us ;
rdfs:label "Rights"@en-us ;
skos:definition "Information about rights held in and over the resource."@en-us .
# rdfs:subPropertyOf dc11:rights ;
# rdfs:range dc:RightsStatement .
dct:rightsHolder
a owl:AnnotationProperty ;
rdfs:label "Rights Holder"@en-us ;
skos:definition "A person or organization owning or managing rights over the resource."@en-us .
# rdfs:range dc:Agent .
dct:type
a owl:AnnotationProperty ;
dct:bibliographicCitation "[DCMITYPE] http://dublincore.org/documents/dcmi-type-vocabulary/" ;
rdfs:comment "Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element."@en-us ;
rdfs:label "Type"@en-us ;
rdfs:seeAlso <http://dublincore.org/documents/dcmi-type-vocabulary/> ;
skos:definition "The nature or genre of the resource."@en-us .
# rdfs:subPropertyOf dc11:type ;
# rdfs:range dc11:contributor .
dct:title
a owl:AnnotationProperty ;
rdfs:label "Title"@en-us ;
skos:definition "A name given to the resource."@en-us ;
skos:note "In current practice, this term is used primarily with literal values; however, there are important uses with non-literal values as well. As of December 2007, the DCMI Usage Board is leaving this range unspecified pending an investigation of options."@en-us .
# rdfs:subPropertyOf dc11:title .
dct:publisher
a owl:AnnotationProperty ;
rdfs:comment "Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity."@en-us ;
rdfs:label "Publisher"@en-us ;
skos:definition "An entity responsible for making the resource available."@en-us .
# rdfs:subPropertyOf dc11:publisher ;
# rdfs:range dc:Agent .
dct:identifier
a owl:AnnotationProperty ;
rdfs:comment "Recommended best practice is to identify the resource by means of a string conforming to a formal identification system."@en-us ;
rdfs:label "Identifier"@en-us ;
skos:definition "An unambiguous reference to the resource within a given context."@en-us .
# rdfs:subPropertyOf dc11:identifier ;
# rdfs:range rdfs:Literal .
dct:spatial
a owl:AnnotationProperty ;
rdfs:label "Spatial Coverage"@en-us ;
skos:definition "Spatial characteristics of the resource."@en-us .
# rdfs:subPropertyOf dc:coverage ;
# rdfs:range dc:Location .
dct:subject
a owl:AnnotationProperty ;
rdfs:comment "Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element."@en-us ;
rdfs:label "Subject"@en-us ;
skos:definition "The topic of the resource."@en-us ;
skos:note "This term is intended to be used with non-literal values as defined in the DCMI Abstract Model (http://dublincore.org/documents/abstract-model/). As of December 2007, the DCMI Usage Board is seeking a way to express this intention with a formal range declaration."@en-us .
# rdfs:subPropertyOf dc11:subject .
dct:temporal
a owl:AnnotationProperty ;
rdfs:label "Temporal Coverage"@en-us ;
skos:definition "Temporal characteristics of the resource."@en-us .
# rdfs:subPropertyOf dc:coverage ;
# rdfs:range dc:PeriodOfTime .
#################################################################
# Datatypes
#################################################################
#################################################################
# Object Properties
#################################################################
### https://schema.org/address
schema:address a owl:ObjectProperty ;
rdfs:label "address" ;
rdfs:comment "Physical address of the item" ;
rdfs:isDefinedBy <https://schema.org/address> .
### https://smartdatamodels.org/dataModel.Agrifood/agroVocConcept
fiware-agrifood:agroVocConcept a owl:ObjectProperty ;
rdfs:label "agroVocConcept"@en ;
rdfs:comment "The link with the defined concept into the AgroVoc vocabulary" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriCrop/schema.json> .
### https://w3id.org/demeter/agri/agriCommon#eppoConcept
demeterAgriCommon:eppoConcept a owl:ObjectProperty ;
rdfs:label "eppoConcept"@en ;
rdfs:comment "The link with the defined concept into the EPPO vocabulary" ;
rdfs:isDefinedBy <https://w3id.org/demeter/agri/agriCommon#> .
#################################################################
# Data properties
#################################################################
### https://w3id.org/demeter/agri/agriCommon#userName
demeterAgriCommon:userName a owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:label "User Name" ;
rdfs:comment "User Name" ;
rdfs:isDefinedBy <https://w3id.org/demeter/agri/agriCommon#> .
### https://w3id.org/demeter/agri/agriCommon#password
demeterAgriCommon:password a owl:DatatypeProperty ;
rdfs:range xsd:string ;
rdfs:label "Password" ;
rdfs:comment "Password" ;
rdfs:isDefinedBy <https://w3id.org/demeter/agri/agriCommon#> .
### <http://portele.de/ont/inspire/baseInspire#validFrom>
common:validFrom a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
skos:prefLabel "valid from"@en ;
rdfs:label "valid from" ;
rdfs:comment "begin of real-world phenomenon" ;
rdfs:isDefinedBy <http://portele.de/ont/inspire/baseInspire#> .
### <http://portele.de/ont/inspire/baseInspire#validTo>
common:validTo a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
skos:prefLabel "valid to"@en ;
rdfs:label "valid to" ;
rdfs:comment "end of real-world phenomenon" ;
rdfs:isDefinedBy <http://portele.de/ont/inspire/baseInspire#> .
### https://smartdatamodels.org/dateCreated
fiware:dateCreated a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
rdfs:label "dateCreated"@en ;
rdfs:comment "Entity creation timestamp. This will usually be allocated by the storage platform" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://smartdatamodels.org/dateModified
fiware:dateModified a owl:DatatypeProperty ;
rdfs:range xsd:dateTime ;
rdfs:label "dateModified"@en ;
rdfs:comment "Timestamp of the last modification of the entity. This will usually be allocated by the storage platform" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://smartdatamodels.org/source
fiware:source a owl:DatatypeProperty ;
rdfs:label "source"@en ;
rdfs:comment "A sequence of characters giving the original source of the entity data as a URL. Recommended to be the fully qualified domain name of the source provider, or the URL to the source object." ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://smartdatamodels.org/dataProvider
fiware:dataProvider a owl:DatatypeProperty ;
rdfs:label "dataProvider"@en ;
rdfs:comment "A sequence of characters identifying the provider of the harmonised data entity" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://smartdatamodels.org/name
fiware:name a owl:DatatypeProperty ;
rdfs:label "name"@en ;
rdfs:comment "The name of this item" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://smartdatamodels.org/alternateName
fiware:alternateName a owl:DatatypeProperty ;
rdfs:label "alternateName"@en ;
rdfs:comment "An alternative name for this item" ;
rdfs:isDefinedBy <https://github.com/smart-data-models/dataModel.Agrifood/blob/master/AgriApp/schemaDTDL.json> .
### https://schema.org/addressCountry
schema:addressCountry a owl:DatatypeProperty ;
rdfs:label "addressCountry" ;
rdfs:comment "The country. For example, USA. You can also provide the two-letter ISO 3166-1 alpha-2 country code" ;
rdfs:isDefinedBy <https://schema.org/addressCountry> .
### https://schema.org/addressLocality
schema:addressLocality a owl:DatatypeProperty ;
rdfs:label "addressLocality" ;
rdfs:comment "The locality in which the street address is, and which is in the region. For example, Mountain View" ;
rdfs:isDefinedBy <https://schema.org/addressLocality> .
### https://schema.org/addressRegion
schema:addressRegion a owl:DatatypeProperty ;
rdfs:label "addressRegion" ;
rdfs:comment "The region in which the locality is, and which is in the country. For example, California or another appropriate first-level Administrative division" ;
rdfs:isDefinedBy <https://schema.org/addressRegion> .
### https://schema.org/streetAddress
schema:streetAddress a owl:DatatypeProperty ;
rdfs:label "streetAddress" ;
rdfs:comment "The street address. For example, 1600 Amphitheatre Pkwy." ;
rdfs:isDefinedBy <https://schema.org/streetAddress> .
### https://schema.org/postOfficeBoxNumber
schema:postOfficeBoxNumber a owl:DatatypeProperty ;
rdfs:label "postOfficeBoxNumber" ;
rdfs:comment "The post office box number for PO box addresses." ;
rdfs:isDefinedBy <https://schema.org/postOfficeBoxNumber> .
### https://schema.org/postalCode
schema:postalCode a owl:DatatypeProperty ;
rdfs:label "postalCode" ;
rdfs:comment "The postal code. For example, 94043" ;
rdfs:isDefinedBy <https://schema.org/postalCode> .
### https://schema.org/status
schema:status a owl:DatatypeProperty ;
rdfs:label "status" ;
rdfs:comment "The status of the study (enumerated)" ;
rdfs:isDefinedBy <https://schema.org/status> .
### https://schema.org/height
schema:height a owl:DatatypeProperty ;
rdfs:label "height" ;
rdfs:comment "The height of the item" ;
rdfs:isDefinedBy <https://schema.org/height> .
### https://schema.org/minValue
schema:minValue a owl:DatatypeProperty ;
rdfs:label "minValue" ;
rdfs:comment "The lower value of some characteristic or property" ;
rdfs:isDefinedBy <https://schema.org/minValue> .
### https://schema.org/maxValue
schema:maxValue a owl:DatatypeProperty ;
rdfs:label "maxValue" ;
rdfs:comment "The upper value of some characteristic or property" ;
rdfs:isDefinedBy <https://schema.org/maxValue> .
## http://rs.tdwg.org/dwc/terms/acceptedNameUsage
dwc:acceptedNameUsage
a owl:DatatypeProperty ;
rdfs:label "accepted name usage" ;
rdfs:comment "The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) dwc:Taxon." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/acceptedNameUsage> .
## http://rs.tdwg.org/dwc/terms/acceptedNameUsageID
dwc:acceptedNameUsageID
a owl:DatatypeProperty ;
rdfs:label "accepted name usage id" ;
rdfs:comment "An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/acceptedNameUsageID> .
## http://rs.tdwg.org/dwc/terms/associatedMedia
dwc:associatedMedia
a owl:DatatypeProperty ;
rdfs:label "associated media" ;
rdfs:comment "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedMedia> .
## http://rs.tdwg.org/dwc/terms/associatedOccurrences
dwc:associatedOccurrences
a owl:DatatypeProperty ;
rdfs:label "associated occurrences" ;
rdfs:comment "A list (concatenated and separated) of identifiers of other dwc:Occurrence records and their associations to this dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedOccurrences> .
## http://rs.tdwg.org/dwc/terms/associatedOrganisms
dwc:associatedOrganisms
a owl:DatatypeProperty ;
rdfs:label "associated organisms" ;
rdfs:comment "A list (concatenated and separated) of identifiers of other dwc:Organisms and the associations of this dwc:Organism to each of them." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedOrganisms> .
## http://rs.tdwg.org/dwc/terms/associatedReferences
dwc:associatedReferences
a owl:DatatypeProperty ;
rdfs:label "associated references" ;
rdfs:comment "A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedReferences> .
## http://rs.tdwg.org/dwc/terms/associatedSequences
dwc:associatedSequences
a owl:DatatypeProperty ;
rdfs:label "associated sequences" ;
rdfs:comment "A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedSequences> .
## http://rs.tdwg.org/dwc/terms/associatedTaxa
dwc:associatedTaxa
a owl:DatatypeProperty ;
rdfs:label "associated taxa" ;
rdfs:comment "A list (concatenated and separated) of identifiers or names of dwc:Taxon records and the associations of this dwc:Occurrence to each of them." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/associatedTaxa> .
## http://rs.tdwg.org/dwc/terms/basisOfRecord
dwc:basisOfRecord
a owl:DatatypeProperty ;
rdfs:label "basis of record" ;
rdfs:comment "The specific nature of the data record." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/basisOfRecord> .
## http://rs.tdwg.org/dwc/terms/bed
dwc:bed
a owl:DatatypeProperty ;
rdfs:label "bed" ;
rdfs:comment "The full name of the lithostratigraphic bed from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/bed> .
## http://rs.tdwg.org/dwc/terms/behavior
dwc:behavior
a owl:DatatypeProperty ;
rdfs:label "behavior" ;
rdfs:comment "The behavior shown by the subject at the time the dwc:Occurrence was recorded." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/behavior> .
## http://rs.tdwg.org/dwc/terms/catalogNumber
dwc:catalogNumber
a owl:DatatypeProperty ;
rdfs:label "catalog number" ;
rdfs:comment "An identifier (preferably unique) for the record within the data set or collection." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/catalogNumber> .
## http://rs.tdwg.org/dwc/terms/class
dwc:class
a owl:DatatypeProperty ;
rdfs:label "class" ;
rdfs:comment "The full scientific name of the class in which the dwc:Taxon is classified." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/class> .
## http://rs.tdwg.org/dwc/terms/collectionCode
dwc:collectionCode
a owl:DatatypeProperty ;
rdfs:label "collection code" ;
rdfs:comment "The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/collectionCode> .
## http://rs.tdwg.org/dwc/terms/collectionID
dwc:collectionID
a owl:DatatypeProperty ;
rdfs:label "collection id" ;
rdfs:comment "An identifier for the collection or dataset from which the record was derived." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/collectionID> .
## http://rs.tdwg.org/dwc/terms/continent
dwc:continent
a owl:DatatypeProperty ;
rdfs:label "continent" ;
rdfs:comment "The name of the continent in which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/continent> .
## http://rs.tdwg.org/dwc/terms/coordinatePrecision
dwc:coordinatePrecision
a owl:DatatypeProperty ;
rdfs:label "coordinate precision" ;
rdfs:comment "A decimal representation of the precision of the coordinates given in the dwc:decimalLatitude and dwc:decimalLongitude." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/coordinatePrecision> .
## http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
dwc:coordinateUncertaintyInMeters
a owl:DatatypeProperty ;
rdfs:label "coordinate uncertainty in meters" ;
rdfs:comment "The horizontal distance (in meters) from the given dwc:decimalLatitude and dwc:decimalLongitude describing the smallest circle containing the whole of the dcterms:Location. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Zero is not a valid value for this term." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters> .
## http://rs.tdwg.org/dwc/terms/country
dwc:country
a owl:DatatypeProperty ;
rdfs:label "country" ;
rdfs:comment "The name of the country or major administrative unit in which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/country> .
## http://rs.tdwg.org/dwc/terms/countryCode
dwc:countryCode
a owl:DatatypeProperty ;
rdfs:label "country code" ;
rdfs:comment "The standard code for the country in which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/countryCode> .
## http://rs.tdwg.org/dwc/terms/county
dwc:county
a owl:DatatypeProperty ;
rdfs:label "county" ;
rdfs:comment "The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/county> .
## http://rs.tdwg.org/dwc/terms/dataGeneralizations
dwc:dataGeneralizations
a owl:DatatypeProperty ;
rdfs:label "data generalizations" ;
rdfs:comment "Actions taken to make the shared data less specific or complete than in its original form. Suggests that alternative data of higher quality may be available on request." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/dataGeneralizations> .
## http://rs.tdwg.org/dwc/terms/datasetID
dwc:datasetID
a owl:DatatypeProperty ;
rdfs:label "dataset id" ;
rdfs:comment "An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/datasetID> .
## http://rs.tdwg.org/dwc/terms/datasetName
dwc:datasetName
a owl:DatatypeProperty ;
rdfs:label "dataset name" ;
rdfs:comment "The name identifying the data set from which the record was derived." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/datasetName> .
## http://rs.tdwg.org/dwc/terms/dateIdentified
dwc:dateIdentified
a owl:DatatypeProperty ;
rdfs:label "date identified" ;
rdfs:comment "The date on which the subject was determined as representing the dwc:Taxon." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/dateIdentified> .
## http://rs.tdwg.org/dwc/terms/day
dwc:day
a owl:DatatypeProperty ;
rdfs:label "day" ;
rdfs:comment "The integer day of the month on which the dwc:Event occurred." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/day> .
## http://rs.tdwg.org/dwc/terms/decimalLatitude
dwc:decimalLatitude
a owl:DatatypeProperty ;
rdfs:label "decimal latitude" ;
rdfs:comment "The geographic latitude (in decimal degrees, using the spatial reference system given in dwc:geodeticDatum) of the geographic center of a dcterms:Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/decimalLatitude> .
## http://rs.tdwg.org/dwc/terms/decimalLongitude
dwc:decimalLongitude
a owl:DatatypeProperty ;
rdfs:label "decimal longitude" ;
rdfs:comment "The geographic longitude (in decimal degrees, using the spatial reference system given in dwc:geodeticDatum) of the geographic center of a dcterms:Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/decimalLongitude> .
## http://rs.tdwg.org/dwc/terms/disposition
dwc:disposition
a owl:DatatypeProperty ;
rdfs:label "disposition" ;
rdfs:comment "The current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/disposition> .
## http://rs.tdwg.org/dwc/terms/dynamicProperties
dwc:dynamicProperties
a owl:DatatypeProperty ;
rdfs:label "dynamic properties" ;
rdfs:comment "A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/dynamicProperties> .
## http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage
dwc:earliestAgeOrLowestStage
a owl:DatatypeProperty ;
rdfs:label "earliest age or lowest stage" ;
rdfs:comment "The full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage> .
## http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem
dwc:earliestEonOrLowestEonothem
a owl:DatatypeProperty ;
rdfs:label "earliest eon or lowest eonothem" ;
rdfs:comment "The full name of the earliest possible geochronologic eon or lowest chrono-stratigraphic eonothem or the informal name (\"Precambrian\") attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem> .
## http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries
dwc:earliestEpochOrLowestSeries
a owl:DatatypeProperty ;
rdfs:label "earliest epoch or lowest series" ;
rdfs:comment "The full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries> .
## http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem
dwc:earliestEraOrLowestErathem
a owl:DatatypeProperty ;
rdfs:label "earliest era or lowest erathem" ;
rdfs:comment "The full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem> .
## http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem
dwc:earliestPeriodOrLowestSystem
a owl:DatatypeProperty ;
rdfs:label "earliest period or lowest system" ;
rdfs:comment "The full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem> .
## http://rs.tdwg.org/dwc/terms/endDayOfYear
dwc:endDayOfYear
a owl:DatatypeProperty ;
rdfs:label "end day of year" ;
rdfs:comment "The latest integer day of the year on which the dwc:Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366)." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/endDayOfYear> .
## http://rs.tdwg.org/dwc/terms/establishmentMeans
dwc:establishmentMeans
a owl:DatatypeProperty ;
rdfs:label "establishment means" ;
rdfs:comment "Statement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/establishmentMeans> .
## http://rs.tdwg.org/dwc/terms/eventDate
dwc:eventDate
a owl:DatatypeProperty ;
rdfs:label "event date" ;
rdfs:comment "The date-time or interval during which a dwc:Event occurred. For occurrences, this is the date-time when the dwc:Event was recorded. Not suitable for a time in a geological context." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/eventDate> .
## http://rs.tdwg.org/dwc/terms/eventID
dwc:eventID
a owl:DatatypeProperty ;
rdfs:label "event id" ;
rdfs:comment "An identifier for the set of information associated with a dwc:Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/eventID> .
## http://rs.tdwg.org/dwc/terms/eventRemarks
dwc:eventRemarks
a owl:DatatypeProperty ;
rdfs:label "event remarks" ;
rdfs:comment "Comments or notes about the dwc:Event." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/eventRemarks> .
## http://rs.tdwg.org/dwc/terms/eventTime
dwc:eventTime
a owl:DatatypeProperty ;
rdfs:label "event time" ;
rdfs:comment "The time or interval during which a dwc:Event occurred." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/eventTime> .
## http://rs.tdwg.org/dwc/terms/family
dwc:family
a owl:DatatypeProperty ;
rdfs:label "family" ;
rdfs:comment "The full scientific name of the family in which the dwc:Taxon is classified." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/family> .
## http://rs.tdwg.org/dwc/terms/fieldNotes
dwc:fieldNotes
a owl:DatatypeProperty ;
rdfs:label "field notes" ;
rdfs:comment "One of a) an indicator of the existence of, b) a reference to (publication, URI), or c) the text of notes taken in the field about the dwc:Event" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/fieldNotes> .
## http://rs.tdwg.org/dwc/terms/fieldNumber
dwc:fieldNumber
a owl:DatatypeProperty ;
rdfs:label "field number" ;
rdfs:comment "An identifier given to the dwc:Event in the field. Often serves as a link between field notes and the dwc:Event." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/fieldNumber> .
## http://rs.tdwg.org/dwc/terms/footprintSpatialFit
dwc:footprintSpatialFit
a owl:DatatypeProperty ;
rdfs:label "footprint spatial fit" ;
rdfs:comment "The ratio of the area of the dwc:footprintWKT to the area of the true (original, or most specific) spatial representation of the dcterms:Location. Legal values are 0, greater than or equal to 1, or undefined. A value of 1 is an exact match or 100% overlap. A value of 0 should be used if the given dwc:footprintWKT does not completely contain the original representation. The dwc:footprintSpatialFit is undefined (and should be left empty) if the original representation is any geometry without area (e.g., a point or polyline) and without uncertainty and the given georeference is not that same geometry (without uncertainty). If both the original and the given georeference are the same point, the dwc:footprintSpatialFit is 1." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/footprintSpatialFit> .
## http://rs.tdwg.org/dwc/terms/footprintSRS
dwc:footprintSRS
a owl:DatatypeProperty ;
rdfs:label "footprint srs" ;
rdfs:comment "The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/footprintSRS> .
## http://rs.tdwg.org/dwc/terms/footprintWKT
dwc:footprintWKT
a owl:DatatypeProperty ;
rdfs:label "footprint wkt" ;
rdfs:comment "A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the dcterms:Location. A dcterms:Location may have both a point-radius representation (see dwc:decimalLatitude) and a footprint representation, and they may differ from each other." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/footprintWKT> .
## http://rs.tdwg.org/dwc/terms/formation
dwc:formation
a owl:DatatypeProperty ;
rdfs:label "formation" ;
rdfs:comment "The full name of the lithostratigraphic formation from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/formation> .
## http://rs.tdwg.org/dwc/terms/genus
dwc:genus
a owl:DatatypeProperty ;
rdfs:label "genus" ;
rdfs:comment "The full scientific name of the genus in which the dwc:Taxon is classified." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/genus> .
## http://rs.tdwg.org/dwc/terms/geodeticDatum
dwc:geodeticDatum
a owl:DatatypeProperty ;
rdfs:label "geodetic datum" ;
rdfs:comment "The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude are based." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/geodeticDatum> .
## http://rs.tdwg.org/dwc/terms/geologicalContextID
dwc:geologicalContextID
a owl:DatatypeProperty ;
rdfs:label "geological context id" ;
rdfs:comment "An identifier for the set of information associated with a dwc:GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/geologicalContextID> .
## http://rs.tdwg.org/dwc/terms/georeferencedBy
dwc:georeferencedBy
a owl:DatatypeProperty ;
rdfs:label "georeferenced by" ;
rdfs:comment "A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the dcterms:Location." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferencedBy> .
## http://rs.tdwg.org/dwc/terms/georeferencedDate
dwc:georeferencedDate
a owl:DatatypeProperty ;
rdfs:label "georeferenced date" ;
rdfs:comment "The date on which the dcterms:Location was georeferenced." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferencedDate> .
## http://rs.tdwg.org/dwc/terms/georeferenceProtocol
dwc:georeferenceProtocol
a owl:DatatypeProperty ;
rdfs:label "georeference protocol" ;
rdfs:comment "A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferenceProtocol> .
## http://rs.tdwg.org/dwc/terms/georeferenceRemarks
dwc:georeferenceRemarks
a owl:DatatypeProperty ;
rdfs:label "georeference remarks" ;
rdfs:comment "Notes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in dwc:georeferenceProtocol." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferenceRemarks> .
## http://rs.tdwg.org/dwc/terms/georeferenceSources
dwc:georeferenceSources
a owl:DatatypeProperty ;
rdfs:label "georeference sources" ;
rdfs:comment "A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the dcterms:Location, described specifically enough to allow anyone in the future to use the same resources." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferenceSources> .
## http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus
dwc:georeferenceVerificationStatus
a owl:DatatypeProperty ;
rdfs:label "georeference verification status" ;
rdfs:comment "A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the dcterms:Location of the dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus> .
## http://rs.tdwg.org/dwc/terms/group
dwc:group
a owl:DatatypeProperty ;
rdfs:label "group" ;
rdfs:comment "The full name of the lithostratigraphic group from which the cataloged item was collected" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/group> .
## http://rs.tdwg.org/dwc/terms/habitat
dwc:habitat
a owl:DatatypeProperty ;
rdfs:label "habitat" ;
rdfs:comment "A category or description of the habitat in which the dwc:Event occurred." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/habitat> .
## http://rs.tdwg.org/dwc/terms/higherClassification
dwc:higherClassification
a owl:DatatypeProperty ;
rdfs:label "higher classification" ;
rdfs:comment "A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the referenced dwc:Taxon." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/higherClassification> .
## http://rs.tdwg.org/dwc/terms/higherGeography
dwc:higherGeography
a owl:DatatypeProperty ;
rdfs:label "higher geography" ;
rdfs:comment "A list (concatenated and separated) of geographic names less specific than the information captured in the dwc:locality term." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/higherGeography> .
## http://rs.tdwg.org/dwc/terms/higherGeographyID
dwc:higherGeographyID
a owl:DatatypeProperty ;
rdfs:label "higher geography id" ;
rdfs:comment "An identifier for the geographic region within which the dcterms:Location occurred." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/higherGeographyID> .
## http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone
dwc:highestBiostratigraphicZone
a owl:DatatypeProperty ;
rdfs:label "highest biostratigraphic zone" ;
rdfs:comment "The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone> .
## http://rs.tdwg.org/dwc/terms/identificationID
dwc:identificationID
a owl:DatatypeProperty ;
rdfs:label "identification id" ;
rdfs:comment "An identifier for the dwc:Identification (the body of information associated with the assignment of a scientific name). May be a global unique identifier or an identifier specific to the data set." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identificationID> .
## http://rs.tdwg.org/dwc/terms/identificationQualifier
dwc:identificationQualifier
a owl:DatatypeProperty ;
rdfs:label "identification qualifier" ;
rdfs:comment "A brief phrase or a standard term (\"cf.\", \"aff.\") to express the determiner's doubts about the dwc:Identification." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identificationQualifier> .
## http://rs.tdwg.org/dwc/terms/identificationReferences
dwc:identificationReferences
a owl:DatatypeProperty ;
rdfs:label "identification references" ;
rdfs:comment "A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the dwc:Identification." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identificationReferences> .
## http://rs.tdwg.org/dwc/terms/identificationRemarks
dwc:identificationRemarks
a owl:DatatypeProperty ;
rdfs:label "identification remarks" ;
rdfs:comment "Comments or notes about the dwc:Identification." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identificationRemarks> .
## http://rs.tdwg.org/dwc/terms/identificationVerificationStatus
dwc:identificationVerificationStatus
a owl:DatatypeProperty ;
rdfs:label "identification verification status" ;
rdfs:comment "A categorical indicator of the extent to which the taxonomic identification has been verified to be correct" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identificationVerificationStatus> .
## http://rs.tdwg.org/dwc/terms/identifiedBy
dwc:identifiedBy
a owl:DatatypeProperty ;
rdfs:label "identified by" ;
rdfs:comment "A list (concatenated and separated) of names of people, groups, or organizations who assigned the dwc:Taxon to the subject." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/identifiedBy> .
## http://rs.tdwg.org/dwc/terms/individualCount
dwc:individualCount
a owl:DatatypeProperty ;
rdfs:label "individual count" ;
rdfs:comment "The number of individuals present at the time of the dwc:Occurrence." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/individualCount> .
## http://rs.tdwg.org/dwc/terms/informationWithheld
dwc:informationWithheld
a owl:DatatypeProperty ;
rdfs:label "information withheld" ;
rdfs:comment "Additional information that exists, but that has not been shared in the given record." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/informationWithheld> .
## http://rs.tdwg.org/dwc/terms/infraspecificEpithet
dwc:infraspecificEpithet
a owl:DatatypeProperty ;
rdfs:label "infraspecific epithet" ;
rdfs:comment "The name of the lowest or terminal infraspecific epithet of the dwc:scientificName, excluding any rank designation." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/infraspecificEpithet> .
## http://rs.tdwg.org/dwc/terms/institutionCode
dwc:institutionCode
a owl:DatatypeProperty ;
rdfs:label "institution code" ;
rdfs:comment "The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/institutionCode> .
## http://rs.tdwg.org/dwc/terms/institutionID
dwc:institutionID
a owl:DatatypeProperty ;
rdfs:label "institution id" ;
rdfs:comment "An identifier for the institution having custody of the object(s) or information referred to in the record" ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/institutionID> .
## http://rs.tdwg.org/dwc/terms/island
dwc:island
a owl:DatatypeProperty ;
rdfs:label "island" ;
rdfs:comment "The name of the island on or near which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/island> .
## http://rs.tdwg.org/dwc/terms/islandGroup
dwc:islandGroup
a owl:DatatypeProperty ;
rdfs:label "island group" ;
rdfs:comment "The name of the island group in which the dcterms:Location occurs." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/islandGroup> .
## http://rs.tdwg.org/dwc/terms/kingdom
dwc:kingdom
a owl:DatatypeProperty ;
rdfs:label "kingdom" ;
rdfs:comment "The full scientific name of the kingdom in which the dwc:Taxon is classified." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/kingdom> .
## http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage
dwc:latestAgeOrHighestStage
a owl:DatatypeProperty ;
rdfs:label "latest age or highest stage" ;
rdfs:comment "The full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage> .
## http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem
dwc:latestEonOrHighestEonothem
a owl:DatatypeProperty ;
rdfs:label "latest eon or highest eonothem" ;
rdfs:comment "The full name of the latest possible geochronologic eon or highest chrono-stratigraphic eonothem or the informal name (\"Precambrian\") attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem> .
## http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries
dwc:latestEpochOrHighestSeries
a owl:DatatypeProperty ;
rdfs:label "latest epoch or highest series" ;
rdfs:comment "The full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries> .
## http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem
dwc:latestEraOrHighestErathem
a owl:DatatypeProperty ;
rdfs:label "latest era or highest erathem" ;
rdfs:comment "The full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem> .
## http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem
dwc:latestPeriodOrHighestSystem
a owl:DatatypeProperty ;
rdfs:label "latest period or highest system" ;
rdfs:comment "The full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected." ;
rdfs:isDefinedBy <http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem> .
## http://rs.tdwg.org/dwc/terms/lifeStage
dwc:lifeStage