diff --git a/build/README.md b/build/README.md index d1d3a42..c8fc2a1 100644 --- a/build/README.md +++ b/build/README.md @@ -2,31 +2,31 @@ ![workflow diagram](workflow_diagram.png) -1. Download the CSV file for the terms in the namespace to be modified. The `dwc:` namespace terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/terms/terms.csv), `dwciri:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/iri/iri.csv), `dc:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dc-for-dwc/dc-for-dwc.csv), and the `dcterms:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dcterms-for-dwc/dcterms-for-dwc.csv). -2. **Note:** *It is highly recommended that you do not hand-edit the raw CSVs with a text editor. Use Libre Office or Open Office (NOT Excel). They will reliably open, close, and edit the file while preserving and escaping commas, quotes, etc. and also not mess up the UTF-8 encoding if you set them up properly.* Delete the columns that do not serve as input to the system. They are: `document_modified`, `term_isDefinedBy`, `term_created`, `term_modified`, `term_deprecated`, `replaces_term`, `replaces1_term`, and `replaces2_term`. That should leave `term_localName` and all of the columns starting with `label` and onwards to the right. -3. Delete any rows whose terms are not being modified. -4. Edit the cells whose values need to be changed. -5. If a new term is being added, fill in a new row anywhere below the header row. -6. Special care must be taken if columns are added (i.e. metadata properties are added). This is not for the faint of heart! The new columns must be added to every file used as source data for the various scripts and the column header mapping files also need to be edited. See [this page](for more details). This should be a rare event. DO NOT ever delete columns! If you want to elimite values for a property, just leave empty strings in all of the cells of that property's column. -7. Create a new branch (or fork if you don't have push rights) of the [rs.tdwg.org repo](https://github.com/tdwg/rs.tdwg.org). Save your edited CSV file using some notable name in the [process](https://github.com/tdwg/rs.tdwg.org/tree/master/process) directory. -8. Repeat this process for all namespaces that will be changed. I've been saving copies of the changes in [this directory](https://github.com/tdwg/rs.tdwg.org/tree/master/process/dwc-revisions) so that we can easily see what's been done in the past. Modify the [configuration file](https://github.com/tdwg/rs.tdwg.org/blob/master/process/config.json) so that it points to each CSV for each namespace. Look at the example to see what needs to be there. -9. Run the [processing script](https://github.com/tdwg/rs.tdwg.org/blob/master/process/process.py), which needs to be in the same directory as the configuration file. -10. There are some manual edits that need to be made if there are changes to either of the Dublin Core namespace terms. The versions don't get handled very automatically, so make the same changes to the [dcterms: version CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/dcterms-for-dwc-versions/dcterms-for-dwc-versions.csv) or [dc: version CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/dc-for-dwc-versions/dc-for-dwc-versions.csv) as were made to the main term CSVs. -11. The Dublin Core versions also need to be manually added for the new termlist version in the [termlist versions members CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/term-lists-versions/term-lists-versions-members.csv). In the future, this may get automated. -12. As of 2022-05-28 there is a Jupyter notebook that mostly automates the process of updating the list of terms metadata. See [these notes](https://github.com/tdwg/rs.tdwg.org/blob/master/process/process-vocabulary.md#5-managing-documents-metadata-via-python-script) for more information. Steve Baskauf is still working on integrating this with the rest of the build process, but it's more automated than it was. -13. Push the branch to GitHub and create a pull request. It is best for someone to review the changes carefully before merging. -14. Once the branch has been merged the data are available via HTTP to the other scripts that use those data. -15. Create a branch of the [Darwin Core repo](https://github.com/tdwg/dwc). -16. Edit the [termlist-header.md](https://github.com/tdwg/dwc/blob/master/build/termlist-header.md) file, changing "Date version issued", the "This version" URL, the version URL in the citation, and the date in the "1 Introduction" to the date used for the new version of Darwin Core. Change the "Previous version" date to the date of the version that is being replaced. Save the file. -17. Go to the `docs/list/` directory and change the name of the `index.md` file to the date of the version being replaced (e.g. `2020-08-12.md`). Open that file and add a "Replaced by" label and value to the IRI of the new version (see an older version for an example). Save the file. -18. Run the script [build-termlist.py](https://github.com/tdwg/dwc/blob/master/build/build-termlist.py). Be patient since some steps take a few seconds. When the `Done` message appears, it's finished. -19. Check the diff for the newly generated `index.md` file in the [docs/list/](https://github.com/tdwg/dwc/tree/master/docs/list) directory and make sure that the changes are appropriate. -20. The structure and order of listing of terms in the Quick Reference Guide is controlled by the file [qrg-list.csv](https://github.com/tdwg/dwc/blob/master/build/qrg-list.csv). It is very sensitive to the position of the class terms, which controls the division of the QRG into sections. Also, `http://purl.org/dc/terms/language` must be the first term in the section that will be labeled "Use with IRI". So it must be edited with some care. If new terms are added, their IRIs must be added in the proper place in this document in order for them to appear in the QRG. -21. Run the [generate_term_versions.py](https://github.com/tdwg/dwc/blob/master/build/generate_term_versions.py) script to generate a new version of [term_versions.csv](https://github.com/tdwg/dwc/blob/master/vocabulary/term_versions.csv). This file serves as the source of data for the build script in the next step. At some point, that script may be modified to eliminate this intermediate step. -22. Run the [build.py](https://github.com/tdwg/dwc/blob/master/build/build.py) script to build the Quick Reference Guide. -23. Create a pull request for the new branch. -24. When the branch has been reviewed carefully, merge the branch. The new pages shuld be live as soon as Jekyll rebuilds them on GitHub. -25. Term dereferencing to human and machine readable representations is handled by a server managed by GBIF. The new metadata gets fed into the production version of the server when there is a new release of the `rs.tdwg.org` repo, so when everything is done, make sure there a new release has been made. Because dereferencing of current terms to human-readable web pages is handled by a redirect, there won't be any noticeable difference whether the data are reloaded in this step or not. But dereferencing the term versions, or dereferencing to acquire machine readable metadata will not reflect the new changes until the release process completes. +**Note:** *It is highly recommended that you do not hand-edit the raw CSVs with a text editor. Use Libre Office or Open Office (NOT Excel). They will reliably open, close, and edit the file while preserving and escaping commas, quotes, etc. and also not mess up the UTF-8 encoding if you set them up properly.* + +1. * Fix link * Create a source data CSV file for each of the namespaces that has terms that have changed. [This directory]() has examples for all of the namespaces currently being used in the main Darwin Core vocabulary. You can get the column header by starting with the appropriate file here and deleting all of the data rows. The file names can be anything, but typically we've been appending the change date to the end of the file as seen in these examples. +2. A source data CSV MUST have a row for each term that has changed (modified or added). For existing terms that have changed, it is safest to start by copying the existing data cells for a term and then modifying them with the changes. The CSVs that contain the existing data for various namespaces are as follows. The `dwc:` namespace terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/terms/terms.csv), `dwciri:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/iri/iri.csv), `dc:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dc-for-dwc/dc-for-dwc.csv), and the `dcterms:` terms are [here](https://github.com/tdwg/rs.tdwg.org/blob/master/dcterms-for-dwc/dcterms-for-dwc.csv). +3. If a new term is being added, fill in a new row anywhere below the header row. The row order is unimportant. +4. Special care must be taken if columns are added (i.e. metadata properties are added). This is not for the faint of heart! The new columns must be added to every file used as source data for the various scripts and the column header mapping files also need to be edited. See [this page](for more details). This should be a rare event. DO NOT ever delete columns! If you want to elimite values for a property, just leave empty strings in all of the cells of that property's column. +5. Create a new branch (or fork if you don't have push rights) of the [rs.tdwg.org repo](https://github.com/tdwg/rs.tdwg.org). We have been saving copies of the changes in [this directory](https://github.com/tdwg/rs.tdwg.org/tree/master/process/dwc-revisions) so that we can easily see what's been changed for each past version. +6. * Fix link * Modify the [configuration file](https://github.com/tdwg/rs.tdwg.org/blob/master/process/config.json) so that it points to each CSV for each namespace. We have been saving copies of the config file with each update, so you can look at [the file that goes along with the CSV files linked as examples above]() to see what needs to be there. Only include data for the namespaces that will be updated. +7. Run the [processing script](https://github.com/tdwg/rs.tdwg.org/blob/master/process/process.py), which needs to be in the same directory as the configuration file. It's good to look at the diffs for all of the files to make sure that they look sensible. +8. **Dublin Core changes only.** 10. There are some manual edits that need to be made if there are changes to either of the Dublin Core namespace terms. The versions don't get handled very automatically, so make the same changes to the [dcterms: version CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/dcterms-for-dwc-versions/dcterms-for-dwc-versions.csv) or [dc: version CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/dc-for-dwc-versions/dc-for-dwc-versions.csv) as were made to the main term CSVs. +9. **Dublin Core changes only.** The Dublin Core versions also need to be manually added for the new termlist version in the [termlist versions members CSV](https://github.com/tdwg/rs.tdwg.org/blob/master/term-lists-versions/term-lists-versions-members.csv). In the future, this may get automated. The term-list-versions-replacements.csv also must be manually updated. +10. There is a [Python script](https://github.com/tdwg/rs.tdwg.org/blob/master/process/document_metadata_processing/tdwg_docs_metadata_update.py) that automates the process of updating the metadata about the list of terms document. See [these notes](https://github.com/tdwg/rs.tdwg.org/blob/master/process/process-vocabulary.md#5-managing-documents-metadata-via-python-script) for more information. Steve Baskauf is still working on integrating this with the rest of the build process, but it's more automated than it was. +11. Push the branch to GitHub and create a pull request. It is best to review the changes carefully before merging by looking at the diff. +12. Once the branch has been merged the data are available via HTTP to the other scripts that use those data. One can test to see if the term dereferencing is working by requesting one of the RDF serializations from the rs-test.tdwg.org subdomain. For example: http://rs-test.tdwg.org/dwc/terms/vitality.rdf . If it's working then the Jenkins task was able to reload the BaseX server with the new data. NOTE: the HTML representations will not yet work correctly since they are just redirects to the term list documents (which have not yet been updated). +13. Create a branch of the [Darwin Core repo](https://github.com/tdwg/dwc). +14. Edit the [termlist-header.md](https://github.com/tdwg/dwc/blob/master/build/termlist-header.md) file, changing "Date version issued", the "This version" URL, the version URL and date in the citation, and the date in the "1 Introduction" to the date used for the new version of Darwin Core. Change the "Previous version" date to the date of the version that is being replaced. Save the file. +15. Go to the `docs/list/` directory and change the name of the `index.md` file to the date of the version being replaced (e.g. `2020-08-12.md`). Open that file and add a "Replaced by" label and value to the IRI of the new version (see an older version for an example). Save the file. +16. Run the script [build-termlist.py](https://github.com/tdwg/dwc/blob/master/build/build-termlist.py). Be patient since some steps take a few seconds. When the `Done` message appears, it's finished. NOTE: the value of `githubBaseUri` in the configuration section of the script is set to the master branch in production. However, if you are generating provisional versions of the docs (e.g. for public or Executive Committee review), you may need to change the branch part of the path to the correct branch. +17. Check the diff for the newly generated `index.md` file in the [docs/list/](https://github.com/tdwg/dwc/tree/master/docs/list) directory and make sure that the changes are appropriate. +18. The structure and order of listing of terms in the Quick Reference Guide is controlled by the file [qrg-list.csv](https://github.com/tdwg/dwc/blob/master/build/qrg-list.csv). It is very sensitive to the position of the class terms, which controls the division of the QRG into sections. Also, `http://purl.org/dc/terms/language` must be the first term in the section that will be labeled "Use with IRI". So it must be edited with some care. If new terms are added, their IRIs must be added in the proper place in this document in order for them to appear in the QRG. +19. Run the [generate_term_versions.py](https://github.com/tdwg/dwc/blob/master/build/generate_term_versions.py) script to generate a new version of [term_versions.csv](https://github.com/tdwg/dwc/blob/master/vocabulary/term_versions.csv). This file serves as the source of data for the build script in the next step. At some point, that script may be modified to eliminate this intermediate step. +20. Run the [build.py](https://github.com/tdwg/dwc/blob/master/build/build.py) script to build the Quick Reference Guide. +21. Create a pull request for the new branch. +22. When the branch has been reviewed carefully, merge the branch. The new pages shuld be live as soon as Jekyll rebuilds them on GitHub. +23. Term dereferencing to human and machine readable representations is handled by a server managed by GBIF. The new metadata gets fed into the production version of the server when there is a new release of the `rs.tdwg.org` repo, so when everything is done, make sure there a new release has been made. Because dereferencing of current terms to human-readable web pages is handled by a redirect, there won't be any noticeable difference whether the data are reloaded in this step or not. But dereferencing the term versions, or dereferencing to acquire machine readable metadata will not reflect the new changes until the release process completes. ## Build script @@ -66,4 +66,4 @@ It generates the file `term_versions.csv`, which is used as the input for the `b The Python script `build-termlist.py` inputs the header information from `termlist-header.md`, then builds the list of terms and their metadata from data in the [rs.tdwg.org](http://github.com/tdwg/rs.tdwg.org) repository. The script also inputs `termlist-footer.md` and appends it to the end of the generated document, but currently it has no content. The constructed Markdown document is saved as `/docs/list/index.md`. ------ -Last edited: 2021-08-04 +Last edited: 2023-06-28 diff --git a/build/build-termlist.py b/build/build-termlist.py index a82d0d9..67897a8 100644 --- a/build/build-termlist.py +++ b/build/build-termlist.py @@ -88,6 +88,21 @@ def convert_link(text_with_urls): regx = "(http[s]?://[\w\d:#@%/;$()~_?\+-;=\\\.&]*)(?{% for example in examples %}
  • {{ example }}
  • {% endfor %}{% endif %} +def convert_examples(text_with_list_of_examples: str) -> str: + examples_list = text_with_list_of_examples.split('; ') + if len(examples_list) == 1: + return examples_list[0] + else: + output = '' + return output + # --------------- # Retrieve term list metadata from GitHub # --------------- @@ -346,7 +361,7 @@ if True: #if row['usage'] != '': text += '\t\t\n' text += '\t\t\tExamples\n' - text += '\t\t\t' + convert_link(convert_code(row['examples'])) + '\n' + text += '\t\t\t' + convert_examples(convert_link(convert_code(row['examples']))) + '\n' #text += '\t\t\t' + convert_link(convert_code(row['usage'])) + '\n' text += '\t\t\n' diff --git a/build/qrg-list.csv b/build/qrg-list.csv index 9383747..3ada4c7 100644 --- a/build/qrg-list.csv +++ b/build/qrg-list.csv @@ -30,7 +30,9 @@ http://rs.tdwg.org/dwc/terms/organismQuantityType http://rs.tdwg.org/dwc/terms/sex http://rs.tdwg.org/dwc/terms/lifeStage http://rs.tdwg.org/dwc/terms/reproductiveCondition +http://rs.tdwg.org/dwc/terms/caste http://rs.tdwg.org/dwc/terms/behavior +http://rs.tdwg.org/dwc/terms/vitality http://rs.tdwg.org/dwc/terms/establishmentMeans http://rs.tdwg.org/dwc/terms/degreeOfEstablishment http://rs.tdwg.org/dwc/terms/pathway @@ -54,9 +56,11 @@ http://rs.tdwg.org/dwc/terms/previousIdentifications http://rs.tdwg.org/dwc/terms/organismRemarks http://rs.tdwg.org/dwc/terms/MaterialSample http://rs.tdwg.org/dwc/terms/materialSampleID +http://rs.tdwg.org/dwc/terms/verbatimLabel http://rs.tdwg.org/dwc/terms/Event http://rs.tdwg.org/dwc/terms/eventID http://rs.tdwg.org/dwc/terms/parentEventID +http://rs.tdwg.org/dwc/terms/eventType http://rs.tdwg.org/dwc/terms/fieldNumber http://rs.tdwg.org/dwc/terms/eventDate http://rs.tdwg.org/dwc/terms/eventTime @@ -169,8 +173,11 @@ http://rs.tdwg.org/dwc/terms/kingdom http://rs.tdwg.org/dwc/terms/phylum http://rs.tdwg.org/dwc/terms/class http://rs.tdwg.org/dwc/terms/order +http://rs.tdwg.org/dwc/terms/superfamily http://rs.tdwg.org/dwc/terms/family http://rs.tdwg.org/dwc/terms/subfamily +http://rs.tdwg.org/dwc/terms/tribe +http://rs.tdwg.org/dwc/terms/subtribe http://rs.tdwg.org/dwc/terms/genus http://rs.tdwg.org/dwc/terms/genericName http://rs.tdwg.org/dwc/terms/subgenus @@ -188,6 +195,7 @@ http://rs.tdwg.org/dwc/terms/nomenclaturalStatus http://rs.tdwg.org/dwc/terms/taxonRemarks http://rs.tdwg.org/dwc/terms/MeasurementOrFact http://rs.tdwg.org/dwc/terms/measurementID +http://rs.tdwg.org/dwc/terms/parentMeasurementID http://rs.tdwg.org/dwc/terms/measurementType http://rs.tdwg.org/dwc/terms/measurementValue http://rs.tdwg.org/dwc/terms/measurementAccuracy @@ -213,11 +221,13 @@ http://rs.tdwg.org/dwc/iri/toTaxon http://rs.tdwg.org/dwc/iri/inCollection http://rs.tdwg.org/dwc/iri/georeferencedBy http://rs.tdwg.org/dwc/iri/behavior +http://rs.tdwg.org/dwc/iri/caste http://rs.tdwg.org/dwc/iri/dataGeneralizations http://rs.tdwg.org/dwc/iri/degreeOfEstablishment http://rs.tdwg.org/dwc/iri/disposition http://rs.tdwg.org/dwc/iri/earliestGeochronologicalEra http://rs.tdwg.org/dwc/iri/establishmentMeans +http://rs.tdwg.org/dwc/iri/eventType http://rs.tdwg.org/dwc/iri/fieldNotes http://rs.tdwg.org/dwc/iri/fieldNumber http://rs.tdwg.org/dwc/iri/footprintSRS @@ -253,6 +263,7 @@ http://rs.tdwg.org/dwc/iri/typeStatus http://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem http://rs.tdwg.org/dwc/iri/verbatimSRS http://rs.tdwg.org/dwc/iri/verticalDatum +http://rs.tdwg.org/dwc/iri/vitality http://rs.tdwg.org/dwc/terms/LivingSpecimen http://rs.tdwg.org/dwc/terms/PreservedSpecimen http://rs.tdwg.org/dwc/terms/FossilSpecimen diff --git a/build/termlist-header.md b/build/termlist-header.md index 63b870e..86e3f21 100644 --- a/build/termlist-header.md +++ b/build/termlist-header.md @@ -4,7 +4,7 @@ Title : List of Darwin Core terms Date version issued -: 2021-07-15 +: 2023-06-28 Date created : 2020-08-12 @@ -13,13 +13,13 @@ Part of TDWG Standard : This version -: +: Latest version : Previous version -: +: Abstract : Darwin Core is a vocabulary standard for transmitting information about biodiversity. This document lists all terms in namespaces currently used in the vocabulary. @@ -31,12 +31,12 @@ Creator : TDWG Darwin Core Maintenance Group Bibliographic citation -: Darwin Core Maintenance Group. 2021. List of Darwin Core terms. Biodiversity Information Standards (TDWG). +: Darwin Core Maintenance Group. 2023. List of Darwin Core terms. Biodiversity Information Standards (TDWG). ## 1 Introduction (Informative) -This document contains terms that are part of the most recent version of the Darwin Core vocabulary (). +This document contains terms that are part of the most recent version of the Darwin Core vocabulary (). This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated or superseded and should no longer be used. Deprecation or supersession is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs. diff --git a/build/terms.tmpl b/build/terms.tmpl index 9f5fbc2..f19f01c 100644 --- a/build/terms.tmpl +++ b/build/terms.tmpl @@ -5,14 +5,15 @@ # Darwin Core Quick Reference Guide -This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). +This document is intended to be an easy-to-read reference of the currently (as of 2023-06-28) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). -This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/). + +**Need help?** Read more about how to use Darwin Core in the [Darwin Core Questions & Answers site](https://github.com/tdwg/dwc-qa/blob/master/README.md). Still have questions? Submit a new issue (question/problem) to the [dwc-qa issues page in GitHub](https://github.com/tdwg/dwc-qa/issues), or use the [form](https://tinyurl.com/darwin-qa). See the bottom of this document for [how to cite Darwin Core](https://dwc.tdwg.org/terms/#cite-darwin-core)." + +This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Definitions, comments, and examples may include namespace abbreviations (e.g., "dwc:"). These are included to show that the meaning for the word it is attached to very specifically means the term as defined in that namespace. Thus, dwc:Event means Event as defined by Darwin Core at https://dwc.tdwg.org/terms/#event. Capitalized terms that follow a namespace abbreviation, such as dwc:Occurrence, are Darwin Core class terms, which are a special category of terms used to group sets of property terms (terms that being with lower case names that follow the namespace abbreviation, e.g., dwc:eventID) for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/). Additional [files with just the current term names](https://github.com/tdwg/dwc/tree/master/dist) and a [file with the full term history](https://github.com/tdwg/dwc/blob/master/vocabulary/term_versions.csv) can be found in the [Darwin Core repository](https://github.com/tdwg/dwc). -For inquiries about how to use Darwin Core, either enter an issue in the [Darwin Core Questions & Answers site](https://github.com/tdwg/dwc-qa/blob/master/README.md) or enter an issue in the [alternative form](https://tinyurl.com/darwin-qa), which will have the same effect. See the bottom of this document for how to [cite Darwin Core](#cite-darwin-core). - {% for class_group in class_groups %} ## {{ class_group.label }} diff --git a/dist/simple_dwc_horizontal.csv b/dist/simple_dwc_horizontal.csv index f8b2cc9..7b0004c 100644 --- a/dist/simple_dwc_horizontal.csv +++ b/dist/simple_dwc_horizontal.csv @@ -1 +1 @@ -type,modified,language,license,rightsHolder,accessRights,bibliographicCitation,references,institutionID,collectionID,datasetID,institutionCode,collectionCode,datasetName,ownerInstitutionCode,basisOfRecord,informationWithheld,dataGeneralizations,dynamicProperties,occurrenceID,catalogNumber,recordNumber,recordedBy,recordedByID,individualCount,organismQuantity,organismQuantityType,sex,lifeStage,reproductiveCondition,behavior,establishmentMeans,degreeOfEstablishment,pathway,georeferenceVerificationStatus,occurrenceStatus,preparations,disposition,associatedMedia,associatedOccurrences,associatedReferences,associatedSequences,associatedTaxa,otherCatalogNumbers,occurrenceRemarks,organismID,organismName,organismScope,associatedOrganisms,previousIdentifications,organismRemarks,materialSampleID,eventID,parentEventID,fieldNumber,eventDate,eventTime,startDayOfYear,endDayOfYear,year,month,day,verbatimEventDate,habitat,samplingProtocol,sampleSizeValue,sampleSizeUnit,samplingEffort,fieldNotes,eventRemarks,locationID,higherGeographyID,higherGeography,continent,waterBody,islandGroup,island,country,countryCode,stateProvince,county,municipality,locality,verbatimLocality,minimumElevationInMeters,maximumElevationInMeters,verbatimElevation,verticalDatum,minimumDepthInMeters,maximumDepthInMeters,verbatimDepth,minimumDistanceAboveSurfaceInMeters,maximumDistanceAboveSurfaceInMeters,locationAccordingTo,locationRemarks,decimalLatitude,decimalLongitude,geodeticDatum,coordinateUncertaintyInMeters,coordinatePrecision,pointRadiusSpatialFit,verbatimCoordinates,verbatimLatitude,verbatimLongitude,verbatimCoordinateSystem,verbatimSRS,footprintWKT,footprintSRS,footprintSpatialFit,georeferencedBy,georeferencedDate,georeferenceProtocol,georeferenceSources,georeferenceRemarks,geologicalContextID,earliestEonOrLowestEonothem,latestEonOrHighestEonothem,earliestEraOrLowestErathem,latestEraOrHighestErathem,earliestPeriodOrLowestSystem,latestPeriodOrHighestSystem,earliestEpochOrLowestSeries,latestEpochOrHighestSeries,earliestAgeOrLowestStage,latestAgeOrHighestStage,lowestBiostratigraphicZone,highestBiostratigraphicZone,lithostratigraphicTerms,group,formation,member,bed,identificationID,verbatimIdentification,identificationQualifier,typeStatus,identifiedBy,identifiedByID,dateIdentified,identificationReferences,identificationVerificationStatus,identificationRemarks,taxonID,scientificNameID,acceptedNameUsageID,parentNameUsageID,originalNameUsageID,nameAccordingToID,namePublishedInID,taxonConceptID,scientificName,acceptedNameUsage,parentNameUsage,originalNameUsage,nameAccordingTo,namePublishedIn,namePublishedInYear,higherClassification,kingdom,phylum,class,order,family,subfamily,genus,genericName,subgenus,infragenericEpithet,specificEpithet,infraspecificEpithet,cultivarEpithet,taxonRank,verbatimTaxonRank,scientificNameAuthorship,vernacularName,nomenclaturalCode,taxonomicStatus,nomenclaturalStatus,taxonRemarks +type,modified,language,license,rightsHolder,accessRights,bibliographicCitation,references,institutionID,collectionID,datasetID,institutionCode,collectionCode,datasetName,ownerInstitutionCode,basisOfRecord,informationWithheld,dataGeneralizations,dynamicProperties,occurrenceID,catalogNumber,recordNumber,recordedBy,recordedByID,individualCount,organismQuantity,organismQuantityType,sex,lifeStage,reproductiveCondition,caste,behavior,vitality,establishmentMeans,degreeOfEstablishment,pathway,georeferenceVerificationStatus,occurrenceStatus,preparations,disposition,associatedMedia,associatedOccurrences,associatedReferences,associatedSequences,associatedTaxa,otherCatalogNumbers,occurrenceRemarks,organismID,organismName,organismScope,associatedOrganisms,previousIdentifications,organismRemarks,materialSampleID,verbatimLabel,eventID,parentEventID,eventType,fieldNumber,eventDate,eventTime,startDayOfYear,endDayOfYear,year,month,day,verbatimEventDate,habitat,samplingProtocol,sampleSizeValue,sampleSizeUnit,samplingEffort,fieldNotes,eventRemarks,locationID,higherGeographyID,higherGeography,continent,waterBody,islandGroup,island,country,countryCode,stateProvince,county,municipality,locality,verbatimLocality,minimumElevationInMeters,maximumElevationInMeters,verbatimElevation,verticalDatum,minimumDepthInMeters,maximumDepthInMeters,verbatimDepth,minimumDistanceAboveSurfaceInMeters,maximumDistanceAboveSurfaceInMeters,locationAccordingTo,locationRemarks,decimalLatitude,decimalLongitude,geodeticDatum,coordinateUncertaintyInMeters,coordinatePrecision,pointRadiusSpatialFit,verbatimCoordinates,verbatimLatitude,verbatimLongitude,verbatimCoordinateSystem,verbatimSRS,footprintWKT,footprintSRS,footprintSpatialFit,georeferencedBy,georeferencedDate,georeferenceProtocol,georeferenceSources,georeferenceRemarks,geologicalContextID,earliestEonOrLowestEonothem,latestEonOrHighestEonothem,earliestEraOrLowestErathem,latestEraOrHighestErathem,earliestPeriodOrLowestSystem,latestPeriodOrHighestSystem,earliestEpochOrLowestSeries,latestEpochOrHighestSeries,earliestAgeOrLowestStage,latestAgeOrHighestStage,lowestBiostratigraphicZone,highestBiostratigraphicZone,lithostratigraphicTerms,group,formation,member,bed,identificationID,verbatimIdentification,identificationQualifier,typeStatus,identifiedBy,identifiedByID,dateIdentified,identificationReferences,identificationVerificationStatus,identificationRemarks,taxonID,scientificNameID,acceptedNameUsageID,parentNameUsageID,originalNameUsageID,nameAccordingToID,namePublishedInID,taxonConceptID,scientificName,acceptedNameUsage,parentNameUsage,originalNameUsage,nameAccordingTo,namePublishedIn,namePublishedInYear,higherClassification,kingdom,phylum,class,order,superfamily,family,subfamily,tribe,subtribe,genus,genericName,subgenus,infragenericEpithet,specificEpithet,infraspecificEpithet,cultivarEpithet,taxonRank,verbatimTaxonRank,scientificNameAuthorship,vernacularName,nomenclaturalCode,taxonomicStatus,nomenclaturalStatus,taxonRemarks diff --git a/dist/simple_dwc_vertical.csv b/dist/simple_dwc_vertical.csv index 2e76828..a96b9c4 100644 --- a/dist/simple_dwc_vertical.csv +++ b/dist/simple_dwc_vertical.csv @@ -28,7 +28,9 @@ organismQuantityType sex lifeStage reproductiveCondition +caste behavior +vitality establishmentMeans degreeOfEstablishment pathway @@ -50,8 +52,10 @@ associatedOrganisms previousIdentifications organismRemarks materialSampleID +verbatimLabel eventID parentEventID +eventType fieldNumber eventDate eventTime @@ -160,8 +164,11 @@ kingdom phylum class order +superfamily family subfamily +tribe +subtribe genus genericName subgenus diff --git a/docs/list/2021-07-15.md b/docs/list/2021-07-15.md new file mode 100644 index 0000000..598f962 --- /dev/null +++ b/docs/list/2021-07-15.md @@ -0,0 +1,16354 @@ +# List of Darwin Core terms + +Title +: List of Darwin Core terms + +Date version issued +: 2021-07-15 + +Date created +: 2020-08-12 + +Part of TDWG Standard +: + +This version +: + +Latest version +: + +Previous version +: + +Replaced by +: + +Abstract +: Darwin Core is a vocabulary standard for transmitting information about biodiversity. This document lists all terms in namespaces currently used in the vocabulary. + +Contributors +: John Wieczorek (VertNet), Peter Desmet (INBO), Steve Baskauf (Vanderbilt University Libraries), Tim Robertson (GBIF), Markus Döring (GBIF), Quentin Groom (Botanic Garden Meise), Stijn Van Hoey (INBO), David Bloom (VertNet), Paula Zermoglio (VertNet), Robert Guralnick (University of Florida), John Deck (Genomic Biodiversity Working Group), Gail Kampmeier (INHS), Dave Vieglais (KUNHM), Renato De Giovanni (CRIA), Campbell Webb (TDWG RDF/OWL Task Group), Paul J. Morris (Harvard University Herbaria/Museum of Comparative Zoölogy), Mark Schildhauer (NCEAS) + +Creator +: TDWG Darwin Core Maintenance Group + +Bibliographic citation +: Darwin Core Maintenance Group. 2021. List of Darwin Core terms. Biodiversity Information Standards (TDWG). + + +## 1 Introduction (Informative) + +This document contains terms that are part of the most recent version of the Darwin Core vocabulary (). + +This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated or superseded and should no longer be used. Deprecation or supersession is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs. + +For a simplified list that contains only the currently recommended terms, see the [Darwin Core Quick Reference Guide](../terms/). + +### 1.1 Status of the content of this document + +Sections 1 and 3 are non-normative. + +Section 2 is normative. + +In Section 4, the values of the `Term IRI` and `Definition` are normative. The values of `Term Name` are non-normative, although one can expect that the namespace abbreviation prefix is one commonly used for the term namespace. `Label` and the values of all other properties (such as `Examples` and `Notes`) are non-normative. + +### 1.2 RFC 2119 key words +The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC 2119](https://tools.ietf.org/html/rfc2119). + +### 1.3 Namespace abbreviations + +The following namespace abbreviations are used in this document: + +| abbreviation | IRI | +| --- | --- | +| dwc: | http://rs.tdwg.org/dwc/terms/ | +| dwciri: | http://rs.tdwg.org/dwc/iri/ | +| dc: | http://purl.org/dc/elements/1.1/ | +| dcterms: | http://purl.org/dc/terms/ | + +## 2 Use of Terms + +Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#143-use-of-darwin-core-terms-in-rdf-normative), terms in the `dwciri:` namespace MUST be used with IRI values. Terms in the `dwc:` and `dc:` namespaces are generally expected to have string literal values. Values for terms in the `dcterms:` namespace will depend on the details of the term. See [Section 3 of the Darwin Core RDF Guide](../rdf/#3-term-reference-normative) for details. + +## 3 Term indices +### 3.1 Index By Term Name + +(See also [3.2 Index By Label](#32-index-by-label)) + +**Classes** + +[dwc:Dataset](#dwc_Dataset) | +[dwc:Event](#dwc_Event) | +[dwc:EventAttribute](#dwc_EventAttribute) | +[dwc:EventMeasurement](#dwc_EventMeasurement) | +[dwc:FossilSpecimen](#dwc_FossilSpecimen) | +[dwc:GeologicalContext](#dwc_GeologicalContext) | +[dwc:HumanObservation](#dwc_HumanObservation) | +[dwc:Identification](#dwc_Identification) | +[dwc:LivingSpecimen](#dwc_LivingSpecimen) | +[dcterms:Location](#dcterms_Location) | +[dwc:MachineObservation](#dwc_MachineObservation) | +[dwc:MaterialCitation](#dwc_MaterialCitation) | +[dwc:MaterialSample](#dwc_MaterialSample) | +[dwc:MeasurementOrFact](#dwc_MeasurementOrFact) | +[dwc:Occurrence](#dwc_Occurrence) | +[dwc:OccurrenceMeasurement](#dwc_OccurrenceMeasurement) | +[dwc:Organism](#dwc_Organism) | +[dwc:PreservedSpecimen](#dwc_PreservedSpecimen) | +[dwc:ResourceRelationship](#dwc_ResourceRelationship) | +[dwc:Sample](#dwc_Sample) | +[dwc:SampleAttribute](#dwc_SampleAttribute) | +[dwc:SamplingEvent](#dwc_SamplingEvent) | +[dwc:SamplingLocation](#dwc_SamplingLocation) | +[dwc:Taxon](#dwc_Taxon) + +**Record level** + +[dwc:accordingTo](#dwc_accordingTo) | +[dwc:accuracy](#dwc_accuracy) | +[dwc:DwCType](#dwc_DwCType) + +**Dublin Core legacy namespace** + +[dc:language](#dc_language) | +[dc:type](#dc_type) + +**Dublin Core terms namespace** + +[dcterms:accessRights](#dcterms_accessRights) | +[dcterms:bibliographicCitation](#dcterms_bibliographicCitation) | +[dcterms:language](#dcterms_language) | +[dcterms:license](#dcterms_license) | +[dcterms:modified](#dcterms_modified) | +[dcterms:references](#dcterms_references) | +[dcterms:rights](#dcterms_rights) | +[dcterms:rightsHolder](#dcterms_rightsHolder) | +[dcterms:type](#dcterms_type) + +**Occurrence** + +[dwc:associatedMedia](#dwc_associatedMedia) | +[dwc:associatedOccurrences](#dwc_associatedOccurrences) | +[dwc:associatedReferences](#dwc_associatedReferences) | +[dwc:associatedSequences](#dwc_associatedSequences) | +[dwc:associatedTaxa](#dwc_associatedTaxa) | +[dwc:behavior](#dwc_behavior) | +[dwc:catalogNumber](#dwc_catalogNumber) | +[dwc:CatalogNumberNumeric](#dwc_CatalogNumberNumeric) | +[dwc:degreeOfEstablishment](#dwc_degreeOfEstablishment) | +[dwc:disposition](#dwc_disposition) | +[dwc:establishmentMeans](#dwc_establishmentMeans) | +[dwc:georeferenceVerificationStatus](#dwc_georeferenceVerificationStatus) | +[dwc:individualCount](#dwc_individualCount) | +[dwc:individualID](#dwc_individualID) | +[dwc:lifeStage](#dwc_lifeStage) | +[dwc:occurrenceAttributes](#dwc_occurrenceAttributes) | +[dwc:occurrenceDetails](#dwc_occurrenceDetails) | +[dwc:occurrenceID](#dwc_occurrenceID) | +[dwc:occurrenceRemarks](#dwc_occurrenceRemarks) | +[dwc:occurrenceStatus](#dwc_occurrenceStatus) | +[dwc:organismQuantity](#dwc_organismQuantity) | +[dwc:organismQuantityType](#dwc_organismQuantityType) | +[dwc:otherCatalogNumbers](#dwc_otherCatalogNumbers) | +[dwc:pathway](#dwc_pathway) | +[dwc:preparations](#dwc_preparations) | +[dwc:recordedBy](#dwc_recordedBy) | +[dwc:recordedByID](#dwc_recordedByID) | +[dwc:recordNumber](#dwc_recordNumber) | +[dwc:reproductiveCondition](#dwc_reproductiveCondition) | +[dwc:sex](#dwc_sex) + +**Organism** + +[dwc:associatedOrganisms](#dwc_associatedOrganisms) | +[dwc:organismID](#dwc_organismID) | +[dwc:organismName](#dwc_organismName) | +[dwc:organismRemarks](#dwc_organismRemarks) | +[dwc:organismScope](#dwc_organismScope) | +[dwc:previousIdentifications](#dwc_previousIdentifications) + +**Material Sample** + +[dwc:materialSampleID](#dwc_materialSampleID) + +**Event** + +[dwc:day](#dwc_day) | +[dwc:EarliestDateCollected](#dwc_EarliestDateCollected) | +[dwc:endDayOfYear](#dwc_endDayOfYear) | +[dwc:EndTimeOfDay](#dwc_EndTimeOfDay) | +[dwc:eventAttributes](#dwc_eventAttributes) | +[dwc:eventDate](#dwc_eventDate) | +[dwc:eventID](#dwc_eventID) | +[dwc:eventRemarks](#dwc_eventRemarks) | +[dwc:eventTime](#dwc_eventTime) | +[dwc:fieldNotes](#dwc_fieldNotes) | +[dwc:fieldNumber](#dwc_fieldNumber) | +[dwc:habitat](#dwc_habitat) | +[dwc:LatestDateCollected](#dwc_LatestDateCollected) | +[dwc:month](#dwc_month) | +[dwc:parentEventID](#dwc_parentEventID) | +[dwc:sampleSizeUnit](#dwc_sampleSizeUnit) | +[dwc:sampleSizeValue](#dwc_sampleSizeValue) | +[dwc:samplingEffort](#dwc_samplingEffort) | +[dwc:samplingProtocol](#dwc_samplingProtocol) | +[dwc:startDayOfYear](#dwc_startDayOfYear) | +[dwc:StartTimeOfDay](#dwc_StartTimeOfDay) | +[dwc:verbatimEventDate](#dwc_verbatimEventDate) | +[dwc:year](#dwc_year) + +**Location** + +[dwc:continent](#dwc_continent) | +[dwc:coordinatePrecision](#dwc_coordinatePrecision) | +[dwc:coordinateUncertaintyInMeters](#dwc_coordinateUncertaintyInMeters) | +[dwc:country](#dwc_country) | +[dwc:countryCode](#dwc_countryCode) | +[dwc:county](#dwc_county) | +[dwc:decimalLatitude](#dwc_decimalLatitude) | +[dwc:decimalLongitude](#dwc_decimalLongitude) | +[dwc:footprintSpatialFit](#dwc_footprintSpatialFit) | +[dwc:footprintSRS](#dwc_footprintSRS) | +[dwc:footprintWKT](#dwc_footprintWKT) | +[dwc:geodeticDatum](#dwc_geodeticDatum) | +[dwc:georeferencedBy](#dwc_georeferencedBy) | +[dwc:georeferencedDate](#dwc_georeferencedDate) | +[dwc:georeferenceProtocol](#dwc_georeferenceProtocol) | +[dwc:georeferenceRemarks](#dwc_georeferenceRemarks) | +[dwc:georeferenceSources](#dwc_georeferenceSources) | +[dwc:higherGeography](#dwc_higherGeography) | +[dwc:higherGeographyID](#dwc_higherGeographyID) | +[dwc:island](#dwc_island) | +[dwc:islandGroup](#dwc_islandGroup) | +[dwc:locality](#dwc_locality) | +[dwc:locationAccordingTo](#dwc_locationAccordingTo) | +[dwc:locationAttributes](#dwc_locationAttributes) | +[dwc:locationID](#dwc_locationID) | +[dwc:locationRemarks](#dwc_locationRemarks) | +[dwc:maximumDepthInMeters](#dwc_maximumDepthInMeters) | +[dwc:maximumDistanceAboveSurfaceInMeters](#dwc_maximumDistanceAboveSurfaceInMeters) | +[dwc:maximumElevationInMeters](#dwc_maximumElevationInMeters) | +[dwc:minimumDepthInMeters](#dwc_minimumDepthInMeters) | +[dwc:minimumDistanceAboveSurfaceInMeters](#dwc_minimumDistanceAboveSurfaceInMeters) | +[dwc:minimumElevationInMeters](#dwc_minimumElevationInMeters) | +[dwc:municipality](#dwc_municipality) | +[dwc:pointRadiusSpatialFit](#dwc_pointRadiusSpatialFit) | +[dwc:SamplingLocationID](#dwc_SamplingLocationID) | +[dwc:SamplingLocationRemarks](#dwc_SamplingLocationRemarks) | +[dwc:stateProvince](#dwc_stateProvince) | +[dwc:verbatimCoordinates](#dwc_verbatimCoordinates) | +[dwc:verbatimCoordinateSystem](#dwc_verbatimCoordinateSystem) | +[dwc:verbatimDepth](#dwc_verbatimDepth) | +[dwc:verbatimElevation](#dwc_verbatimElevation) | +[dwc:verbatimLatitude](#dwc_verbatimLatitude) | +[dwc:verbatimLocality](#dwc_verbatimLocality) | +[dwc:verbatimLongitude](#dwc_verbatimLongitude) | +[dwc:verbatimSRS](#dwc_verbatimSRS) | +[dwc:verticalDatum](#dwc_verticalDatum) | +[dwc:waterBody](#dwc_waterBody) + +**Geological Context** + +[dwc:bed](#dwc_bed) | +[dwc:earliestAgeOrLowestStage](#dwc_earliestAgeOrLowestStage) | +[dwc:earliestEonOrLowestEonothem](#dwc_earliestEonOrLowestEonothem) | +[dwc:earliestEpochOrLowestSeries](#dwc_earliestEpochOrLowestSeries) | +[dwc:earliestEraOrLowestErathem](#dwc_earliestEraOrLowestErathem) | +[dwc:earliestPeriodOrLowestSystem](#dwc_earliestPeriodOrLowestSystem) | +[dwc:formation](#dwc_formation) | +[dwc:geologicalContextID](#dwc_geologicalContextID) | +[dwc:group](#dwc_group) | +[dwc:highestBiostratigraphicZone](#dwc_highestBiostratigraphicZone) | +[dwc:latestAgeOrHighestStage](#dwc_latestAgeOrHighestStage) | +[dwc:latestEonOrHighestEonothem](#dwc_latestEonOrHighestEonothem) | +[dwc:latestEpochOrHighestSeries](#dwc_latestEpochOrHighestSeries) | +[dwc:latestEraOrHighestErathem](#dwc_latestEraOrHighestErathem) | +[dwc:latestPeriodOrHighestSystem](#dwc_latestPeriodOrHighestSystem) | +[dwc:lithostratigraphicTerms](#dwc_lithostratigraphicTerms) | +[dwc:lowestBiostratigraphicZone](#dwc_lowestBiostratigraphicZone) | +[dwc:member](#dwc_member) + +**Identification** + +[dwc:dateIdentified](#dwc_dateIdentified) | +[dwc:identificationAttributes](#dwc_identificationAttributes) | +[dwc:identificationID](#dwc_identificationID) | +[dwc:identificationQualifier](#dwc_identificationQualifier) | +[dwc:identificationReferences](#dwc_identificationReferences) | +[dwc:identificationRemarks](#dwc_identificationRemarks) | +[dwc:identificationVerificationStatus](#dwc_identificationVerificationStatus) | +[dwc:identifiedBy](#dwc_identifiedBy) | +[dwc:identifiedByID](#dwc_identifiedByID) | +[dwc:PreviousIdentifications](#dwc_PreviousIdentifications) | +[dwc:typeStatus](#dwc_typeStatus) | +[dwc:verbatimIdentification](#dwc_verbatimIdentification) + +**Taxon** + +[dwc:acceptedNameUsage](#dwc_acceptedNameUsage) | +[dwc:acceptedNameUsageID](#dwc_acceptedNameUsageID) | +[dwc:acceptedScientificName](#dwc_acceptedScientificName) | +[dwc:acceptedScientificNameID](#dwc_acceptedScientificNameID) | +[dwc:AcceptedTaxon](#dwc_AcceptedTaxon) | +[dwc:AcceptedTaxonID](#dwc_AcceptedTaxonID) | +[dwc:acceptedTaxonID](#dwc_acceptedTaxonID) | +[dwc:acceptedTaxonName](#dwc_acceptedTaxonName) | +[dwc:acceptedTaxonNameID](#dwc_acceptedTaxonNameID) | +[dwc:basionym](#dwc_basionym) | +[dwc:basionymID](#dwc_basionymID) | +[dwc:binomial](#dwc_binomial) | +[dwc:class](#dwc_class) | +[dwc:cultivarEpithet](#dwc_cultivarEpithet) | +[dwc:family](#dwc_family) | +[dwc:genericName](#dwc_genericName) | +[dwc:genus](#dwc_genus) | +[dwc:higherClassification](#dwc_higherClassification) | +[dwc:HigherTaxon](#dwc_HigherTaxon) | +[dwc:higherTaxonconceptID](#dwc_higherTaxonconceptID) | +[dwc:HigherTaxonID](#dwc_HigherTaxonID) | +[dwc:higherTaxonName](#dwc_higherTaxonName) | +[dwc:higherTaxonNameID](#dwc_higherTaxonNameID) | +[dwc:infragenericEpithet](#dwc_infragenericEpithet) | +[dwc:infraspecificEpithet](#dwc_infraspecificEpithet) | +[dwc:kingdom](#dwc_kingdom) | +[dwc:nameAccordingTo](#dwc_nameAccordingTo) | +[dwc:nameAccordingToID](#dwc_nameAccordingToID) | +[dwc:namePublicationID](#dwc_namePublicationID) | +[dwc:namePublishedIn](#dwc_namePublishedIn) | +[dwc:namePublishedInID](#dwc_namePublishedInID) | +[dwc:namePublishedInYear](#dwc_namePublishedInYear) | +[dwc:nomenclaturalCode](#dwc_nomenclaturalCode) | +[dwc:nomenclaturalStatus](#dwc_nomenclaturalStatus) | +[dwc:order](#dwc_order) | +[dwc:originalNameUsage](#dwc_originalNameUsage) | +[dwc:originalNameUsageID](#dwc_originalNameUsageID) | +[dwc:parentNameUsage](#dwc_parentNameUsage) | +[dwc:parentNameUsageID](#dwc_parentNameUsageID) | +[dwc:phylum](#dwc_phylum) | +[dwc:scientificName](#dwc_scientificName) | +[dwc:scientificNameAuthorship](#dwc_scientificNameAuthorship) | +[dwc:scientificNameID](#dwc_scientificNameID) | +[dwc:scientificNameRank](#dwc_scientificNameRank) | +[dwc:specificEpithet](#dwc_specificEpithet) | +[dwc:subfamily](#dwc_subfamily) | +[dwc:subgenus](#dwc_subgenus) | +[dwc:taxonAccordingTo](#dwc_taxonAccordingTo) | +[dwc:taxonAttributes](#dwc_taxonAttributes) | +[dwc:taxonConceptID](#dwc_taxonConceptID) | +[dwc:TaxonID](#dwc_TaxonID) | +[dwc:taxonID](#dwc_taxonID) | +[dwc:taxonNameID](#dwc_taxonNameID) | +[dwc:taxonomicStatus](#dwc_taxonomicStatus) | +[dwc:taxonRank](#dwc_taxonRank) | +[dwc:taxonRemarks](#dwc_taxonRemarks) | +[dwc:verbatimScientificNameRank](#dwc_verbatimScientificNameRank) | +[dwc:verbatimTaxonRank](#dwc_verbatimTaxonRank) | +[dwc:vernacularName](#dwc_vernacularName) + +**Measurement or Fact** + +[dwc:measurementAccuracy](#dwc_measurementAccuracy) | +[dwc:measurementDeterminedBy](#dwc_measurementDeterminedBy) | +[dwc:measurementDeterminedDate](#dwc_measurementDeterminedDate) | +[dwc:measurementID](#dwc_measurementID) | +[dwc:measurementMethod](#dwc_measurementMethod) | +[dwc:measurementRemarks](#dwc_measurementRemarks) | +[dwc:measurementType](#dwc_measurementType) | +[dwc:measurementUnit](#dwc_measurementUnit) | +[dwc:measurementValue](#dwc_measurementValue) + +**Resource Relationship** + +[dwc:RelatedBasisOfRecord](#dwc_RelatedBasisOfRecord) | +[dwc:relatedResourceID](#dwc_relatedResourceID) | +[dwc:relatedResourceType](#dwc_relatedResourceType) | +[dwc:relationshipAccordingTo](#dwc_relationshipAccordingTo) | +[dwc:relationshipEstablishedDate](#dwc_relationshipEstablishedDate) | +[dwc:relationshipOfResource](#dwc_relationshipOfResource) | +[dwc:relationshipOfResourceID](#dwc_relationshipOfResourceID) | +[dwc:relationshipRemarks](#dwc_relationshipRemarks) | +[dwc:resourceID](#dwc_resourceID) | +[dwc:resourceRelationshipID](#dwc_resourceRelationshipID) + +**IRI-value terms** + +[dwciri:behavior](#dwciri_behavior) | +[dwciri:dataGeneralizations](#dwciri_dataGeneralizations) | +[dwciri:degreeOfEstablishment](#dwciri_degreeOfEstablishment) | +[dwciri:disposition](#dwciri_disposition) | +[dwciri:earliestGeochronologicalEra](#dwciri_earliestGeochronologicalEra) | +[dwciri:establishmentMeans](#dwciri_establishmentMeans) | +[dwciri:fieldNotes](#dwciri_fieldNotes) | +[dwciri:fieldNumber](#dwciri_fieldNumber) | +[dwciri:footprintSRS](#dwciri_footprintSRS) | +[dwciri:footprintWKT](#dwciri_footprintWKT) | +[dwciri:fromLithostratigraphicUnit](#dwciri_fromLithostratigraphicUnit) | +[dwciri:geodeticDatum](#dwciri_geodeticDatum) | +[dwciri:georeferencedBy](#dwciri_georeferencedBy) | +[dwciri:georeferenceProtocol](#dwciri_georeferenceProtocol) | +[dwciri:georeferenceSources](#dwciri_georeferenceSources) | +[dwciri:georeferenceVerificationStatus](#dwciri_georeferenceVerificationStatus) | +[dwciri:habitat](#dwciri_habitat) | +[dwciri:identificationQualifier](#dwciri_identificationQualifier) | +[dwciri:identificationVerificationStatus](#dwciri_identificationVerificationStatus) | +[dwciri:identifiedBy](#dwciri_identifiedBy) | +[dwciri:inCollection](#dwciri_inCollection) | +[dwciri:inDataset](#dwciri_inDataset) | +[dwciri:inDescribedPlace](#dwciri_inDescribedPlace) | +[dwciri:informationWithheld](#dwciri_informationWithheld) | +[dwciri:latestGeochronologicalEra](#dwciri_latestGeochronologicalEra) | +[dwciri:lifeStage](#dwciri_lifeStage) | +[dwciri:locationAccordingTo](#dwciri_locationAccordingTo) | +[dwciri:measurementDeterminedBy](#dwciri_measurementDeterminedBy) | +[dwciri:measurementMethod](#dwciri_measurementMethod) | +[dwciri:measurementType](#dwciri_measurementType) | +[dwciri:measurementUnit](#dwciri_measurementUnit) | +[dwciri:measurementValue](#dwciri_measurementValue) | +[dwciri:occurrenceStatus](#dwciri_occurrenceStatus) | +[dwciri:organismQuantityType](#dwciri_organismQuantityType) | +[dwciri:pathway](#dwciri_pathway) | +[dwciri:preparations](#dwciri_preparations) | +[dwciri:recordedBy](#dwciri_recordedBy) | +[dwciri:recordNumber](#dwciri_recordNumber) | +[dwciri:reproductiveCondition](#dwciri_reproductiveCondition) | +[dwciri:sampleSizeUnit](#dwciri_sampleSizeUnit) | +[dwciri:samplingProtocol](#dwciri_samplingProtocol) | +[dwciri:sex](#dwciri_sex) | +[dwciri:toTaxon](#dwciri_toTaxon) | +[dwciri:typeStatus](#dwciri_typeStatus) | +[dwciri:verbatimCoordinateSystem](#dwciri_verbatimCoordinateSystem) | +[dwciri:verbatimSRS](#dwciri_verbatimSRS) | +[dwciri:verticalDatum](#dwciri_verticalDatum) + +### 3.2 Index By Label + +(See also [3.1 Index By Term Name](#31-index-by-term-name)) + +**Classes** + +[Dataset](#dwc_Dataset) | +[Event](#dwc_Event) | +[Event Attribute](#dwc_EventAttribute) | +[Event Measurement](#dwc_EventMeasurement) | +[Fossil Specimen](#dwc_FossilSpecimen) | +[Geological Context](#dwc_GeologicalContext) | +[Human Observation](#dwc_HumanObservation) | +[Identification](#dwc_Identification) | +[Living Specimen](#dwc_LivingSpecimen) | +[Location](#dcterms_Location) | +[Machine Observation](#dwc_MachineObservation) | +[Material Citation](#dwc_MaterialCitation) | +[Material Sample](#dwc_MaterialSample) | +[Measurement or Fact](#dwc_MeasurementOrFact) | +[Occurrence](#dwc_Occurrence) | +[Occurrence Measurement](#dwc_OccurrenceMeasurement) | +[Organism](#dwc_Organism) | +[Preserved Specimen](#dwc_PreservedSpecimen) | +[Resource Relationship](#dwc_ResourceRelationship) | +[Sample](#dwc_Sample) | +[Sample Attribute](#dwc_SampleAttribute) | +[Sampling Event](#dwc_SamplingEvent) | +[Sampling Location](#dwc_SamplingLocation) | +[Taxon](#dwc_Taxon) + +**Record level** + +[According To](#dwc_accordingTo) | +[Accuracy](#dwc_accuracy) | +[Darwin Core Type](#dwc_DwCType) + +**Dublin Core legacy namespace** + +[Language](#dc_language) | +[Type](#dc_type) + +**Dublin Core terms namespace** + +[Access Rights](#dcterms_accessRights) | +[Bibliographic Citation](#dcterms_bibliographicCitation) | +[Date Modified](#dcterms_modified) | +[Language](#dcterms_language) | +[License](#dcterms_license) | +[References](#dcterms_references) | +[Rights](#dcterms_rights) | +[Rights Holder](#dcterms_rightsHolder) | +[Type](#dcterms_type) + +**Occurrence** + +[Associated Media](#dwc_associatedMedia) | +[Associated Occurrences](#dwc_associatedOccurrences) | +[Associated References](#dwc_associatedReferences) | +[Associated Sequences](#dwc_associatedSequences) | +[Associated Taxa](#dwc_associatedTaxa) | +[Behavior](#dwc_behavior) | +[Catalog Number](#dwc_catalogNumber) | +[Catalog Number Numeric](#dwc_CatalogNumberNumeric) | +[Degree of Establishment](#dwc_degreeOfEstablishment) | +[Disposition](#dwc_disposition) | +[Establishment Means](#dwc_establishmentMeans) | +[Georeference Verification Status](#dwc_georeferenceVerificationStatus) | +[Individual Count](#dwc_individualCount) | +[Individual ID](#dwc_individualID) | +[Life Stage](#dwc_lifeStage) | +[Occurrence Attributes](#dwc_occurrenceAttributes) | +[Occurrence Details](#dwc_occurrenceDetails) | +[Occurrence ID](#dwc_occurrenceID) | +[Occurrence Remarks](#dwc_occurrenceRemarks) | +[Occurrence Status](#dwc_occurrenceStatus) | +[Organism Quantity](#dwc_organismQuantity) | +[Organism Quantity Type](#dwc_organismQuantityType) | +[Other Catalog Numbers](#dwc_otherCatalogNumbers) | +[Pathway](#dwc_pathway) | +[Preparations](#dwc_preparations) | +[Record Number](#dwc_recordNumber) | +[Recorded By](#dwc_recordedBy) | +[Recorded By ID](#dwc_recordedByID) | +[Reproductive Condition](#dwc_reproductiveCondition) | +[Sex](#dwc_sex) + +**Organism** + +[Associated Organisms](#dwc_associatedOrganisms) | +[Organism ID](#dwc_organismID) | +[Organism Name](#dwc_organismName) | +[Organism Remarks](#dwc_organismRemarks) | +[Organism Scope](#dwc_organismScope) | +[Previous Identifications](#dwc_previousIdentifications) + +**Material Sample** + +[Material Sample ID](#dwc_materialSampleID) + +**Event** + +[Day](#dwc_day) | +[Earliest Date Collected](#dwc_EarliestDateCollected) | +[End Day Of Year](#dwc_endDayOfYear) | +[End Time of Day](#dwc_EndTimeOfDay) | +[Event Attributes](#dwc_eventAttributes) | +[Event Date](#dwc_eventDate) | +[Event ID](#dwc_eventID) | +[Event Remarks](#dwc_eventRemarks) | +[Event Time](#dwc_eventTime) | +[Field Notes](#dwc_fieldNotes) | +[Field Number](#dwc_fieldNumber) | +[Habitat](#dwc_habitat) | +[Latest Date Collected](#dwc_LatestDateCollected) | +[Month](#dwc_month) | +[Parent Event ID](#dwc_parentEventID) | +[Sample Size Unit](#dwc_sampleSizeUnit) | +[Sample Size Value](#dwc_sampleSizeValue) | +[Sampling Effort](#dwc_samplingEffort) | +[Sampling Protocol](#dwc_samplingProtocol) | +[Start Day Of Year](#dwc_startDayOfYear) | +[Start Time of Day](#dwc_StartTimeOfDay) | +[Verbatim EventDate](#dwc_verbatimEventDate) | +[Year](#dwc_year) + +**Location** + +[Continent](#dwc_continent) | +[Coordinate Precision](#dwc_coordinatePrecision) | +[Coordinate Uncertainty In Meters](#dwc_coordinateUncertaintyInMeters) | +[Country](#dwc_country) | +[Country Code](#dwc_countryCode) | +[County](#dwc_county) | +[Decimal Latitude](#dwc_decimalLatitude) | +[Decimal Longitude](#dwc_decimalLongitude) | +[Footprint SRS](#dwc_footprintSRS) | +[Footprint Spatial Fit](#dwc_footprintSpatialFit) | +[Footprint WKT](#dwc_footprintWKT) | +[Geodetic Datum](#dwc_geodeticDatum) | +[Georeference Protocol](#dwc_georeferenceProtocol) | +[Georeference Remarks](#dwc_georeferenceRemarks) | +[Georeference Sources](#dwc_georeferenceSources) | +[Georeferenced By](#dwc_georeferencedBy) | +[Georeferenced Date](#dwc_georeferencedDate) | +[Higher Geography](#dwc_higherGeography) | +[Higher Geography ID](#dwc_higherGeographyID) | +[Island](#dwc_island) | +[Island Group](#dwc_islandGroup) | +[Locality](#dwc_locality) | +[Location According To](#dwc_locationAccordingTo) | +[Location Attributes](#dwc_locationAttributes) | +[Location ID](#dwc_locationID) | +[Location Remarks](#dwc_locationRemarks) | +[Maximum Depth In Meters](#dwc_maximumDepthInMeters) | +[Maximum Distance Above Surface In Meters](#dwc_maximumDistanceAboveSurfaceInMeters) | +[Maximum Elevation In Meters](#dwc_maximumElevationInMeters) | +[Minimum Depth In Meters](#dwc_minimumDepthInMeters) | +[Minimum Distance Above Surface In Meters](#dwc_minimumDistanceAboveSurfaceInMeters) | +[Minimum Elevation In Meters](#dwc_minimumElevationInMeters) | +[Municipality](#dwc_municipality) | +[Point Radius Spatial Fit](#dwc_pointRadiusSpatialFit) | +[Sampling Location ID](#dwc_SamplingLocationID) | +[Sampling Location Remarks](#dwc_SamplingLocationRemarks) | +[State Province](#dwc_stateProvince) | +[Verbatim Coordinate System](#dwc_verbatimCoordinateSystem) | +[Verbatim Coordinates](#dwc_verbatimCoordinates) | +[Verbatim Depth](#dwc_verbatimDepth) | +[Verbatim Elevation](#dwc_verbatimElevation) | +[Verbatim Latitude](#dwc_verbatimLatitude) | +[Verbatim Locality](#dwc_verbatimLocality) | +[Verbatim Longitude](#dwc_verbatimLongitude) | +[Verbatim SRS](#dwc_verbatimSRS) | +[Vertical Datum](#dwc_verticalDatum) | +[Water Body](#dwc_waterBody) + +**Geological Context** + +[Bed](#dwc_bed) | +[Earliest Age Or Lowest Stage](#dwc_earliestAgeOrLowestStage) | +[Earliest Eon Or Lowest Eonothem](#dwc_earliestEonOrLowestEonothem) | +[Earliest Epoch Or Lowest Series](#dwc_earliestEpochOrLowestSeries) | +[Earliest Era Or Lowest Erathem](#dwc_earliestEraOrLowestErathem) | +[Earliest Period Or Lowest System](#dwc_earliestPeriodOrLowestSystem) | +[Formation](#dwc_formation) | +[Geological Context ID](#dwc_geologicalContextID) | +[Group](#dwc_group) | +[Highest Biostratigraphic Zone](#dwc_highestBiostratigraphicZone) | +[Latest AgeOr Highest Stage](#dwc_latestAgeOrHighestStage) | +[Latest Eon Or Highest Eonothem](#dwc_latestEonOrHighestEonothem) | +[Latest Epoch Or Highest Series](#dwc_latestEpochOrHighestSeries) | +[Latest Era Or Highest Erathem](#dwc_latestEraOrHighestErathem) | +[Latest Period Or Highest System](#dwc_latestPeriodOrHighestSystem) | +[Lithostratigraphic Terms](#dwc_lithostratigraphicTerms) | +[Lowest Biostratigraphic Zone](#dwc_lowestBiostratigraphicZone) | +[Member](#dwc_member) + +**Identification** + +[Date Identified](#dwc_dateIdentified) | +[Identification Attributes](#dwc_identificationAttributes) | +[Identification ID](#dwc_identificationID) | +[Identification Qualifier](#dwc_identificationQualifier) | +[Identification References](#dwc_identificationReferences) | +[Identification Remarks](#dwc_identificationRemarks) | +[Identification Verification Status](#dwc_identificationVerificationStatus) | +[Identified By](#dwc_identifiedBy) | +[Identified By ID](#dwc_identifiedByID) | +[Previous Identifications](#dwc_PreviousIdentifications) | +[Type Status](#dwc_typeStatus) | +[Verbatim Identification](#dwc_verbatimIdentification) + +**Taxon** + +[Accepted Name Usage](#dwc_acceptedNameUsage) | +[Accepted Name Usage ID](#dwc_acceptedNameUsageID) | +[Accepted Scientific Name](#dwc_acceptedScientificName) | +[Accepted Scientific Name ID](#dwc_acceptedScientificNameID) | +[Accepted Taxon](#dwc_AcceptedTaxon) | +[Accepted Taxon ID](#dwc_AcceptedTaxonID) | +[Accepted Taxon Name](#dwc_acceptedTaxonName) | +[Accepted Taxon Name ID](#dwc_acceptedTaxonNameID) | +[Basionym](#dwc_basionym) | +[Basionym ID](#dwc_basionymID) | +[Binomial](#dwc_binomial) | +[Class](#dwc_class) | +[Cultivar Epithet](#dwc_cultivarEpithet) | +[Family](#dwc_family) | +[Generic Name](#dwc_genericName) | +[Genus](#dwc_genus) | +[Higher Classification](#dwc_higherClassification) | +[Higher Taxon](#dwc_HigherTaxon) | +[Higher Taxon Concept ID](#dwc_higherTaxonconceptID) | +[Higher Taxon ID](#dwc_HigherTaxonID) | +[Higher Taxon Name](#dwc_higherTaxonName) | +[Higher Taxon Name ID](#dwc_higherTaxonNameID) | +[Infrageneric Epithet](#dwc_infragenericEpithet) | +[Infraspecific Epithet](#dwc_infraspecificEpithet) | +[Kingdom](#dwc_kingdom) | +[Name According To](#dwc_nameAccordingTo) | +[Name According To ID](#dwc_nameAccordingToID) | +[Name Publication ID](#dwc_namePublicationID) | +[Name Published In](#dwc_namePublishedIn) | +[Name Published In ID](#dwc_namePublishedInID) | +[Name Published In Year](#dwc_namePublishedInYear) | +[Nomenclatural Code](#dwc_nomenclaturalCode) | +[Nomenclatural Status](#dwc_nomenclaturalStatus) | +[Order](#dwc_order) | +[Original Name Usage](#dwc_originalNameUsage) | +[Original Name Usage ID](#dwc_originalNameUsageID) | +[Parent Name Usage](#dwc_parentNameUsage) | +[Parent Name Usage ID](#dwc_parentNameUsageID) | +[Phylum](#dwc_phylum) | +[Scientific Name](#dwc_scientificName) | +[Scientific Name Authorship](#dwc_scientificNameAuthorship) | +[Scientific Name ID](#dwc_scientificNameID) | +[Scientific Name Rank](#dwc_scientificNameRank) | +[Specific Epithet](#dwc_specificEpithet) | +[Subfamily](#dwc_subfamily) | +[Subgenus](#dwc_subgenus) | +[Taxon According To](#dwc_taxonAccordingTo) | +[Taxon Attributes](#dwc_taxonAttributes) | +[Taxon Concept ID](#dwc_taxonConceptID) | +[Taxon ID](#dwc_TaxonID) | +[Taxon Name ID](#dwc_taxonNameID) | +[Taxon Rank](#dwc_taxonRank) | +[Taxon Remarks](#dwc_taxonRemarks) | +[Taxonomic Status](#dwc_taxonomicStatus) | +[Verbatim Scientific Name Rank](#dwc_verbatimScientificNameRank) | +[Verbatim Taxon Rank](#dwc_verbatimTaxonRank) | +[Vernacular Name](#dwc_vernacularName) + +**Measurement or Fact** + +[Measurement Accuracy](#dwc_measurementAccuracy) | +[Measurement Determined By](#dwc_measurementDeterminedBy) | +[Measurement Determined Date](#dwc_measurementDeterminedDate) | +[Measurement ID](#dwc_measurementID) | +[Measurement Method](#dwc_measurementMethod) | +[Measurement Remarks](#dwc_measurementRemarks) | +[Measurement Type](#dwc_measurementType) | +[Measurement Unit](#dwc_measurementUnit) | +[Measurement Value](#dwc_measurementValue) + +**Resource Relationship** + +[Related Basis of Record](#dwc_RelatedBasisOfRecord) | +[Related Resource ID](#dwc_relatedResourceID) | +[Related Resource Type](#dwc_relatedResourceType) | +[Relationship According To](#dwc_relationshipAccordingTo) | +[Relationship Established Date](#dwc_relationshipEstablishedDate) | +[Relationship Of Resource](#dwc_relationshipOfResource) | +[Relationship Of Resource ID](#dwc_relationshipOfResourceID) | +[Relationship Remarks](#dwc_relationshipRemarks) | +[Resource ID](#dwc_resourceID) | +[Resource Relationship ID](#dwc_resourceRelationshipID) + +**IRI-value terms** + +[Behavior (IRI)](#dwciri_behavior) | +[Data Generalizations (IRI)](#dwciri_dataGeneralizations) | +[Degree of Establishment (IRI)](#dwciri_degreeOfEstablishment) | +[Disposition (IRI)](#dwciri_disposition) | +[Earliest Geochronological Era](#dwciri_earliestGeochronologicalEra) | +[Establishment Means (IRI)](#dwciri_establishmentMeans) | +[Field Notes (IRI)](#dwciri_fieldNotes) | +[Field Number (IRI)](#dwciri_fieldNumber) | +[Footprint SRS (IRI)](#dwciri_footprintSRS) | +[Footprint WKT (IRI)](#dwciri_footprintWKT) | +[From Lithostratigraphic Unit](#dwciri_fromLithostratigraphicUnit) | +[Geodetic Datum (IRI)](#dwciri_geodeticDatum) | +[Georeference Protocol (IRI)](#dwciri_georeferenceProtocol) | +[Georeference Sources (IRI)](#dwciri_georeferenceSources) | +[Georeference Verification Status (IRI)](#dwciri_georeferenceVerificationStatus) | +[Georeferenced By (IRI)](#dwciri_georeferencedBy) | +[Habitat (IRI)](#dwciri_habitat) | +[Identification Qualifier (IRI)](#dwciri_identificationQualifier) | +[Identification Verification Status (IRI)](#dwciri_identificationVerificationStatus) | +[Identified By (IRI)](#dwciri_identifiedBy) | +[In Collection](#dwciri_inCollection) | +[In Dataset](#dwciri_inDataset) | +[In Described Place](#dwciri_inDescribedPlace) | +[Information Withheld (IRI)](#dwciri_informationWithheld) | +[Latest Geochronological Era](#dwciri_latestGeochronologicalEra) | +[Life Stage (IRI)](#dwciri_lifeStage) | +[Location According To (IRI)](#dwciri_locationAccordingTo) | +[Measurement Determined By (IRI)](#dwciri_measurementDeterminedBy) | +[Measurement Method (IRI)](#dwciri_measurementMethod) | +[Measurement Type (IRI)](#dwciri_measurementType) | +[Measurement Unit (IRI)](#dwciri_measurementUnit) | +[Measurement Value (IRI)](#dwciri_measurementValue) | +[Occurrence Status (IRI)](#dwciri_occurrenceStatus) | +[Organism Quantity Type (IRI)](#dwciri_organismQuantityType) | +[Pathway (IRI)](#dwciri_pathway) | +[Preparations (IRI)](#dwciri_preparations) | +[Record Number (IRI)](#dwciri_recordNumber) | +[Recorded By (IRI)](#dwciri_recordedBy) | +[Reproductive Condition (IRI)](#dwciri_reproductiveCondition) | +[Sampling Protocol (IRI)](#dwciri_samplingProtocol) | +[Sampling Size Unit (IRI)](#dwciri_sampleSizeUnit) | +[Sex (IRI)](#dwciri_sex) | +[To Taxon](#dwciri_toTaxon) | +[Type Status (IRI)](#dwciri_typeStatus) | +[Verbatim Coordinate System (IRI)](#dwciri_verbatimCoordinateSystem) | +[Verbatim SRS (IRI)](#dwciri_verbatimSRS) | +[Vertical Datum (IRI)](#dwciri_verticalDatum) + +## 4 Vocabulary + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedNameUsage
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedNameUsage
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2021-07-15
    LabelAccepted Name Usage
    DefinitionThe full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.
    NotesThe full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided scientificName is considered by the reference indicated in the accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to an Organism or Occurrence, this term should be used in cases where a content provider regards the provided scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed organism), and the name asserted by the content provider to be taxonomically accepted.
    ExamplesTamias minimus (valid name for Eutamias minimus).
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedNameUsageID
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedNameUsageID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2021-07-15
    LabelAccepted Name Usage ID
    DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.
    NotesThis term should be used for synonyms or misapplied names to refer to the taxonID of a Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL)
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedScientificName
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedScientificName
    Modified2009-09-21
    LabelAccepted Scientific Name
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedNameUsage
    DefinitionThe currently valid (zoological) or accepted (botanical) name for the scientificName.
    NotesExample: "Tamias minimus" valid name for "Eutamias minimus"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedScientificNameID
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedScientificNameID
    Modified2009-08-24
    LabelAccepted Scientific Name ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedTaxonID
    DefinitionA unique identifier for the acceptedScientificName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:AcceptedTaxon
    Term IRIhttp://rs.tdwg.org/dwc/terms/AcceptedTaxon
    Modified2009-04-24
    LabelAccepted Taxon
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedTaxonName
    DefinitionThe currently valid (zoological) or accepted (botanical) name for the ScientificName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:AcceptedTaxonID
    Term IRIhttp://rs.tdwg.org/dwc/terms/AcceptedTaxonID
    Modified2009-04-24
    LabelAccepted Taxon ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedTaxonNameID
    DefinitionA global unique identifier for the parent to the AcceptedTaxon.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedTaxonID
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedTaxonID
    Modified2009-09-21
    LabelAccepted Taxon ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedNameUsageID
    DefinitionAn identifier for the name of the currently valid (zoological) or accepted (botanical) taxon. See acceptedTaxon.
    NotesExample: "8fa58e08-08de-4ac1-b69c-1235340b7001"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedTaxonName
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedTaxonName
    Modified2009-07-06
    LabelAccepted Taxon Name
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedScientificName
    DefinitionThe currently valid (zoological) or accepted (botanical) name for the scientificName.
    NotesExample: "Tamias minimus" valid name for "Eutamias minimus"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:acceptedTaxonNameID
    Term IRIhttp://rs.tdwg.org/dwc/terms/acceptedTaxonNameID
    Modified2009-07-06
    LabelAccepted Taxon Name ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/acceptedScientificNameID
    DefinitionA unique identifier for the acceptedTaxonName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:AccessConstraints
    Term IRIhttp://rs.tdwg.org/dwc/terms/AccessConstraints
    Modified2009-09-21
    LabelAccess Constraints
    This term is deprecated and should no longer be used.
    Is replaced byhttp://purl.org/dc/terms/accessRights
    DefinitionA description of constraints on the use of the data as shared or access to further data that is not shared.
    NotesExample: "not-for-profit use only".
    ABCD equivalenceDataSets/DataSet/Units/Unit/IPRStatements
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:accessRights
    Term IRIhttp://purl.org/dc/terms/accessRights
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#accessRights-002
    LabelAccess Rights
    DefinitionInformation about who can access the resource or an indication of its security status.
    NotesAccess Rights may include information regarding access or restrictions based on privacy, security, or other policies.
    Examplesnot-for-profit use only, https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:accordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/accordingTo
    Modified2020-08-06
    LabelAccording To
    This term is deprecated and should no longer be used.
    DefinitionAbstract term to attribute information to a source.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:accuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/accuracy
    Modified2009-04-24
    LabelAccuracy
    This term is deprecated and should no longer be used.
    DefinitionAbstract term to capture error information about a measurement or fact.
    ABCD equivalenceDataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedMedia
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedMedia
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedMedia-2020-08-12
    LabelAssociated Media
    DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.
    Exampleshttps://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964
    ABCD equivalenceDataSets/DataSet/Units/Unit/MultimediaObjects
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedOccurrences
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedOccurrences
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2021-07-15
    LabelAssociated Occurrences
    DefinitionA list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.
    NotesThis term can be used to provide a list of associations to other Occurrences. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"parasite collected from":"https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760", "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedOrganisms
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedOrganisms
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2021-07-15
    LabelAssociated Organisms
    DefinitionA list (concatenated and separated) of identifiers of other Organisms and the associations of this Organism to each of them.
    NotesThis term can be used to provide a list of associations to other Organisms. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"sibling of":"http://arctos.database.museum/guid/DMNS:Mamm:14171", "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196208" | "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196523" | "sibling of":"http://arctos.database.museum/guid/MSB:Mamm:142638"
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedReferences
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedReferences
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedReferences-2021-07-15
    LabelAssociated References
    DefinitionA list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to an Occurrence is to point to the definitive source representation of that Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to an Occurrence is to provide the preferred way to cite the Occurrence itself.
    Exampleshttp://www.sciencemag.org/cgi/content/abstract/322/5899/261, Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767., Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.
    ABCD equivalenceDataSets/DataSet/Units/Unit/UnitReferences
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedSequences
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedSequences
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedSequences-2017-10-06
    LabelAssociated Sequences
    DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.
    Exampleshttp://www.ncbi.nlm.nih.gov/nuccore/U34853.1, http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093
    ABCD equivalenceDataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:associatedTaxa
    Term IRIhttp://rs.tdwg.org/dwc/terms/associatedTaxa
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedTaxa-2021-07-15
    LabelAssociated Taxa
    DefinitionA list (concatenated and separated) of identifiers or names of taxa and the associations of this Occurrence to each of them.
    NotesThis term can be used to provide a list of associations to Taxa other than the one defined in the Occurrence. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between Taxa, only between specific Occurrences of an Organism with other Taxa. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"host":"Quercus alba", "host":"gbif.org/species/2879737","parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:basionym
    Term IRIhttp://rs.tdwg.org/dwc/terms/basionym
    Modified2009-09-21
    LabelBasionym
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/originalNameUsage
    DefinitionThe basionym (botany) or basonym (bacteriology) of the scientificName.
    NotesExample: "Pinus abies"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:basionymID
    Term IRIhttp://rs.tdwg.org/dwc/terms/basionymID
    Modified2009-09-21
    LabelBasionym ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/originalNameUsageID
    DefinitionA unique identifier for the basionym (botany) or basonym (bacteriology) of the scientificName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:basisOfRecord
    Term IRIhttp://rs.tdwg.org/dwc/terms/basisOfRecord
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/basisOfRecord-2021-07-15
    LabelBasis of Record
    DefinitionThe specific nature of the data record.
    NotesRecommended best practice is to use the standard label of one of the Darwin Core classes.
    ExamplesPreservedSpecimen, FossilSpecimen, LivingSpecimen, MaterialSample, Event, HumanObservation, MachineObservation, Taxon, Occurrence, MaterialCitation
    ABCD equivalenceDataSets/DataSet/Units/Unit/RecordBasis
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2009-12-07_2
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:bed
    Term IRIhttp://rs.tdwg.org/dwc/terms/bed
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/bed-2017-10-06
    LabelBed
    DefinitionThe full name of the lithostratigraphic bed from which the cataloged item was collected.
    ExamplesHarlem coal
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:behavior
    Term IRIhttp://rs.tdwg.org/dwc/iri/behavior
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/behavior-2015-03-27
    LabelBehavior (IRI)
    DefinitionA description of the behavior shown by the subject at the time the Occurrence was recorded.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:behavior
    Term IRIhttp://rs.tdwg.org/dwc/terms/behavior
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/behavior-2017-10-06
    LabelBehavior
    DefinitionThe behavior shown by the subject at the time the Occurrence was recorded.
    Examplesroosting, foraging, running
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:bibliographicCitation
    Term IRIhttp://purl.org/dc/terms/bibliographicCitation
    Modified2021-07-15
    Term version IRIhttp://dublincore.org/usage/terms/history/#bibliographicCitation-002
    LabelBibliographic Citation
    DefinitionA bibliographic reference for the resource.
    NotesFrom Dublin Core, "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible." The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - "how to cite this record". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - "where to find the as-close-to-original reference, if one is available.
    ExamplesOccurrence example: Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal. Taxon example: https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone, Event example: Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:binomial
    Term IRIhttp://rs.tdwg.org/dwc/terms/binomial
    Modified2009-04-24
    LabelBinomial
    This term is deprecated and should no longer be used.
    DefinitionThe combination of genus and first (species) epithet of the scientificName.
    NotesExample: "Ctenomys sociabilis"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:catalogNumber
    Term IRIhttp://rs.tdwg.org/dwc/terms/catalogNumber
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/catalogNumber-2017-10-06
    LabelCatalog Number
    DefinitionAn identifier (preferably unique) for the record within the data set or collection.
    Examples145732, 145732a, 2008.1334, R-4313
    ABCD equivalenceDataSets/DataSet/Units/Unit/UnitID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:CatalogNumberNumeric
    Term IRIhttp://rs.tdwg.org/dwc/terms/CatalogNumberNumeric
    Modified2009-04-24
    LabelCatalog Number Numeric
    This term is deprecated and should no longer be used.
    DefinitionThe numeric value of the catalogNumber, used to facilitate numerical sorting and searching by ranges.
    ABCD equivalenceDataSets/DataSet/Units/Unit/UnitIDNumeric
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:class
    Term IRIhttp://rs.tdwg.org/dwc/terms/class
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/class-2017-10-06
    LabelClass
    DefinitionThe full scientific name of the class in which the taxon is classified.
    ExamplesMammalia, Hepaticopsida
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:collectionCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/collectionCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionCode-2017-10-06
    LabelCollection Code
    DefinitionThe name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.
    ExamplesMammals, Hildebrandt, EBIRD, VP
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:collectionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/collectionID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionID-2017-10-06
    LabelCollection ID
    DefinitionAn identifier for the collection or dataset from which the record was derived.
    NotesFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).
    Exampleshttp://biocol.org/urn:lsid:biocol.org:col:1001, http://grbio.org/cool/p5fp-c036
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:continent
    Term IRIhttp://rs.tdwg.org/dwc/terms/continent
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/continent-2017-10-06
    LabelContinent
    DefinitionThe name of the continent in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesAfrica, Antarctica, Asia, Europe, North America, Oceania, South America
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:coordinatePrecision
    Term IRIhttp://rs.tdwg.org/dwc/terms/coordinatePrecision
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2017-10-06
    LabelCoordinate Precision
    DefinitionA decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.
    Examples0.00001 (normal GPS limit for decimal degrees). 0.000278 (nearest second). 0.01667 (nearest minute). 1.0 (nearest degree).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:coordinateUncertaintyInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2021-07-15
    LabelCoordinate Uncertainty In Meters
    DefinitionThe horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.
    Examples30 (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 100 (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:country
    Term IRIhttp://rs.tdwg.org/dwc/terms/country
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/country-2021-07-15
    LabelCountry
    DefinitionThe name of the country or major administrative unit in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the Location spans multiple entities at this administrative level or if the Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term higherGeography or in the term locality, or both.
    ExamplesDenmark, Colombia, España
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Country/Name
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:countryCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/countryCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/countryCode-2017-10-06
    LabelCountry Code
    DefinitionThe standard code for the country in which the Location occurs.
    NotesRecommended best practice is to use an ISO 3166-1-alpha-2 country code.
    ExamplesAR, SV
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:county
    Term IRIhttp://rs.tdwg.org/dwc/terms/county
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/county-2017-10-06
    LabelCounty
    DefinitionThe full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesMissoula, Los Lagos, Mataró
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:cultivarEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/cultivarEpithet
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2021-07-15
    LabelCultivar Epithet
    DefinitionPart of the name of a cultivar, cultivar group or grex that follows the scientific name.
    NotesAccording to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the cultivarEpithet should exclude any quotes. The term taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in scientificName as well.
    ExamplesKing Edward (for scientificName "Solanum tuberosum 'King Edward'" and taxonRank "cultivar"); Mishmiense (for scientificName "Rhododendron boothii Mishmiense Group" and taxonRank "cultivar group"); Atlantis (for scientificName "Paphiopedilum Atlantis grex" and taxonRank "grex").
    ABCD equivalencehttp://rs.tdwg.org/abcd/terms/cultivarName or http://rs.tdwg.org/abcd/terms/cultivarGroupName or http://rs.tdwg.org/abcd/terms/breed (ABCD 3.0)
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:dataGeneralizations
    Term IRIhttp://rs.tdwg.org/dwc/terms/dataGeneralizations
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06
    LabelData Generalizations
    DefinitionActions 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.
    ExamplesCoordinates generalized from original GPS coordinates to the nearest half degree grid cell.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:dataGeneralizations
    Term IRIhttp://rs.tdwg.org/dwc/iri/dataGeneralizations
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/dataGeneralizations-2015-03-27
    LabelData Generalizations (IRI)
    DefinitionActions 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.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Dataset
    Term IRIhttp://rs.tdwg.org/dwc/terms/Dataset
    Modified2009-09-11
    LabelDataset
    This term is deprecated and should no longer be used.
    DefinitionThe category of information pertaining to a logical set of records.
    ABCD equivalenceDataSets/DataSet
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:datasetID
    Term IRIhttp://rs.tdwg.org/dwc/terms/datasetID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/datasetID-2017-10-06
    LabelDataset ID
    DefinitionAn identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.
    Examplesb15d4952-7d20-46f1-8a3e-556a512b04c5
    ABCD equivalenceDataSets/DataSet/DataSetGUID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:datasetName
    Term IRIhttp://rs.tdwg.org/dwc/terms/datasetName
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/datasetName-2017-10-06
    LabelDataset Name
    DefinitionThe name identifying the data set from which the record was derived.
    ExamplesGrinnell Resurvey Mammals, Lacey Ctenomys Recaptures
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:dateIdentified
    Term IRIhttp://rs.tdwg.org/dwc/terms/dateIdentified
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/dateIdentified-2020-08-12
    LabelDate Identified
    DefinitionThe date on which the subject was determined as representing the Taxon.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:day
    Term IRIhttp://rs.tdwg.org/dwc/terms/day
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/day-2017-10-06
    LabelDay
    DefinitionThe integer day of the month on which the Event occurred.
    Examples9, 28
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:decimalLatitude
    Term IRIhttp://rs.tdwg.org/dwc/terms/decimalLatitude
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/decimalLatitude-2017-10-06
    LabelDecimal Latitude
    DefinitionThe geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.
    Examples-41.0983423
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:decimalLongitude
    Term IRIhttp://rs.tdwg.org/dwc/terms/decimalLongitude
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/decimalLongitude-2017-10-06
    LabelDecimal Longitude
    DefinitionThe geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.
    Examples-121.1761111
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:degreeOfEstablishment
    Term IRIhttp://rs.tdwg.org/dwc/iri/degreeOfEstablishment
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2021-03-29
    LabelDegree of Establishment (IRI)
    DefinitionThe degree to which an Organism survives, reproduces, and expands its range at the given place and time.
    NotesRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Exampleshttp://rs.tdwg.org/dwcdoe/values/d003, http://rs.tdwg.org/dwcdoe/values/d005
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_27
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:degreeOfEstablishment
    Term IRIhttp://rs.tdwg.org/dwc/terms/degreeOfEstablishment
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2021-03-29
    LabelDegree of Establishment
    DefinitionThe degree to which an Organism survives, reproduces, and expands its range at the given place and time.
    NotesRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084
    Examplesnative, captive, cultivated, released, failing, casual, reproducing, established, colonising, invasive, widespreadInvasive
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_27
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:disposition
    Term IRIhttp://rs.tdwg.org/dwc/iri/disposition
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/disposition-2015-03-27
    LabelDisposition (IRI)
    DefinitionThe current state of a specimen with respect to the collection identified in collectionCode or collectionID.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:disposition
    Term IRIhttp://rs.tdwg.org/dwc/terms/disposition
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/disposition-2017-10-06
    LabelDisposition
    DefinitionThe current state of a specimen with respect to the collection identified in collectionCode or collectionID.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesin collection, missing, voucher elsewhere, duplicates elsewhere
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/Disposition
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:DwCType
    Term IRIhttp://rs.tdwg.org/dwc/terms/DwCType
    Modified2014-10-23
    LabelDarwin Core Type
    This term is deprecated and should no longer be used.
    DefinitionThe set of classes specified by the Darwin Core Type Vocabulary, used to categorize the nature or genre of the resource.
    ABCD equivalencenot in ABCD
    Typehttp://purl.org/dc/dcam/VocabularyEncodingScheme
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:dynamicProperties
    Term IRIhttp://rs.tdwg.org/dwc/terms/dynamicProperties
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06
    LabelDynamic Properties
    DefinitionA list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
    NotesRecommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.
    Examples{"heightInMeters":1.5}, {"tragusLengthInMeters":0.014, "weightInGrams":120}, {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}, {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}, {"aspectHeading":277, "slopeInDegrees":6}, {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:earliestAgeOrLowestStage
    Term IRIhttp://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2017-10-06
    LabelEarliest Age Or Lowest Stage
    DefinitionThe full name of the earliest possible geochronologic age or lowest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesAtlantic, Boreal, Skullrockian
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EarliestDateCollected
    Term IRIhttp://rs.tdwg.org/dwc/terms/EarliestDateCollected
    Modified2009-04-24
    LabelEarliest Date Collected
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventDate
    DefinitionThe earliest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
    NotesDate may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:earliestEonOrLowestEonothem
    Term IRIhttp://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2017-10-06
    LabelEarliest Eon Or Lowest Eonothem
    DefinitionThe 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.
    ExamplesPhanerozoic, Proterozoic
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:earliestEpochOrLowestSeries
    Term IRIhttp://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2017-10-06
    LabelEarliest Epoch Or Lowest Series
    DefinitionThe full name of the earliest possible geochronologic epoch or lowest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesHolocene, Pleistocene, Ibexian Series
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:earliestEraOrLowestErathem
    Term IRIhttp://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2017-10-06
    LabelEarliest Era Or Lowest Erathem
    DefinitionThe full name of the earliest possible geochronologic era or lowest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesCenozoic, Mesozoic
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:earliestGeochronologicalEra
    Term IRIhttp://rs.tdwg.org/dwc/iri/earliestGeochronologicalEra
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/earliestGeochronologicalEra-2015-03-27
    LabelEarliest Geochronological Era
    DefinitionUse to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the earliest possible geological time period from which the cataloged item was collected.
    NotesRecommended best practice is to use an IRI from a controlled vocabulary. A "convenience property" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:earliestPeriodOrLowestSystem
    Term IRIhttp://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2017-10-06
    LabelEarliest Period Or Lowest System
    DefinitionThe full name of the earliest possible geochronologic period or lowest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesNeogene, Tertiary, Quaternary
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:endDayOfYear
    Term IRIhttp://rs.tdwg.org/dwc/terms/endDayOfYear
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20
    LabelEnd Day Of Year
    DefinitionThe latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).
    Examples1 (1 January). 32 (1 February). 366 (31 December). 365 (30 December in a leap year, 31 December in a non-leap year).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EndTimeOfDay
    Term IRIhttp://rs.tdwg.org/dwc/terms/EndTimeOfDay
    Modified2009-04-24
    LabelEnd Time of Day
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventTime
    DefinitionThe time of day when the event ended, expressed as decimal hours from midnight, local time.
    NotesExamples: "12.0" (= noon), "13.5" (= 1:30pm)
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:establishmentMeans
    Term IRIhttp://rs.tdwg.org/dwc/iri/establishmentMeans
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/establishmentMeans-2021-03-29
    LabelEstablishment Means (IRI)
    DefinitionThe process by which the biological individual(s) represented in the Occurrence became established at the location.
    NotesRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Exampleshttp://rs.tdwg.org/dwcem/values/e001, http://rs.tdwg.org/dwcem/values/e005
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_25
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:establishmentMeans
    Term IRIhttp://rs.tdwg.org/dwc/terms/establishmentMeans
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/establishmentMeans-2021-03-29
    LabelEstablishment Means
    DefinitionStatement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.
    NotesRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084
    Examplesnative, nativeReintroduced, introduced, introducedAssistedColonisation, vagrant, uncertain
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_25
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Event
    Term IRIhttp://rs.tdwg.org/dwc/terms/Event
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Event-2018-09-06
    LabelEvent
    DefinitionAn action that occurs at some location during some time.
    ExamplesA specimen collection process. A camera trap image capture. A marine trawl.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttribute
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttribute
    Modified2009-04-24
    LabelEvent Attribute
    This term is deprecated and should no longer be used.
    DefinitionContainer class for information about attributes related to a given sampling event.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeAccuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeAccuracy
    Modified2009-04-24
    LabelEvent Attribute Accuracy
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementAccuracy
    DefinitionThe description of the error associated with the EventAttributeValue.
    NotesExample: "0.01", "normal distribution with variation of 2 m"
    ABCD equivalenceDataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeDeterminedBy
    Modified2009-04-24
    LabelEvent Attribute Determined By
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedBy
    DefinitionThe agent responsible for having determined the value of the measurement or characteristic of the sampling event.
    NotesExample: "Robert Hijmans"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeDeterminedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate
    Modified2009-04-24
    LabelEvent Attribute Determined Date
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedDate
    DefinitionThe date on which the the measurement or characteristic of the sampling event was made.
    NotesDate may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeID
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeID
    Modified2009-04-24
    LabelEvent Attribute ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementID
    DefinitionAn identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeRemarks
    Modified2009-04-24
    LabelEvent Attribute Remarks
    This term is deprecated and should no longer be used.
    DefinitionComments or notes accompanying the measurement or characteristic of the sampling event.
    NotesExample: "temperature taken at 15:00"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventAttributes
    Modified2009-10-09
    LabelEvent Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements or characteristics of the Event.
    NotesExample: "Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeType
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeType
    Modified2009-04-24
    LabelEvent Attribute Type
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementType
    Is replaced byhttp://rs.tdwg.org/dwc/terms/SamplingAttributeType
    DefinitionThe nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.
    NotesExample: "Temperature"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeUnit
    Modified2009-04-24
    LabelEvent Attribute Unit
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementUnit
    DefinitionThe units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.
    NotesExample: "C"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventAttributeValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventAttributeValue
    Modified2009-04-24
    LabelEvent Attribute
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventMeasurementValue
    DefinitionThe value of the measurement or characteristic of the sampling event.
    NotesExample: "22"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventDate
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventDate-2020-08-12
    LabelEvent Date
    DefinitionThe date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventID
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventID-2017-10-06
    LabelEvent ID
    DefinitionAn identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.
    ExamplesINBO:VIS:Ev:00009375
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Code
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:EventMeasurement
    Term IRIhttp://rs.tdwg.org/dwc/terms/EventMeasurement
    Modified2009-10-09
    LabelEvent Measurement
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/MeasurementOrFact
    DefinitionThe category of information pertaining to measurements associated with an event.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementAccuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementAccuracy
    Modified2009-10-09
    LabelEvent Measurement Accuracy
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementAccuracy
    DefinitionThe description of the error associated with the EventAttributeValue.
    NotesExample: "0.01", "normal distribution with variation of 2 m"
    ABCD equivalenceDataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedBy
    Modified2009-10-09
    LabelEvent Measurement Determined By
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementDeterminedBy
    DefinitionThe agent responsible for having determined the value of the measurement or characteristic of the event.
    NotesExample: "Robert Hijmans"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementDeterminedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedDate
    Modified2009-10-09
    LabelEvent Measurement Determined Date
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementDeterminedDate
    DefinitionThe date on which the the measurement or characteristic of the event was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
    NotesExamples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementID
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementID
    Modified2009-10-09
    LabelEvent Measurement ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementID
    DefinitionAn identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementRemarks
    Modified2009-10-09
    LabelEvent Measurement Remarks
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementRemarks
    DefinitionComments or notes accompanying the measurement or characteristic of the event.
    NotesExample: "temperature taken at 15:00"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementType
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementType
    Modified2009-10-09
    LabelEvent Measurement Type
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementType
    DefinitionThe nature of the measurement or characteristic of the event. Recommended best practice is to use a controlled vocabulary.
    NotesExample: "temperature"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementUnit
    Modified2009-10-09
    LabelEvent Measurement Unit
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementUnit
    DefinitionThe units for the value of the measurement or characteristic of the event. Recommended best practice is to use International System of Units (SI) units.
    NotesExample: "C"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventMeasurementValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventMeasurementValue
    Modified2009-10-09
    LabelEvent Measurement Value
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementValue
    DefinitionThe value of the measurement or characteristic of the event.
    NotesExample: "22"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventRemarks-2017-10-06
    LabelEvent Remarks
    DefinitionComments or notes about the Event.
    ExamplesAfter the recent rains the river is nearly at flood stage.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Notes
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventTime
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventTime
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12
    LabelEvent Time
    DefinitionThe time or interval during which an Event occurred.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples14:07-0600 (2:07pm in the time zone six hours earlier than UTC). 08:40:21Z (8:40:21am UTC). 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC).
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:family
    Term IRIhttp://rs.tdwg.org/dwc/terms/family
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/family-2017-10-06
    LabelFamily
    DefinitionThe full scientific name of the family in which the taxon is classified.
    ExamplesFelidae, Monocleaceae
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:fieldNotes
    Term IRIhttp://rs.tdwg.org/dwc/iri/fieldNotes
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fieldNotes-2015-03-27
    LabelField Notes (IRI)
    DefinitionOne 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 Event.
    NotesThe subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:fieldNotes
    Term IRIhttp://rs.tdwg.org/dwc/terms/fieldNotes
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/fieldNotes-2017-10-06
    LabelField Notes
    DefinitionOne 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 Event.
    ExamplesNotes available in the Grinnell-Miller Library.
    ABCD equivalenceDataSets/DataSet/Units/Unit/FieldNotes
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:fieldNumber
    Term IRIhttp://rs.tdwg.org/dwc/iri/fieldNumber
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fieldNumber-2015-03-27
    LabelField Number (IRI)
    DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the Event.
    NotesThe subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:fieldNumber
    Term IRIhttp://rs.tdwg.org/dwc/terms/fieldNumber
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/fieldNumber-2017-10-06
    LabelField Number
    DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the Event.
    ExamplesRV Sol 87-03-08
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Code
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:footprintSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintSpatialFit
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20
    LabelFootprint Spatial Fit
    DefinitionThe ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples0, 1, 1.5708
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:footprintSRS
    Term IRIhttp://rs.tdwg.org/dwc/iri/footprintSRS
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/footprintSRS-2021-07-15
    LabelFootprint SRS (IRI)
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:footprintSRS
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintSRS
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSRS-2021-07-15
    LabelFootprint SRS
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.
    NotesRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead.
    Examplesepsg:4326, GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]] (WKT for the standard WGS84 Spatial Reference System EPSG:4326)
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:footprintWKT
    Term IRIhttp://rs.tdwg.org/dwc/iri/footprintWKT
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/footprintWKT-2015-03-27
    LabelFootprint WKT (IRI)
    DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:footprintWKT
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintWKT
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintWKT-2017-10-06
    LabelFootprint WKT
    DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.
    ExamplesPOLYGON ((10 20, 11 20, 11 21, 10 21, 10 20)) (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21)
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b)
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:formation
    Term IRIhttp://rs.tdwg.org/dwc/terms/formation
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/formation-2017-10-06
    LabelFormation
    DefinitionThe full name of the lithostratigraphic formation from which the cataloged item was collected.
    ExamplesNotch Peak Formation, House Limestone, Fillmore Formation
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:FossilSpecimen
    Term IRIhttp://rs.tdwg.org/dwc/terms/FossilSpecimen
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2018-09-06
    LabelFossil Specimen
    DefinitionA preserved specimen that is a fossil.
    ExamplesA body fossil. A coprolite. A gastrolith. An ichnofossil. A piece of a petrified tree.
    ABCD equivalenceRecordBasisEnum/FossileSpecimen
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:fromLithostratigraphicUnit
    Term IRIhttp://rs.tdwg.org/dwc/iri/fromLithostratigraphicUnit
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fromLithostratigraphicUnit-2015-03-27
    LabelFrom Lithostratigraphic Unit
    DefinitionUse to link a dwc:GeologicalContext instance to an IRI-identified lithostratigraphic unit at the lowest possible level in a hierarchy.
    NotesRecommended best practice is to use an IRI from a controlled vocabulary. A "convenience property" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.7 of the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Generalizations
    Term IRIhttp://rs.tdwg.org/dwc/terms/Generalizations
    Modified2009-04-24
    LabelGeneralizations
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/dataGeneralizations
    DefinitionActions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.
    NotesExamples: "Coordinates generalized from original GPS coordinates to the nearest half degree grid cell", "locality information given only to nearest county".
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:genericName
    Term IRIhttp://rs.tdwg.org/dwc/terms/genericName
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/genericName-2021-07-15
    LabelGeneric Name
    DefinitionThe genus part of the scientificName without authorship.
    NotesFor synonyms the accepted genus and the genus part of the name may be different. The term genericName should be used together with specificEpithet to form a binomial and with infraspecificEpithet to form a trinomial. The term genericName should only be used for combinations. Uninomials of generic rank do not have a genericName.
    ExamplesFelis (for scientificName "Felis concolor", with accompanying values of "Puma concolor" in acceptedNameUsage and "Puma" in genus).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:genus
    Term IRIhttp://rs.tdwg.org/dwc/terms/genus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/genus-2017-10-06
    LabelGenus
    DefinitionThe full scientific name of the genus in which the taxon is classified.
    ExamplesPuma, Monoclea
    ABCD equivalence{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:geodeticDatum
    Term IRIhttp://rs.tdwg.org/dwc/terms/geodeticDatum
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/geodeticDatum-2017-10-06
    LabelGeodetic Datum
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.
    NotesRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown.
    ExamplesEPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866, unknown
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:geodeticDatum
    Term IRIhttp://rs.tdwg.org/dwc/iri/geodeticDatum
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/geodeticDatum-2015-03-27
    LabelGeodetic Datum (IRI)
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.
    NotesRecommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown.
    Exampleshttps://epsg.io/4326
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:GeologicalContext
    Term IRIhttp://rs.tdwg.org/dwc/terms/GeologicalContext
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/GeologicalContext-2018-09-06
    LabelGeological Context
    DefinitionGeological information, such as stratigraphy, that qualifies a region or place.
    ExamplesA lithostratigraphic layer.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Stratigraphy
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:geologicalContextID
    Term IRIhttp://rs.tdwg.org/dwc/terms/geologicalContextID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/geologicalContextID-2017-10-06
    LabelGeological Context ID
    DefinitionAn identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.
    Exampleshttps://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferencedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferencedBy
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferencedBy-2017-10-06
    LabelGeoreferenced By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesBrad Millen (ROM), Kristina Yamamoto | Janet Fang
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:georeferencedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferencedBy
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferencedBy-2015-03-27
    LabelGeoreferenced By (IRI)
    DefinitionA person, group, or organization who determined the georeference (spatial representation) for the Location.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferencedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferencedDate
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferencedDate-2020-08-12
    LabelGeoreferenced Date
    DefinitionThe date on which the Location was georeferenced.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_9
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferenceProtocol
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferenceProtocol
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20
    LabelGeoreference Protocol
    DefinitionA description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.
    ExamplesGeoreferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:georeferenceProtocol
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceProtocol
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceProtocol-2015-03-27
    LabelGeoreference Protocol (IRI)
    DefinitionA description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferenceRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferenceRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2017-10-06
    LabelGeoreference Remarks
    DefinitionNotes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.
    ExamplesAssumed distance by road (Hwy. 101).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:georeferenceSources
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceSources
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceSources-2015-03-27
    LabelGeoreference Sources (IRI)
    DefinitionA map, gazetteer, or other resource used to georeference the Location.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferenceSources
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferenceSources
    Modified2020-10-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceSources-2020-10-28
    LabelGeoreference Sources
    DefinitionA list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Exampleshttps://www.geonames.org/, USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth, GeoLocate
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:georeferenceVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2021-07-15
    LabelGeoreference Verification Status (IRI)
    DefinitionA categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:georeferenceVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2021-07-15
    LabelGeoreference Verification Status
    DefinitionA categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesunable to georeference, requires georeference, requires verification, verified by data custodian, verified by contributor
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:group
    Term IRIhttp://rs.tdwg.org/dwc/terms/group
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/group-2017-10-06
    LabelGroup
    DefinitionThe full name of the lithostratigraphic group from which the cataloged item was collected.
    ExamplesBathurst, Lower Wealden
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:habitat
    Term IRIhttp://rs.tdwg.org/dwc/terms/habitat
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/habitat-2017-10-06
    LabelHabitat
    DefinitionA category or description of the habitat in which the Event occurred.
    Examplesoak savanna, pre-cordilleran steppe
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Biotope/Text
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:habitat
    Term IRIhttp://rs.tdwg.org/dwc/iri/habitat
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/habitat-2015-03-27
    LabelHabitat (IRI)
    DefinitionA category or description of the habitat in which the Event occurred.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherClassification
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherClassification
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherClassification-2017-10-06
    LabelHigher Classification
    DefinitionA list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from the highest taxonomic rank to the lowest.
    ExamplesPlantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus, Animalia, Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherGeography
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherGeography
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherGeography-2017-10-06
    LabelHigher Geography
    DefinitionA list (concatenated and separated) of geographic names less specific than the information captured in the locality term.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from least specific to most specific.
    ExamplesNorth Atlantic Ocean. South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos (with accompanying values South America in continent, Argentina in country, Neuquén in stateProvince, and Los Lagos in county.
    ABCD equivalence{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherGeographyID
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherGeographyID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherGeographyID-2017-10-06
    LabelHigher Geography ID
    DefinitionAn identifier for the geographic region within which the Location occurred.
    NotesRecommended best practice is to use a persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    Exampleshttp://vocab.getty.edu/tgn/1002002 (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina).
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:HigherTaxon
    Term IRIhttp://rs.tdwg.org/dwc/terms/HigherTaxon
    Modified2009-08-24
    LabelHigher Taxon
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.
    NotesExample: "Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys".
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherTaxonconceptID
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherTaxonconceptID
    Modified2009-08-24
    LabelHigher Taxon Concept ID
    This term is deprecated and should no longer be used.
    DefinitionA unique identifier for the taxon concept less specific than that given in the taxonConceptID.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:HigherTaxonID
    Term IRIhttp://rs.tdwg.org/dwc/terms/HigherTaxonID
    Modified2009-08-24
    LabelHigher Taxon ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/higherTaxonNameID
    DefinitionA global unique identifier for the parent to the taxon.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherTaxonName
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherTaxonName
    Modified2009-08-24
    LabelHigher Taxon Name
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/higherClassification
    DefinitionA list (concatenated and separated) of the names for the taxonomic ranks less specific than that given in the scientificName.
    NotesExample: "Animalia; Chordata; Vertebrata; Mammalia; Theria; Eutheria; Rodentia; Hystricognatha; Hystricognathi; Ctenomyidae; Ctenomyini; Ctenomys"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:higherTaxonNameID
    Term IRIhttp://rs.tdwg.org/dwc/terms/higherTaxonNameID
    Modified2009-08-24
    LabelHigher Taxon Name ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/parentNameUsageID
    DefinitionA unique identifier for the name of the next higher rank than the scientificName in a taxonomic classification. See higherTaxonName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:highestBiostratigraphicZone
    Term IRIhttp://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2017-10-06
    LabelHighest Biostratigraphic Zone
    DefinitionThe full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
    ExamplesBlancan
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:HumanObservation
    Term IRIhttp://rs.tdwg.org/dwc/terms/HumanObservation
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/HumanObservation-2018-09-06
    LabelHuman Observation
    DefinitionAn output of a human observation process.
    ExamplesEvidence of an Occurrence taken from field notes or literature. A record of an Occurrence without physical evidence nor evidence captured with a machine.
    ABCD equivalenceRecordBasisEnum/HumanObservation
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Identification
    Term IRIhttp://rs.tdwg.org/dwc/terms/Identification
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Identification-2018-09-06
    LabelIdentification
    DefinitionA taxonomic determination (e.g., the assignment to a taxon).
    ExamplesA subspecies determination of an organism.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationAttributes
    Modified2009-10-09
    LabelIdentification Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Identification.
    NotesExample: "natureOfID=expert identification; identificationEvidence=cytochrome B sequence"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationID
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationID-2017-10-06
    LabelIdentification ID
    DefinitionAn identifier for the 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.
    Examples9992
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:identificationQualifier
    Term IRIhttp://rs.tdwg.org/dwc/iri/identificationQualifier
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identificationQualifier-2015-03-27
    LabelIdentification Qualifier (IRI)
    DefinitionA controlled value to express the determiner's doubts about the Identification.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationQualifier
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationQualifier
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationQualifier-2017-10-06
    LabelIdentification Qualifier
    DefinitionA brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification.
    Examplesaff. agrifolia var. oxyadenia (for Quercus aff. agrifolia var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank. cf. var. oxyadenia for Quercus agrifolia cf. var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationReferences
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationReferences
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationReferences-2017-10-06
    LabelIdentification References
    DefinitionA list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesAves del Noroeste Patagonico. Christie et al. 2004., Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/References
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationRemarks-2017-10-06
    LabelIdentification Remarks
    DefinitionComments or notes about the Identification.
    ExamplesDistinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Notes
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationVerificationStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2017-10-06
    LabelIdentification Verification Status
    DefinitionA categorical indicator of the extent to which the taxonomic identification has been verified to be correct.
    NotesRecommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.
    Examples0 ("unverified" in HISPID/ABCD).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_10
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:identificationVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/identificationVerificationStatus
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identificationVerificationStatus-2015-03-27
    LabelIdentification Verification Status (IRI)
    DefinitionA categorical indicator of the extent to which the taxonomic identification has been verified to be correct.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identifiedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/identifiedBy
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identifiedBy-2017-10-06
    LabelIdentified By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesJames L. Patton, Theodore Pappenfuss | Robert Macey
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:identifiedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/identifiedBy
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identifiedBy-2015-03-27
    LabelIdentified By (IRI)
    DefinitionA person, group, or organization who assigned the Taxon to the subject.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identifiedByID
    Term IRIhttp://rs.tdwg.org/dwc/terms/identifiedByID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identifiedByID-2021-07-15
    LabelIdentified By ID
    DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the Taxon to the subject.
    NotesRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Exampleshttps://orcid.org/0000-0002-1825-0097 (for an individual), https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:inCollection
    Term IRIhttp://rs.tdwg.org/dwc/iri/inCollection
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/inCollection-2015-03-27
    LabelIn Collection
    DefinitionUse to link any subject resource that is part of a collection to the collection containing the resource.
    NotesRecommended best practice is to use an IRI from a controlled registry. A "convenience property" that replaces literal-value terms related to collections and institutions. See Section 2.7.3 of the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:inDataset
    Term IRIhttp://rs.tdwg.org/dwc/iri/inDataset
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/inDataset-2015-03-27
    LabelIn Dataset
    DefinitionUse to link a subject dataset record to the dataset which contains it.
    NotesA string literal name of the dataset can be provided using the term dwc:datasetName. See the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:inDescribedPlace
    Term IRIhttp://rs.tdwg.org/dwc/iri/inDescribedPlace
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/inDescribedPlace-2015-03-27
    LabelIn Described Place
    DefinitionUse to link a dcterms:Location instance subject to the lowest level standardized hierarchically-described resource.
    NotesRecommended best practice is to use an IRI from a controlled registry. A "convenience property" that replaces Darwin Core literal-value terms related to locations. See Section 2.7.5 of the Darwin Core RDF Guide for details.
    Exampleshttp://vocab.getty.edu/tgn/1019987
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:individualCount
    Term IRIhttp://rs.tdwg.org/dwc/terms/individualCount
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/individualCount-2021-07-15
    LabelIndividual Count
    DefinitionThe number of individuals present at the time of the Occurrence.
    Examples0, 1, 25
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:individualID
    Term IRIhttp://rs.tdwg.org/dwc/terms/individualID
    Modified2014-10-23
    LabelIndividual ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/organismID
    DefinitionAn identifier for an individual or named group of individual organisms represented in the Occurrence. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.
    NotesExamples: "U.amer. 44", "Smedley", "Orca J 23"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/DataSet/Units/Unit/SpecimenUnit/Accessions/AccessionNumber
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:informationWithheld
    Term IRIhttp://rs.tdwg.org/dwc/iri/informationWithheld
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/informationWithheld-2015-03-27
    LabelInformation Withheld (IRI)
    DefinitionAdditional information that exists, but that has not been shared in the given record.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:informationWithheld
    Term IRIhttp://rs.tdwg.org/dwc/terms/informationWithheld
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/informationWithheld-2017-10-06
    LabelInformation Withheld
    DefinitionAdditional information that exists, but that has not been shared in the given record.
    Exampleslocation information not given for endangered species, collector identities withheld | ask about tissue samples
    ABCD equivalenceDataSets/DataSet/Units/Unit/InformationWithheld
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:infragenericEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/infragenericEpithet
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2021-07-15
    LabelInfrageneric Epithet
    DefinitionThe infrageneric part of a binomial name at ranks above species but below genus.
    NotesThe term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca).
    ExamplesAbacetillus (for scientificName "Abacetus (Abacetillus) ambiguus", Cracca (for scientificName "Vicia sect. Cracca")
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Bacterial/Subgenus (for bacterial names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus (for zoological names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet (for botanical names)
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:infraspecificEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/infraspecificEpithet
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2021-07-15
    LabelInfraspecific Epithet
    DefinitionThe name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.
    NotesIn botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is scaberrima and the scientificName is Indigophera charlieriana var. scaberrima.
    Examplesconcolor (for scientificName "Puma concolor concolor"), oxyadenia (for scientificName "Quercus agrifolia var. oxyadenia"), laxa (for scientificName "Cheilanthes hirta f. laxa"), scaberrima (for scientificName "Indigofera charlieriana var. scaberrima").
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:institutionCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/institutionCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/institutionCode-2017-10-06
    LabelInstitution Code
    DefinitionThe name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.
    ExamplesMVZ, FMNH, CLO, UCMP
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceInstitutionID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:institutionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/institutionID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/institutionID-2017-10-06
    LabelInstitution ID
    DefinitionAn identifier for the institution having custody of the object(s) or information referred to in the record.
    NotesFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).
    Exampleshttp://biocol.org/urn:lsid:biocol.org:col:34777, http://grbio.org/cool/km06-gtbn
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceInstitutionID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:island
    Term IRIhttp://rs.tdwg.org/dwc/terms/island
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/island-2017-10-06
    LabelIsland
    DefinitionThe name of the island on or near which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesNosy Be, Bikini Atoll, Vancouver, Viti Levu, Zanzibar
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:islandGroup
    Term IRIhttp://rs.tdwg.org/dwc/terms/islandGroup
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/islandGroup-2017-10-06
    LabelIsland Group
    DefinitionThe name of the island group in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesAlexander Archipelago, Archipiélago Diego Ramírez, Seychelles
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:kingdom
    Term IRIhttp://rs.tdwg.org/dwc/terms/kingdom
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/kingdom-2017-10-06
    LabelKingdom
    DefinitionThe full scientific name of the kingdom in which the taxon is classified.
    ExamplesAnimalia, Archaea, Bacteria, Chromista, Fungi, Plantae, Protozoa, Viruses
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dc:language
    Term IRIhttp://purl.org/dc/elements/1.1/language
    Modified2020-10-28
    Term version IRIhttp://dublincore.org/usage/terms/history/#language-007
    LabelLanguage
    DefinitionA language of the resource.
    NotesRecommended best practice is to use a controlled vocabulary such as RFC 5646.
    Examplesen (for English), es (for Spanish)
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:language
    Term IRIhttp://purl.org/dc/terms/language
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#languageT-001
    LabelLanguage
    DefinitionA language of the resource.
    NotesRecommended best practice is to use an IRI from the Library of Congress ISO 639-2 scheme http://id.loc.gov/vocabulary/iso639-2
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:latestAgeOrHighestStage
    Term IRIhttp://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2017-10-06
    LabelLatest AgeOr Highest Stage
    DefinitionThe full name of the latest possible geochronologic age or highest chronostratigraphic stage attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesAtlantic, Boreal, Skullrockian
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:LatestDateCollected
    Term IRIhttp://rs.tdwg.org/dwc/terms/LatestDateCollected
    Modified2009-04-24
    LabelLatest Date Collected
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventDate
    DefinitionThe latest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
    NotesDate may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:latestEonOrHighestEonothem
    Term IRIhttp://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2017-10-06
    LabelLatest Eon Or Highest Eonothem
    DefinitionThe 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.
    ExamplesPhanerozoic, Proterozoic
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:latestEpochOrHighestSeries
    Term IRIhttp://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2017-10-06
    LabelLatest Epoch Or Highest Series
    DefinitionThe full name of the latest possible geochronologic epoch or highest chronostratigraphic series attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesHolocene, Pleistocene, Ibexian Series
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:latestEraOrHighestErathem
    Term IRIhttp://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2017-10-06
    LabelLatest Era Or Highest Erathem
    DefinitionThe full name of the latest possible geochronologic era or highest chronostratigraphic erathem attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesCenozoic, Mesozoic
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:latestGeochronologicalEra
    Term IRIhttp://rs.tdwg.org/dwc/iri/latestGeochronologicalEra
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/latestGeochronologicalEra-2015-03-27
    LabelLatest Geochronological Era
    DefinitionUse to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the latest possible geological time period from which the cataloged item was collected.
    NotesRecommended best practice is to use an IRI from a controlled vocabulary. A "convenience property" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:latestPeriodOrHighestSystem
    Term IRIhttp://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2017-10-06
    LabelLatest Period Or Highest System
    DefinitionThe full name of the latest possible geochronologic period or highest chronostratigraphic system attributable to the stratigraphic horizon from which the cataloged item was collected.
    ExamplesNeogene, Tertiary, Quaternary
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:license
    Term IRIhttp://purl.org/dc/terms/license
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#license-002
    LabelLicense
    DefinitionA legal document giving official permission to do something with the resource.
    Exampleshttp://creativecommons.org/publicdomain/zero/1.0/legalcode, http://creativecommons.org/licenses/by/4.0/legalcode
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-11-06_17
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:lifeStage
    Term IRIhttp://rs.tdwg.org/dwc/terms/lifeStage
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/lifeStage-2021-07-15
    LabelLife Stage
    DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded.
    NotesRecommended best practice is to use a controlled vocabulary.
    Exampleszygote, larva, juvenile, adult, seedling, flowering, fruiting
    ABCD equivalenceDataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:lifeStage
    Term IRIhttp://rs.tdwg.org/dwc/iri/lifeStage
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/lifeStage-2021-07-15
    LabelLife Stage (IRI)
    DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:lithostratigraphicTerms
    Term IRIhttp://rs.tdwg.org/dwc/terms/lithostratigraphicTerms
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2017-10-06
    LabelLithostratigraphic Terms
    DefinitionThe combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.
    ExamplesPleistocene-Weichselien
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:LivingSpecimen
    Term IRIhttp://rs.tdwg.org/dwc/terms/LivingSpecimen
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2018-09-06
    LabelLiving Specimen
    DefinitionA specimen that is alive.
    ExamplesA living plant in a botanical garden. A living animal in a zoo.
    ABCD equivalenceRecordBasisEnum/LivingSpecimen
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:locality
    Term IRIhttp://rs.tdwg.org/dwc/terms/locality
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locality-2021-07-15
    LabelLocality
    DefinitionThe specific description of the place.
    NotesLess specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.
    ExamplesBariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237), Queets Rainforest, Olympic National Park
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:Location
    Term IRIhttp://purl.org/dc/terms/Location
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#Location-001
    LabelLocation
    DefinitionA spatial region or named place.
    ExamplesThe municipality of San Carlos de Bariloche, Río Negro, Argentina. The place defined by a georeference.
    ABCD equivalencenot in ABCD
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:locationAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/locationAccordingTo
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2017-10-06
    LabelLocation According To
    DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.
    ExamplesGetty Thesaurus of Geographic Names, GADM
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:locationAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/iri/locationAccordingTo
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2015-03-27
    LabelLocation According To (IRI)
    DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:locationAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/locationAttributes
    Modified2014-10-23
    LabelLocation Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the location.
    NotesExample: "aspectheading=277; slopeindegrees=6"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:locationID
    Term IRIhttp://rs.tdwg.org/dwc/terms/locationID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationID-2017-10-06
    LabelLocation ID
    DefinitionAn identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.
    Exampleshttps://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:locationRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/locationRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationRemarks-2017-10-06
    LabelLocation Remarks
    DefinitionComments or notes about the Location.
    Examplesunder water since 2005
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/AreaDetail
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:lowestBiostratigraphicZone
    Term IRIhttp://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2017-10-06
    LabelLowest Biostratigraphic Zone
    DefinitionThe full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.
    ExamplesMaastrichtian
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:MachineObservation
    Term IRIhttp://rs.tdwg.org/dwc/terms/MachineObservation
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/MachineObservation-2018-09-06
    LabelMachine Observation
    DefinitionAn output of a machine observation process.
    ExamplesA photograph. A video. An audio recording. A remote sensing image. A Occurrence record based on telemetry.
    ABCD equivalenceRecordBasisEnum/MachineObservation
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:MaterialCitation
    Term IRIhttp://rs.tdwg.org/dwc/terms/MaterialCitation
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/MaterialCitation-2021-07-15
    LabelMaterial Citation
    DefinitionA reference to or citation of one, a part of, or multiple specimens in scholarly publications.
    NotesThis class constitutes a new value for the controlled vocabulary in the recommendations for basisOfRecord. When importing Darwin Core Archives of literature-based datasets to GBIF, the basisOfRecord should be changed from “Occurrence”, "PreservedSpecimen" or "Literature" to “MaterialCitation”.
    ExamplesA citation of a physical specimen from a scientific collection in a taxonomic treatment in a scientific publication. A citation of a group of physical specimens, such as paratypes in a taxonomic treatment in a scientific publication. An occurrence mentioned in a field note book.
    ABCD equivalencenot in ABCD
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:MaterialSample
    Term IRIhttp://rs.tdwg.org/dwc/terms/MaterialSample
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/MaterialSample-2018-09-06
    LabelMaterial Sample
    DefinitionA physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.
    ExamplesA whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.
    ABCD equivalenceDataSets/DataSet/Units/Unit
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2013-10-09_11
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:materialSampleID
    Term IRIhttp://rs.tdwg.org/dwc/terms/materialSampleID
    Modified2020-10-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/materialSampleID-2020-10-28
    LabelMaterial Sample ID
    DefinitionAn identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.
    NotesRecommended best practice is to use a persistent, globally unique identifier.
    Examples06809dc5-f143-459a-be1a-6f03e63fc083
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2013-10-09_13
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:maximumDepthInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/maximumDepthInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2017-10-06
    LabelMaximum Depth In Meters
    DefinitionThe greater depth of a range of depth below the local surface, in meters.
    Examples0, 200
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:maximumDistanceAboveSurfaceInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2017-10-06
    LabelMaximum Distance Above Surface In Meters
    DefinitionThe greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
    Examples-1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:maximumElevationInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/maximumElevationInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2017-10-06
    LabelMaximum Elevation In Meters
    DefinitionThe upper limit of the range of elevation (altitude, usually above sea level), in meters.
    Examples-205, 1236
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementAccuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementAccuracy
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2018-09-06
    LabelMeasurement Accuracy
    DefinitionThe description of the potential error associated with the measurementValue.
    Examples0.01, normal distribution with variation of 2 m
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:measurementDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/measurementDeterminedBy
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2015-03-27
    LabelMeasurement Determined By (IRI)
    DefinitionA person, group, or organization who determined the value of the MeasurementOrFact.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementDeterminedBy
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2018-09-06
    LabelMeasurement Determined By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesRob Guralnick, Peter Desmet | Stijn Van Hoey
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementDeterminedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementDeterminedDate
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2020-08-12
    LabelMeasurement Determined Date
    DefinitionThe date on which the MeasurementOrFact was made.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementID
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementID
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementID-2018-09-06
    LabelMeasurement ID
    DefinitionAn identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.
    Examples9c752d22-b09a-11e8-96f8-529269fb1459
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementMethod
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementMethod
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementMethod-2018-09-06
    LabelMeasurement Method
    DefinitionA description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.
    Examplesminimum convex polygon around burrow entrances (for a home range area). barometric altimeter (for an elevation).
    ABCD equivalence/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:measurementMethod
    Term IRIhttp://rs.tdwg.org/dwc/iri/measurementMethod
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementMethod-2015-03-27
    LabelMeasurement Method (IRI)
    DefinitionThe method or protocol used to determine the measurement, fact, characteristic, or assertion.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:MeasurementOrFact
    Term IRIhttp://rs.tdwg.org/dwc/terms/MeasurementOrFact
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2018-09-06
    LabelMeasurement or Fact
    DefinitionA measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).
    NotesResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.
    ExamplesThe weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.
    ABCD equivalenceDatasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementRemarks
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementRemarks-2018-09-06
    LabelMeasurement Remarks
    DefinitionComments or notes accompanying the MeasurementOrFact.
    Examplestip of tail missing
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementType
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementType
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementType-2018-09-06
    LabelMeasurement Type
    DefinitionThe nature of the measurement, fact, characteristic, or assertion.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplestail length, temperature, trap line length, survey area, trap type
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:measurementType
    Term IRIhttp://rs.tdwg.org/dwc/iri/measurementType
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementType-2015-03-27
    LabelMeasurement Type (IRI)
    DefinitionThe nature of the measurement, fact, characteristic, or assertion.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementUnit
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementUnit-2018-09-06
    LabelMeasurement Unit
    DefinitionThe units associated with the measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI).
    Examplesmm, C, km, ha
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:measurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/iri/measurementUnit
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementUnit-2015-03-27
    LabelMeasurement Unit (IRI)
    DefinitionThe units associated with the measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI).
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementValue
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementValue-2018-09-06
    LabelMeasurement Value
    DefinitionThe value of the measurement, fact, characteristic, or assertion.
    Examples45, 20, 1, 14.5, UV-light
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:measurementValue
    Term IRIhttp://rs.tdwg.org/dwc/iri/measurementValue
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementValue-2021-07-15
    LabelMeasurement Value (IRI)
    DefinitionThe value of the measurement, fact, characteristic, or assertion.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Exampleshttp://vocab.nerc.ac.uk/collection/L22/current/TOOL0960/
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:member
    Term IRIhttp://rs.tdwg.org/dwc/terms/member
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/member-2017-10-06
    LabelMember
    DefinitionThe full name of the lithostratigraphic member from which the cataloged item was collected.
    ExamplesLava Dam Member, Hellnmaria Member
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:minimumDepthInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/minimumDepthInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2017-10-06
    LabelMinimum Depth In Meters
    DefinitionThe lesser depth of a range of depth below the local surface, in meters.
    Examples0, 100
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:minimumDistanceAboveSurfaceInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2017-10-06
    LabelMinimum Distance Above Surface In Meters
    DefinitionThe lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.
    Examples-1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:minimumElevationInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/minimumElevationInMeters
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2017-10-06
    LabelMinimum Elevation In Meters
    DefinitionThe lower limit of the range of elevation (altitude, usually above sea level), in meters.
    Examples-100, 802
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:modified
    Term IRIhttp://purl.org/dc/terms/modified
    Modified2020-08-12
    Term version IRIhttp://dublincore.org/usage/terms/history/#modified-003
    LabelDate Modified
    DefinitionThe most recent date-time on which the resource was changed.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:month
    Term IRIhttp://rs.tdwg.org/dwc/terms/month
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/month-2020-08-12
    LabelMonth
    DefinitionThe integer month in which the Event occurred.
    Examples1 (January). 10 (October).
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:municipality
    Term IRIhttp://rs.tdwg.org/dwc/terms/municipality
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/municipality-2017-10-06
    LabelMunicipality
    DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesHolzminden, Araçatuba, Ga-Segonyana
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:nameAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/nameAccordingTo
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2021-07-15
    LabelName According To
    DefinitionThe 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.
    NotesThis term provides context to the scientificName. Together with the scientificName, separated by ‘sensu’ or ‘sec.’, it forms the taxon concept label, which may be seen as having the same relationship to taxonConceptID as, for example, acceptedNameUsage has to acceptedNameUsageID. When not provided, in Taxon Core data sets the nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most PreservedSpecimen data sets, the Identification, in which case there is no further context.
    ExamplesFranz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236. (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013))
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:nameAccordingToID
    Term IRIhttp://rs.tdwg.org/dwc/terms/nameAccordingToID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2017-10-06
    LabelName According To ID
    DefinitionAn identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.
    Exampleshttps://doi.org/10.1016/S0269-915X(97)80026-2
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublicationID
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublicationID
    Modified2009-09-21
    LabelName Publication ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/namePublishedInID
    DefinitionA resolvable globally unique identifier for the original publication of the scientificName.
    NotesExample: "http://hdl.handle.net/10199/7"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedIn
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedIn
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedIn-2017-10-06
    LabelName Published In
    DefinitionA reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
    ExamplesPearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedInID
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedInID
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedInID-2020-08-12
    LabelName Published In ID
    DefinitionAn identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedInYear
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedInYear
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2017-10-06
    LabelName Published In Year
    DefinitionThe four-digit year in which the scientificName was published.
    Examples1915, 2008
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_8
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:nomenclaturalCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/nomenclaturalCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2017-10-06
    LabelNomenclatural Code
    DefinitionThe nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed.
    NotesRecommended best practice is to use a controlled vocabulary.
    ExamplesICN, ICZN, BC, ICNCP, BioCode
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:nomenclaturalStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/nomenclaturalStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2017-10-06
    LabelNomenclatural Status
    DefinitionThe status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.
    Examplesnom. ambig., nom. illeg., nom. subnud.
    ABCD equivalence(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Occurrence
    Term IRIhttp://rs.tdwg.org/dwc/terms/Occurrence
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20
    LabelOccurrence
    DefinitionAn existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.
    ExamplesA wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.
    ABCD equivalenceDataSets/DataSet/Units/Unit
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceAttributes
    Modified2009-10-09
    LabelOccurrence Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Occurrence.
    NotesExamples: "Tragus length: 14mm; Weight: 120g", "Height: 1-1.5 meters tall; flowers yellow; uncommon".
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceDetails
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceDetails
    Modified2009-10-09
    LabelOccurrence Details
    This term is deprecated and should no longer be used.
    DefinitionA reference (publication, URI) to the most detailed information available about the Occurrence.
    NotesExample: "http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861"
    ABCD equivalenceDataSets/DataSet/Units/Unit/RecordURI
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_7
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceID
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/occurrenceID-2017-10-06
    LabelOccurrence ID
    DefinitionAn identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.
    NotesRecommended best practice is to use a persistent, globally unique identifier.
    Exampleshttp://arctos.database.museum/guid/MSB:Mamm:233627, 000866d2-c177-4648-a200-ead4007051b9, urn:catalog:UWBM:Bird:89776
    ABCD equivalenceDataSets/DataSet/Units/Unit/UnitGUID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:OccurrenceMeasurement
    Term IRIhttp://rs.tdwg.org/dwc/terms/OccurrenceMeasurement
    Modified2009-10-09
    LabelOccurrence Measurement
    This term is deprecated and should no longer be used.
    DefinitionThe category of information pertaining to measurements accociated with an occurrence.
    ABCD equivalenceDatasets/Dataset/Units/Unit/MeasurementsOrFacts
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementAccuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementAccuracy
    Modified2009-10-09
    LabelOccurrence Measurement Accuracy
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementAccuracy
    DefinitionThe description of the error associated with the occurrenceAttributeValue.
    NotesExample: "0.01", "normal distribution with variation of 2 m"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedBy
    Modified2009-10-09
    LabelOccurrence Measurement Determined By
    This term is deprecated and should no longer be used.
    DefinitionThe agent responsible for having determined the value of the measurement or characteristic of the occurrence.
    NotesExample: "Javier de la Torre"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementDeterminedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedDate
    Modified2009-10-09
    LabelOccurrence Measurement Determined Date
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementDeterminedDate
    DefinitionThe date on which the the measurement or characteristic of the occurrence was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).
    NotesExamples: "1963-03-08T14:07-0600" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, "2009-02-20T08:40Z" is 20 Feb 2009 8:40am UTC, "1809-02-12" is 12 Feb 1809, "1906-06" is Jun 1906, "1971" is just that year, "2007-03-01T13:00:00Z/2008-05-11T15:30:00Z" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, "2007-11-13/15" is the interval between 13 Nov 2007 and 15 Nov 2007.
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementID
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementID
    Modified2009-10-09
    LabelOccurrence Measurement ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementID
    DefinitionAn identifier for the occurrence attribute. May be a global unique identifier or an identifier specific to the data set.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementRemarks
    Modified2009-10-09
    LabelOccurrence Measurement Remarks
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementRemarks
    DefinitionComments or notes accompanying the measurement or characteristic of the occurrence.
    NotesExample: "tip of tail missing"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementType
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementType
    Modified2009-10-09
    LabelOccurrence Measurement Type
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementType
    DefinitionThe nature of the measurement or characteristic of the occurrence. Recommended best practice is to use a controlled vocabulary.
    NotesExample: "tail length"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementUnit
    Modified2009-10-09
    LabelOccurrence Measurement Unit
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementUnit
    DefinitionThe units for the value of the measurement or characteristic of the occurrence. Recommended best practice is to use International System of Units (SI) units.
    NotesExample: "mm"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceMeasurementValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementValue
    Modified2009-10-09
    LabelOccurrence Measurement Value
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/measurementValue
    DefinitionThe value of the measurement or characteristic of the occurrence.
    NotesExample: "45"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2017-10-06
    LabelOccurrence Remarks
    DefinitionComments or notes about the Occurrence.
    Examplesfound dead on road
    ABCD equivalenceDataSets/DataSet/Units/Unit/Notes
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:occurrenceStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/occurrenceStatus
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2015-03-27
    LabelOccurrence Status (IRI)
    DefinitionA statement about the presence or absence of a Taxon at a Location.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:occurrenceStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/occurrenceStatus
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2021-07-15
    LabelOccurrence Status
    DefinitionA statement about the presence or absence of a Taxon at a Location.
    NotesFor Occurrences, the default vocabulary is recommended to consist of "present" and "absent", but can be extended by implementers with good justification.
    Examplespresent, absent
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:order
    Term IRIhttp://rs.tdwg.org/dwc/terms/order
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/order-2017-10-06
    LabelOrder
    DefinitionThe full scientific name of the order in which the taxon is classified.
    ExamplesCarnivora, Monocleales
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Organism
    Term IRIhttp://rs.tdwg.org/dwc/terms/Organism
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Organism-2018-09-06
    LabelOrganism
    DefinitionA particular organism or defined group of organisms considered to be taxonomically homogeneous.
    NotesInstances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.
    ExamplesA specific bird. A specific wolf pack. A specific instance of a bacterial culture.
    ABCD equivalencenot in ABCD
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismID
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismID-2017-10-06
    LabelOrganism ID
    DefinitionAn identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.
    Exampleshttp://arctos.database.museum/guid/WNMU:Mamm:1249
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismName
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismName
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismName-2017-10-06
    LabelOrganism Name
    DefinitionA textual name or label assigned to an Organism instance.
    ExamplesHuberta, Boab Prison Tree, J pod
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantity
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantity
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantity-2021-07-15
    LabelOrganism Quantity
    DefinitionA number or enumeration value for the quantity of organisms.
    NotesAn organismQuantity must have a corresponding organismQuantityType.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with % biomass (organismQuantityType). r (organismQuantity) with Braun Blanquet Scale (organismQuantityType). many (organismQuantity) with individuals (organismQuantityType).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:organismQuantityType
    Term IRIhttp://rs.tdwg.org/dwc/iri/organismQuantityType
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/organismQuantityType-2015-03-27
    LabelOrganism Quantity Type (IRI)
    DefinitionThe type of quantification system used for the quantity of organisms.
    NotesA dwc:organismQuantityType must have a corresponding dwc:organismQuantity.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantityType
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantityType
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantityType-2017-10-06
    LabelOrganism Quantity Type
    DefinitionThe type of quantification system used for the quantity of organisms.
    NotesA dwc:organismQuantityType must have a corresponding dwc:organismQuantity.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with %biomass (organismQuantityType). r (organismQuantity) with BraunBlanquetScale (organismQuantityType).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismRemarks-2017-10-06
    LabelOrganism Remarks
    DefinitionComments or notes about the Organism instance.
    ExamplesOne of a litter of six
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismScope
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismScope
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismScope-2017-10-06
    LabelOrganism Scope
    DefinitionA description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation.
    NotesRecommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.
    Examplesmulticellular organism, virus, clone, pack, colony
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:originalNameUsage
    Term IRIhttp://rs.tdwg.org/dwc/terms/originalNameUsage
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/originalNameUsage-2021-07-15
    LabelOriginal Name Usage
    DefinitionThe taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.
    NotesThe full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.
    ExamplesPinus abies, Gasterosteus saltatrix Linnaeus 1768
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:originalNameUsageID
    Term IRIhttp://rs.tdwg.org/dwc/terms/originalNameUsageID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2021-07-15
    LabelOriginal Name Usage ID
    DefinitionAn identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.
    NotesThis term should be used to refer to the taxonID of a Taxon record that represents the usage of the terminal element of the scientificName as originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL)
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:otherCatalogNumbers
    Term IRIhttp://rs.tdwg.org/dwc/terms/otherCatalogNumbers
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2017-10-06
    LabelOther Catalog Numbers
    DefinitionA list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesFMNH:Mammal:1234, NPS YELLO6778 | MBG 33424
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:ownerInstitutionCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/ownerInstitutionCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2017-10-06
    LabelOwner Institution Code
    DefinitionThe name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.
    ExamplesNPS, APN, InBio
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:parentEventID
    Term IRIhttp://rs.tdwg.org/dwc/terms/parentEventID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentEventID-2017-10-06
    LabelParent Event ID
    DefinitionAn identifier for the broader Event that groups this and potentially other Events.
    NotesUse a globally unique identifier for a dwc:Event or an identifier for a dwc:Event that is specific to the data set.
    ExamplesA1 (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - A1:1, A1:2).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:parentNameUsage
    Term IRIhttp://rs.tdwg.org/dwc/terms/parentNameUsage
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentNameUsage-2017-10-06
    LabelParent Name Usage
    DefinitionThe full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
    ExamplesRubiaceae, Gruiformes, Testudinae
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:parentNameUsageID
    Term IRIhttp://rs.tdwg.org/dwc/terms/parentNameUsageID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2021-07-15
    LabelParent Name Usage ID
    DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.
    NotesThis term should be used for accepted names to refer to the taxonID of a Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41074 (ITIS), urn:lsid:ipni.org:names:30001404-2 (IPNI), 2704173 (GBIF), 6T8N (COL)
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:pathway
    Term IRIhttp://rs.tdwg.org/dwc/terms/pathway
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pathway-2021-03-29
    LabelPathway
    DefinitionThe process by which an Organism came to be in a given place at a given time.
    NotesRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084
    ExamplesreleasedForUse, otherEscape, transportContaminant, transportStowaway, corridor, unaided
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_23
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:pathway
    Term IRIhttp://rs.tdwg.org/dwc/iri/pathway
    Modified2021-03-29
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/pathway-2021-03-29
    LabelPathway (IRI)
    DefinitionThe process by which an Organism came to be in a given place at a given time.
    NotesRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Exampleshttp://rs.tdwg.org/dwcpw/values/p002, http://rs.tdwg.org/dwcpw/values/p046
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2020-10-13_23
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:phylum
    Term IRIhttp://rs.tdwg.org/dwc/terms/phylum
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/phylum-2017-10-06
    LabelPhylum
    DefinitionThe full scientific name of the phylum or division in which the taxon is classified.
    ExamplesChordata (phylum). Bryophyta (division).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:pointRadiusSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20
    LabelPoint Radius Spatial Fit
    DefinitionThe ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples0, 1, 1.5708
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:preparations
    Term IRIhttp://rs.tdwg.org/dwc/iri/preparations
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/preparations-2015-03-27
    LabelPreparations (IRI)
    DefinitionA preparation or preservation method for a specimen.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:preparations
    Term IRIhttp://rs.tdwg.org/dwc/terms/preparations
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/preparations-2017-10-06
    LabelPreparations
    DefinitionA list (concatenated and separated) of preparations and preservation methods for a specimen.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examplesfossil, cast, photograph, DNA extract, skin | skull | skeleton, whole animal (ETOH) | tissue (EDTA)
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:PreservedSpecimen
    Term IRIhttp://rs.tdwg.org/dwc/terms/PreservedSpecimen
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2018-09-06
    LabelPreserved Specimen
    DefinitionA specimen that has been preserved.
    ExamplesA plant on an herbarium sheet. A cataloged lot of fish in a jar.
    ABCD equivalenceRecordBasisEnum/PreservedSpecimen
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:PreviousIdentifications
    Term IRIhttp://rs.tdwg.org/dwc/terms/PreviousIdentifications
    Modified2009-04-24
    LabelPrevious Identifications
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/previousIdentifications
    DefinitionA list (concatenated and separated) of previous ScientificNames to which the sample was identified.
    NotesExample: "Anthus correndera".
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:previousIdentifications
    Term IRIhttp://rs.tdwg.org/dwc/terms/previousIdentifications
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/previousIdentifications-2017-10-06
    LabelPrevious Identifications
    DefinitionA list (concatenated and separated) of previous assignments of names to the Organism.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesChalepidae, Pinus abies, Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:recordedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordedBy
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordedBy-2017-10-06
    LabelRecorded By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesJosé E. Crespo. Oliver P. Pearson | Anita K. Pearson (where the value in recordNumber OPP 7101 corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:recordedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/recordedBy
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/recordedBy-2015-03-27
    LabelRecorded By (IRI)
    DefinitionA person, group, or organization responsible for recording the original Occurrence.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:recordedByID
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordedByID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordedByID-2021-07-15
    LabelRecorded By ID
    DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original Occurrence.
    NotesRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space ( | ). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.
    Exampleshttps://orcid.org/0000-0002-1825-0097 (for an individual); https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:recordNumber
    Term IRIhttp://rs.tdwg.org/dwc/iri/recordNumber
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/recordNumber-2015-03-27
    LabelRecord Number (IRI)
    DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.
    NotesThe subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:recordNumber
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordNumber
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordNumber-2017-10-06
    LabelRecord Number
    DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.
    ExamplesOPP 7101
    ABCD equivalenceDataSets/DataSet/Units/Unit/CollectorsFieldNumber
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:references
    Term IRIhttp://purl.org/dc/terms/references
    Modified2021-07-15
    Term version IRIhttp://dublincore.org/usage/terms/history/#references-003
    LabelReferences
    DefinitionA related resource that is referenced, cited, or otherwise pointed to by the described resource.
    NotesFrom Dublin Core, "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By." The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g.,Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.
    ExamplesMaterialSample example: http://arctos.database.museum/guid/MVZ:Mamm:165861, Taxon example: https://www.catalogueoflife.org/data/taxon/32664
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_7
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:RelatedBasisOfRecord
    Term IRIhttp://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord
    Modified2009-01-26
    LabelRelated Basis of Record
    This term is deprecated and should no longer be used.
    DefinitionThe nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for basisOfRecord.
    NotesExample: "PreservedSpecimen"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relatedResourceID
    Term IRIhttp://rs.tdwg.org/dwc/terms/relatedResourceID
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relatedResourceID-2018-09-06
    LabelRelated Resource ID
    DefinitionAn identifier for a related resource (the object, rather than the subject of the relationship).
    Examplesdc609808-b09b-11e8-96f8-529269fb1459
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relatedResourceType
    Term IRIhttp://rs.tdwg.org/dwc/terms/relatedResourceType
    Modified2009-10-09
    LabelRelated Resource Type
    This term is deprecated and should no longer be used.
    DefinitionThe type of the related resource. Recommended best practice is to use a controlled vocabulary.
    NotesExamples: "StillImage", "MovingImage", "Sound", PhysicalObject", "PreservedSpecimen", FossilSpecimen", LivingSpecimen", "HumanObservation", "MachineObservation", "Location", "Taxonomy", "NomeclaturalChecklist", "Publication"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipAccordingTo
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2018-09-06
    LabelRelationship According To
    DefinitionThe source (person, organization, publication, reference) establishing the relationship between the two resources.
    ExamplesJulie Woodruff
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipEstablishedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipEstablishedDate
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2020-08-12
    LabelRelationship Established Date
    DefinitionThe date-time on which the relationship between the two resources was established.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipOfResource
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipOfResource
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2021-07-15
    LabelRelationship Of Resource
    DefinitionThe relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID).
    NotesRecommended best practice is to use a controlled vocabulary.
    ExamplessameAs, duplicate of, mother of, offspring of, sibling of, parasite of, host of, valid synonym of, located within, pollinator of members of taxon, pollinated specific plant, pollinated by members of taxon
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipOfResourceID
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipOfResourceID
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2021-07-15
    LabelRelationship Of Resource ID
    DefinitionAn identifier for the relationship type (predicate) that connects the subject identified by resourceID to its object identified by relatedResourceID.
    NotesRecommended best practice is to use the identifiers of the terms in a controlled vocabulary, such as the OBO Relation Ontology.
    Exampleshttp://purl.obolibrary.org/obo/RO_0002456 (for the relation "pollinated by"), http://purl.obolibrary.org/obo/RO_0002455 (for the relation "pollinates"), https://www.inaturalist.org/observation_fields/879 (for the relation "eaten by")
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipRemarks
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2018-09-06
    LabelRelationship Remarks
    DefinitionComments or notes about the relationship between the two resources.
    Examplesmother and offspring collected from the same nest, pollinator captured in the act
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:reproductiveCondition
    Term IRIhttp://rs.tdwg.org/dwc/terms/reproductiveCondition
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2017-10-06
    LabelReproductive Condition
    DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesnon-reproductive, pregnant, in bloom, fruit-bearing
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:reproductiveCondition
    Term IRIhttp://rs.tdwg.org/dwc/iri/reproductiveCondition
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2015-03-27
    LabelReproductive Condition (IRI)
    DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:resourceID
    Term IRIhttp://rs.tdwg.org/dwc/terms/resourceID
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/resourceID-2018-09-06
    LabelResource ID
    DefinitionAn identifier for the resource that is the subject of the relationship.
    Examplesf809b9e0-b09b-11e8-96f8-529269fb1459
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:ResourceRelationship
    Term IRIhttp://rs.tdwg.org/dwc/terms/ResourceRelationship
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2018-09-06
    LabelResource Relationship
    DefinitionA relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.
    NotesResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.
    ExamplesAn instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:resourceRelationshipID
    Term IRIhttp://rs.tdwg.org/dwc/terms/resourceRelationshipID
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2018-09-06
    LabelResource Relationship ID
    DefinitionAn identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).
    Examples04b16710-b09c-11e8-96f8-529269fb1459
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:rights
    Term IRIhttp://purl.org/dc/terms/rights
    Modified2008-01-14
    LabelRights
    This term is deprecated and should no longer be used.
    Is replaced byhttp://purl.org/dc/terms/license
    DefinitionInformation about rights held in and over the resource.
    NotesTypically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-11-06_17
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:rightsHolder
    Term IRIhttp://purl.org/dc/terms/rightsHolder
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#rightsHolder-002
    LabelRights Holder
    DefinitionA person or organization owning or managing rights over the resource.
    ExamplesThe Regents of the University of California
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Sample
    Term IRIhttp://rs.tdwg.org/dwc/terms/Sample
    Modified2009-04-29
    LabelSample
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/Occurrence
    DefinitionContainer class for information about the results of a sampling event (specimen, observation, etc.)
    ABCD equivalenceDataSets/DataSet/Units/Unit
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttribute
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttribute
    Modified2009-04-29
    LabelSample Attribute
    This term is deprecated and should no longer be used.
    DefinitionContainer class for information about attributes related to a given sample.
    ABCD equivalenceDatasets/Dataset/Units/Unit/MeasurementsOrFacts
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeAccuracy
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy
    Modified2009-04-29
    LabelSample Attribute Accuracy
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementAccuracy
    DefinitionThe description of the error associated with the SampleAttributeValue.
    NotesExample: "0.01", "normal distribution with variation of 2 m"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeDeterminedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedBy
    Modified2009-04-29
    LabelSample Attribute Determined By
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedBy
    DefinitionThe agent responsible for having determined the value of the measurement or characteristic of the sample.
    NotesExample: "Javier de la Torre"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeDeterminedDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate
    Modified2009-04-29
    LabelSample Attribute Determined Date
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedDate
    DefinitionThe date on which the the measurement or characteristic of the sample was made.
    NotesDate may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeRemarks
    Modified2009-04-29
    LabelSample Attribute Remarks
    This term is deprecated and should no longer be used.
    DefinitionComments or notes accompanying the measurement or characteristic of the sample.
    NotesExample: "tip of tail missing"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeUnit
    Modified2009-04-29
    LabelSample Attribute Unit
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementUnit
    DefinitionThe units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.
    NotesExample: "mm"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleAttributeValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleAttributeValue
    Modified2009-04-29
    LabelSample Attribute Value
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceMeasurementValue
    DefinitionThe value of the measurement or characteristic of the sample.
    NotesExample: "45"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SampleRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/SampleRemarks
    Modified2009-04-29
    LabelSample Remarks
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/occurrenceRemarks
    DefinitionComments or notes about the sample or record.
    NotesExample: "found dead on road"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Notes
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:sampleSizeUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/sampleSizeUnit
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2017-10-06
    LabelSample Size Unit
    DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.
    NotesA sampleSizeUnit must have a corresponding sampleSizeValue, e.g., 5 for sampleSizeValue with metre for sampleSizeUnit.
    Examplesminute, hour, day, metre, square metre, cubic metre
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:sampleSizeUnit
    Term IRIhttp://rs.tdwg.org/dwc/iri/sampleSizeUnit
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2015-03-27
    LabelSampling Size Unit (IRI)
    DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.
    NotesA sampleSizeUnit must have a corresponding sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:sampleSizeValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/sampleSizeValue
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2017-10-06
    LabelSample Size Value
    DefinitionA numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.
    NotesA sampleSizeValue must have a corresponding sampleSizeUnit.
    Examples5 for sampleSizeValue with metre for sampleSizeUnit.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingAttributeID
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingAttributeID
    Modified2009-04-29
    LabelSample Attribute ID
    This term is deprecated and should no longer be used.
    DefinitionAn identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingAttributeType
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingAttributeType
    Modified2009-04-29
    LabelSample Attribute Type
    This term is deprecated and should no longer be used.
    DefinitionThe nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.
    NotesExample: "tail length"
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:samplingEffort
    Term IRIhttp://rs.tdwg.org/dwc/terms/samplingEffort
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/samplingEffort-2017-10-06
    LabelSampling Effort
    DefinitionThe amount of effort expended during an Event.
    Examples40 trap-nights, 10 observer-hours, 10 km by foot, 30 km by car
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingEvent
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingEvent
    Modified2009-04-29
    LabelSampling Event
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/Event
    DefinitionContainer class for information about the conditions and methods of acquisition of samples.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingEventAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingEventAttributes
    Modified2009-04-29
    LabelSampling Event Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements or characteristics of the sampling event.
    NotesExample: "Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingEventID
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingEventID
    Modified2009-04-29
    LabelSampling Event ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventID
    DefinitionAn identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Code
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingEventRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingEventRemarks
    Modified2009-04-29
    LabelSampling Event Remarks
    This term is deprecated and should no longer be used.
    DefinitionComments or notes about the sampling event.
    NotesExample: "found dead on road"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingLocation
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingLocation
    Modified2009-04-29
    LabelSampling Location
    This term is deprecated and should no longer be used.
    DefinitionContainer class for information about the location where a sampling event occurred.
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/LocalityText
    TypeClass
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingLocationID
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingLocationID
    Modified2009-04-29
    LabelSampling Location ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/locationID
    DefinitionAn identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.
    NotesExample: "MVZ:LocID:12345"
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:SamplingLocationRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/SamplingLocationRemarks
    Modified2009-04-29
    LabelSampling Location Remarks
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/locationRemarks
    DefinitionComments or notes about the sampling location.
    NotesExample: "under water since 2005"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/AreaDetail
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:samplingProtocol
    Term IRIhttp://rs.tdwg.org/dwc/iri/samplingProtocol
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/samplingProtocol-2021-07-15
    LabelSampling Protocol (IRI)
    DefinitionThe methods or protocols used during an Event, denoted by an IRI.
    NotesRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the Occurrence.
    Exampleshttps://doi.org/10.1111/j.1466-8238.2009.00467.x
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:samplingProtocol
    Term IRIhttp://rs.tdwg.org/dwc/terms/samplingProtocol
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/samplingProtocol-2021-07-15
    LabelSampling Protocol
    DefinitionThe names of, references to, or descriptions of the methods or protocols used during an Event.
    NotesRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesUV light trap, mist net, bottom trawl, ad hoc observation | point count, Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x, Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Method
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificName
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificName
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificName-2021-07-15
    LabelScientific Name
    DefinitionThe 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.
    NotesThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified.
    ExamplesColeoptera (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).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificNameAuthorship
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificNameAuthorship
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2017-10-06
    LabelScientific Name Authorship
    DefinitionThe authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.
    Examples(Torr.) J.T. Howell, (Martinovský) Tzvelev, (Györfi, 1952)
    ABCD equivalence{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificNameID
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificNameID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificNameID-2017-10-06
    LabelScientific Name ID
    DefinitionAn identifier for the nomenclatural (not taxonomic) details of a scientific name.
    Examplesurn:lsid:ipni.org:names:37829-1:1.3
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificNameRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificNameRank
    Modified2009-09-21
    LabelScientific Name Rank
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/taxonRank
    DefinitionThe taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.
    NotesExamples: "subsp.", "var.", "forma", "species", "genus"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:sex
    Term IRIhttp://rs.tdwg.org/dwc/iri/sex
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/sex-2015-03-27
    LabelSex (IRI)
    DefinitionThe sex of the biological individual(s) represented in the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:sex
    Term IRIhttp://rs.tdwg.org/dwc/terms/sex
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/sex-2017-10-06
    LabelSex
    DefinitionThe sex of the biological individual(s) represented in the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesfemale, male, hermaphrodite
    ABCD equivalenceDataSets/DataSet/Units/Unit/Sex
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:specificEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/specificEpithet
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/specificEpithet-2017-10-06
    LabelSpecific Epithet
    DefinitionThe name of the first or species epithet of the scientificName.
    Examplesconcolor, gottschei
    ABCD equivalence{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:startDayOfYear
    Term IRIhttp://rs.tdwg.org/dwc/terms/startDayOfYear
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20
    LabelStart Day Of Year
    DefinitionThe earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).
    Examples1 (1 January). 366 (31 December), 365 (30 December in a leap year, 31 December in a non-leap year).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:StartTimeOfDay
    Term IRIhttp://rs.tdwg.org/dwc/terms/StartTimeOfDay
    Modified2009-04-24
    LabelStart Time of Day
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/eventTime
    DefinitionThe time of day when the event began, expressed as decimal hours from midnight, local time.
    NotesExamples: "12.0" (= noon), "13.5" (= 1:30pm)
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:stateProvince
    Term IRIhttp://rs.tdwg.org/dwc/terms/stateProvince
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/stateProvince-2017-10-06
    LabelState Province
    DefinitionThe name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesMontana, Minas Gerais, Córdoba
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:subfamily
    Term IRIhttp://rs.tdwg.org/dwc/terms/subfamily
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/subfamily-2021-07-15
    LabelSubfamily
    DefinitionThe full scientific name of the subfamily in which the taxon is classified.
    ExamplesPeriptyctinae, Orchidoideae, Sphindociinae
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName if DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonRank == "subfamilia"
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:subgenus
    Term IRIhttp://rs.tdwg.org/dwc/terms/subgenus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/subgenus-2017-10-06
    LabelSubgenus
    DefinitionThe full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.
    ExamplesStrobus, Amerigo, Pilosella
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:Taxon
    Term IRIhttp://rs.tdwg.org/dwc/terms/Taxon
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Taxon-2018-09-06
    LabelTaxon
    DefinitionA group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.
    ExamplesThe genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.
    ABCD equivalenceno simple equivalent in ABCD
    TypeClass
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonAccordingTo
    Modified2009-09-21
    LabelTaxon According To
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/nameAccordingTo
    DefinitionInformation about the authorship of this taxon concept which uses the scientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonAttributes
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonAttributes
    Modified2009-10-09
    LabelTaxon Attributes
    This term is deprecated and should no longer be used.
    DefinitionA list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the taxon.
    NotesExample: "iucnstatus=vulnerable; distribution=Neuquen, Argentina"
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/InformalNameString
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonConceptID
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonConceptID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonConceptID-2017-10-06
    LabelTaxon Concept ID
    DefinitionAn identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.
    Examples8fa58e08-08de-4ac1-b69c-1235340b7001
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:TaxonID
    Term IRIhttp://rs.tdwg.org/dwc/terms/TaxonID
    Modified2009-04-24
    LabelTaxon ID
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/taxonNameID
    DefinitionA global unique identifier for the taxon (name in a classification).
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonID
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonID-2017-10-06
    LabelTaxon ID
    DefinitionAn identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.
    Examples8fa58e08-08de-4ac1-b69c-1235340b7001, 32567, https://www.gbif.org/species/212
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonNameID
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonNameID
    Modified2009-07-06
    LabelTaxon Name ID
    This term is deprecated and should no longer be used.
    DefinitionA unique identifier for the scientificName.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonomicStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonomicStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2017-10-06
    LabelTaxonomic Status
    DefinitionThe status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesinvalid, misapplied, homotypic synonym, accepted
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonRank
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonRank-2017-10-06
    LabelTaxon Rank
    DefinitionThe taxonomic rank of the most specific name in the scientificName.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplessubspecies, varietas, forma, species, genus
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonRemarks
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonRemarks
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonRemarks-2017-10-06
    LabelTaxon Remarks
    DefinitionComments or notes about the taxon or name.
    Examplesthis name is a misspelling in common use
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:toTaxon
    Term IRIhttp://rs.tdwg.org/dwc/iri/toTaxon
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/toTaxon-2015-03-27
    LabelTo Taxon
    DefinitionUse to link a dwc:Identification instance subject to a taxonomic entity such as a taxon, taxon concept, or taxon name use.
    NotesA "convenience property" that replaces Darwin Core literal-value terms related to taxonomic entities. See Section 2.7.4 of the Darwin Core RDF Guide for details.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dcterms:type
    Term IRIhttp://purl.org/dc/terms/type
    Modified2008-01-14
    LabelType
    This term is deprecated and should no longer be used.
    Is replaced byhttp://purl.org/dc/elements/1.1/type
    DefinitionThe nature or genre of the resource.
    NotesTo provide a string literal value for type, use dc:type rather than this term. In accordance with the Darwin Core RDF guide, rdf:type should be used instead of this term to indicate an IRI value for type.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2009-12-07_1
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_20
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dc:type
    Term IRIhttp://purl.org/dc/elements/1.1/type
    Modified2008-01-14
    Term version IRIhttp://dublincore.org/usage/terms/history/#type-006
    LabelType
    DefinitionThe nature or genre of the resource.
    NotesMust be populated with a value from the DCMI type vocabulary (http://dublincore.org/documents/2010/10/11/dcmi-type-vocabulary/).
    ExamplesStillImage, MovingImage, Sound, PhysicalObject, Event, Text
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_20
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:typeStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/typeStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/typeStatus-2017-10-06
    LabelType Status
    DefinitionA list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examplesholotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, holotype of Pinus abies | holotype of Picea abies
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:typeStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/typeStatus
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/typeStatus-2015-03-27
    LabelType Status (IRI)
    DefinitionA nomenclatural type (type status, typified scientific name, publication) applied to the subject.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimCoordinates
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimCoordinates
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2017-10-06
    LabelVerbatim Coordinates
    DefinitionThe verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
    Examples41 05 54S 121 05 34W, 17T 630000 4833400
    ABCD equivalence{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:verbatimCoordinateSystem
    Term IRIhttp://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2015-03-27
    LabelVerbatim Coordinate System (IRI)
    DefinitionThe spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimCoordinateSystem
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20
    LabelVerbatim Coordinate System
    DefinitionThe coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesdecimal degrees, degrees decimal minutes, degrees minutes seconds, UTM
    ABCD equivalence(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimDepth
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimDepth
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimDepth-2017-10-06
    LabelVerbatim Depth
    DefinitionThe original description of the depth below the local surface.
    Examples100-200 m
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimElevation
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimElevation
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimElevation-2017-10-06
    LabelVerbatim Elevation
    DefinitionThe original description of the elevation (altitude, usually above sea level) of the Location.
    Examples100-200 m
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimEventDate
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimEventDate
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2017-10-06
    LabelVerbatim EventDate
    DefinitionThe verbatim original representation of the date and time information for an Event.
    Examplesspring 1910, Marzo 2002, 1999-03-XX, 17IV1934
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/DateTime/DateText
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimIdentification
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimIdentification
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2021-07-15
    LabelVerbatim Identification
    DefinitionA string representing the taxonomic identification as it appeared in the original record.
    NotesThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it.
    ExamplesPeromyscus sp., Ministrymon sp. nov. 1, Anser anser X Branta canadensis, Pachyporidae?
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimLatitude
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimLatitude
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2017-10-06
    LabelVerbatim Latitude
    DefinitionThe verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
    Examples41 05 54.03S
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimLocality
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimLocality
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimLocality-2021-07-15
    LabelVerbatim Locality
    DefinitionThe original textual description of the place.
    Examples25 km NNE Bariloche por R. Nac. 237
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/LocalityText
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimLongitude
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimLongitude
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2017-10-06
    LabelVerbatim Longitude
    DefinitionThe verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.
    Examples121d 10' 34" W
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimScientificNameRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimScientificNameRank
    Modified2009-09-21
    LabelVerbatim Scientific Name Rank
    This term is deprecated and should no longer be used.
    Is replaced byhttp://rs.tdwg.org/dwc/terms/verbatimTaxonRank
    DefinitionThe taxonomic rank of the most specific name in the scientificName as it appears in the original record.
    NotesExamples: "Agamospecies", "sub-lesus", "prole", "apomict", "nothogrex".
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:verbatimSRS
    Term IRIhttp://rs.tdwg.org/dwc/iri/verbatimSRS
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/verbatimSRS-2015-03-27
    LabelVerbatim SRS (IRI)
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.
    NotesRecommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary IRI for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary IRI for the name or code of the ellipsoid, if known.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimSRS
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimSRS
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimSRS-2017-10-06
    LabelVerbatim SRS
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.
    NotesRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown.
    Examplesunknown, EPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimTaxonRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimTaxonRank
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2017-10-06
    LabelVerbatim Taxon Rank
    DefinitionThe taxonomic rank of the most specific name in the scientificName as it appears in the original record.
    ExamplesAgamospecies, sub-lesus, prole, apomict, nothogrex, sp., subsp., var.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:vernacularName
    Term IRIhttp://rs.tdwg.org/dwc/terms/vernacularName
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/vernacularName-2017-10-06
    LabelVernacular Name
    DefinitionA common or vernacular name.
    ExamplesAndean Condor, Condor Andino, American Eagle, Gänsegeier
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verticalDatum
    Term IRIhttp://rs.tdwg.org/dwc/terms/verticalDatum
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verticalDatum-2021-07-15
    LabelVertical Datum
    DefinitionThe vertical datum used as the reference upon which the values in the elevation terms are based.
    NotesRecommended best practice is to use a controlled vocabulary.
    ExamplesEGM84, EGM96, EGM2008, PGM2000A, PGM2004, PGM2006, PGM2007, epsg:7030, unknown
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:verticalDatum
    Term IRIhttp://rs.tdwg.org/dwc/iri/verticalDatum
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/verticalDatum-2021-07-15
    LabelVertical Datum (IRI)
    DefinitionThe vertical datum used as the reference upon which the values in the elevation terms are based.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:waterBody
    Term IRIhttp://rs.tdwg.org/dwc/terms/waterBody
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/waterBody-2017-10-06
    LabelWater Body
    DefinitionThe name of the water body in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesIndian Ocean, Baltic Sea, Hudson River, Lago Nahuel Huapi
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:year
    Term IRIhttp://rs.tdwg.org/dwc/terms/year
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/year-2017-10-06
    LabelYear
    DefinitionThe four-digit year in which the Event occurred, according to the Common Era Calendar.
    Examples1160, 2008
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin
    TypeProperty
    + + diff --git a/docs/list/changes.md b/docs/list/changes.md new file mode 100644 index 0000000..912773a --- /dev/null +++ b/docs/list/changes.md @@ -0,0 +1,2835 @@ +# Changes made in the 2023-06-16 version of DwC + +The changes made fall into several categories: + +1. New terms added (requires change process and Executive approval) +2. Subtantive term changes (requires change process and Executive approval) +3. Non-substantive term changes (correcting errors, updating examples; does not require change process but is tracked for transparency) +4. Formatting changes. The examples were changed from a comma separated list to a vertical list. + +The first three categories are tracked in the milestone [Public Review 2023-02-12](https://github.com/tdwg/dwc/milestone/16), where the rationale and discussion of changes are given. The details of the changes are shown below, except for those resulting from [Issue 379](https://github.com/tdwg/dwc/issues/379), which were too numerous to show below, but which can be seen in the draft of the new List of Terms document. The changes made in the fourth category were cosmetic and not shown below. + +## 1. New terms added (change process and Executive approval required) + +Note: The IRI analogs of new terms (in the dwciri: namespace) are not shown. Their definitions are identical to the dwc: analogs. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimLabel
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimLabel
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimLabel-2023-06-16
    LabelVerbatim Label
    DefinitionA serialized encoding intended to represent the literal, i.e., character by character, textual content of a label affixed on, near, or explicitly associated with a material entity, free from interpretation, translation, or transliteration.
    NotesThe content of this term should include no embellishments, prefixes, headers or other additions made to the text. Abbreviations must not be expanded and supposed misspellings must not be corrected. Lines or breakpoints between blocks of text that could be verified by seeing the original labels or images of them may be used. Examples of material entities include preserved specimens, fossil specimens, and material samples. Best practice is to use UTF-8 for all characters. Best practice is to add comment “verbatimLabel derived from human transcription” in dwc:occurrenceRemarks.
    ExamplesExamples can be found at https://dwc.tdwg.org/examples/verbatimLabel.
    ABCD equivalenceMarks/Mark/MarkText
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:caste
    Term IRIhttp://rs.tdwg.org/dwc/terms/caste
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/caste-2023-06-16
    LabelCaste
    DefinitionCategorisation of individuals for eusocial species (including some mammals and arthropods).
    NotesRecommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon.
    Examples
      +
    • queen
    • +
    • male alate
    • +
    • intercaste
    • +
    • minor worker
    • +
    • soldier
    • +
    • ergatoid
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:vitality
    Term IRIhttp://rs.tdwg.org/dwc/iri/vitality
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/vitality-2023-06-16
    LabelVitality (IRI)
    DefinitionAn indication of whether a dwc:Organism was alive or dead at the time of collection or observation.
    NotesRecommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of PreservedSpecimen, MaterialSample, or HumanObservation. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:parentMeasurementID
    Term IRIhttp://rs.tdwg.org/dwc/terms/parentMeasurementID
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentMeasurementID-2023-06-16
    LabelParent Measurement ID
    DefinitionAn identifier for a broader dwc:MeasurementOrFact that groups this and potentially other dwc:MeasurementOrFacts.
    NotesMay be a globally unique identifier or an identifier specific to the data set.
    Examples
      +
    • 9c752d22-b09a-11e8-96f8-529269fb1459
    • +
    • E1_E1_O1_M1
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:superfamily
    Term IRIhttp://rs.tdwg.org/dwc/terms/superfamily
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/superfamily-2023-06-16
    LabelSuperfamily
    DefinitionThe full scientific name of the family in which the dwc:Taxon is classified.
    NotesA taxonomic category subordinate to an order and superior to a family. According to ICZN article 29.2, the suffix -oidea is used for a superfamily name.
    Examples
      +
    • Achatinoidea
    • +
    • Cerithioidea
    • +
    • Helicoidea
    • +
    • Hypsibioidea
    • +
    • Valvatoidea
    • +
    • Zonitoidea
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: superfamilia)
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:subtribe
    Term IRIhttp://rs.tdwg.org/dwc/terms/subtribe
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/subtribe-2023-06-16
    LabelSubtribe
    DefinitionThe full scientific name of the subtribe in which the dwc:Taxon is classified.
    Examples
      +
    • Plotinini
    • +
    • Typhaeini
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: )
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:tribe
    Term IRIhttp://rs.tdwg.org/dwc/terms/tribe
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/tribe-2023-06-16
    LabelTribe
    DefinitionThe full scientific name of the tribe in which the dwc:Taxon is classified.
    Examples
      +
    • Ortaliini
    • +
    • Arethuseae
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: )
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventType
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventType
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventType-2023-06-16
    LabelEvent Type
    DefinitionThe nature of the dwc:Event.
    NotesRecommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate.
    Examples
      +
    • Sample
    • +
    • Observation
    • +
    • Site Visit
    • +
    • Biotic Interaction
    • +
    • Bioblitz
    • +
    • Expedition
    • +
    • Survey
    • +
    • Project
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    + +## 2. Substantive term changes (change process and Executive approval required) + +### Change format of dwc:basisOfRecord string values to conform to actual practice + +See [Issue 416](https://github.com/tdwg/dwc/issues/416) for details. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:basisOfRecord
    Term IRIhttp://rs.tdwg.org/dwc/terms/basisOfRecord
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/basisOfRecord-2023-06-16
    LabelBasis of Record
    DefinitionThe specific nature of the data record.
    NotesRecommended best practice is to use a controlled vocabulary such as the set of local names of the identifiers for classes in Darwin Core.
    Examples
      +
    • PreservedSpecimen
    • +
    • FossilSpecimen
    • +
    • LivingSpecimen
    • +
    • MaterialSample
    • +
    • Event
    • +
    • HumanObservation
    • +
    • MachineObservation
    • +
    • Taxon
    • +
    • Occurrence
    • +
    • MaterialCitation
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/RecordBasis
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2009-12-07_2
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:basisOfRecord
    Term IRIhttp://rs.tdwg.org/dwc/terms/basisOfRecord
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/basisOfRecord-2021-07-15
    LabelBasis of Record
    DefinitionThe specific nature of the data record.
    NotesRecommended best practice is to use the standard label of one of the Darwin Core classes.
    ExamplesPreservedSpecimen, FossilSpecimen, LivingSpecimen, MaterialSample, Event, HumanObservation, MachineObservation, Taxon, Occurrence, MaterialCitation
    ABCD equivalenceDataSets/DataSet/Units/Unit/RecordBasis
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2009-12-07_2
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_15
    + +### Clarification of eventTime usage + +See [Issue 407](https://github.com/tdwg/dwc/issues/407) for details. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventTime
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventTime
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventTime-2023-06-16
    LabelEvent Time
    DefinitionThe time or interval during which a dwc:Event occurred.
    NotesRecommended best practice is to use a time of day that conforms to ISO 8601-1:2019.
    Examples
      +
    • 14:07-0600 (2:07pm in the time zone six hours earlier than UTC)
    • +
    • 08:40:21Z (8:40:21am UTC)
    • +
    • 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC)
    • +
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventTime
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventTime
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12
    LabelEvent Time
    DefinitionThe time or interval during which an Event occurred.
    NotesRecommended best practice is to use a date that conforms to ISO 8601-1:2019.
    Examples14:07-0600 (2:07pm in the time zone six hours earlier than UTC). 08:40:21Z (8:40:21am UTC). 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC).
    ABCD equivalenceaccessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd
    TypeProperty
    + +### Clarification of usage of namePublishedIn and namePublishedInID + +See [Issue 405](https://github.com/tdwg/dwc/issues/405) for details. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedIn
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedIn
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedIn-2023-06-16
    LabelName Published In
    DefinitionA reference for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.
    NotesA citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedIn should be empty.
    Examples
      +
    • Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388
    • +
    • Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedIn
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedIn
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedIn-2017-10-06
    LabelName Published In
    DefinitionA reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
    ExamplesPearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation
    TypeProperty
    + +--------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedInID
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedInID
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedInID-2023-06-16
    LabelName Published In ID
    DefinitionAn identifier for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.
    NotesA citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedInID should be empty.
    ABCD equivalencenot in ABCD
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:namePublishedInID
    Term IRIhttp://rs.tdwg.org/dwc/terms/namePublishedInID
    Modified2020-08-12
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/namePublishedInID-2020-08-12
    LabelName Published In ID
    DefinitionAn identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.
    ABCD equivalencenot in ABCD
    TypeProperty
    + +### Clarification of term definitions for footprintSpatialFit and pointRadiusSpatialFit + +See [Issue 419](https://github.com/tdwg/dwc/issues/419) and [Issue 420](https://github.com/tdwg/dwc/issues/420) for details. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:footprintSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintSpatialFit
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2023-06-16
    LabelFootprint Spatial Fit
    DefinitionThe 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.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples
      +
    • 0
    • +
    • 1
    • +
    • 1.5708
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:footprintSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintSpatialFit
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20
    LabelFootprint Spatial Fit
    DefinitionThe ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples0, 1, 1.5708
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit
    TypeProperty
    + +-------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:pointRadiusSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2023-06-16
    LabelPoint Radius Spatial Fit
    DefinitionThe ratio of the area of the point-radius (dwc:decimalLatitude, dwc:decimalLongitude, dwc:coordinateUncertaintyInMeters) 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 point-radius does not completely contain the original representation. The dwc:pointRadiusSpatialFit 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:pointRadiusSpatialFit is 1.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples
      +
    • 0
    • +
    • 1
    • +
    • 1.5708
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:pointRadiusSpatialFit
    Term IRIhttp://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit
    Modified2020-08-20
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20
    LabelPoint Radius Spatial Fit
    DefinitionThe ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.
    NotesDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).
    Examples0, 1, 1.5708
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit
    TypeProperty
    + +### Geographic divisions + +These terms were changed in their usage comments to indicate that the field should be left blank if the location spans multiple entities at that level. In addition, the labels of several divisions were changed to "Nth Order Division" from more idiosyncratic labels. See [Issue 395](https://github.com/tdwg/dwc/issues/395) for discussion. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:municipality
    Term IRIhttp://rs.tdwg.org/dwc/terms/municipality
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/municipality-2023-06-16
    LabelThird Order Division
    DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the dcterms:Location occurs. Do not use this term for a nearby named place that does not contain the actual dcterms:Location.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    Examples
      +
    • Holzminden
    • +
    • Araçatuba
    • +
    • Ga-Segonyana
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:municipality
    Term IRIhttp://rs.tdwg.org/dwc/terms/municipality
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/municipality-2017-10-06
    LabelMunicipality
    DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesHolzminden, Araçatuba, Ga-Segonyana
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName
    TypeProperty
    + +------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:county
    Term IRIhttp://rs.tdwg.org/dwc/terms/county
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/county-2023-06-16
    LabelSecond Order Division
    DefinitionThe full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the dcterms:Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    Examples
      +
    • Missoula
    • +
    • Los Lagos
    • +
    • Mataró
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:county
    Term IRIhttp://rs.tdwg.org/dwc/terms/county
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/county-2017-10-06
    LabelCounty
    DefinitionThe full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesMissoula, Los Lagos, Mataró
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County
    TypeProperty
    + +------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:stateProvince
    Term IRIhttp://rs.tdwg.org/dwc/terms/stateProvince
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/stateProvince-2023-06-16
    LabelFirst Order Division
    DefinitionThe name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the dcterms:Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    Examples
      +
    • Montana
    • +
    • Minas Gerais
    • +
    • Córdoba
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:stateProvince
    Term IRIhttp://rs.tdwg.org/dwc/terms/stateProvince
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/stateProvince-2017-10-06
    LabelState Province
    DefinitionThe name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesMontana, Minas Gerais, Córdoba
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.)
    TypeProperty
    + +--------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:countryCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/countryCode
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/countryCode-2023-06-16
    LabelCountry Code
    DefinitionThe standard code for the country in which the dcterms:Location occurs.
    NotesRecommended best practice is to use an ISO 3166-1-alpha-2 country code. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    Examples
      +
    • AR
    • +
    • SV
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:countryCode
    Term IRIhttp://rs.tdwg.org/dwc/terms/countryCode
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/countryCode-2017-10-06
    LabelCountry Code
    DefinitionThe standard code for the country in which the Location occurs.
    NotesRecommended best practice is to use an ISO 3166-1-alpha-2 country code.
    ExamplesAR, SV
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code
    TypeProperty
    + +------------------ + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:continent
    Term IRIhttp://rs.tdwg.org/dwc/terms/continent
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/continent-2023-06-16
    LabelContinent
    DefinitionThe name of the continent in which the dcterms:Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    Examples
      +
    • Africa
    • +
    • Antarctica
    • +
    • Asia
    • +
    • Europe
    • +
    • North America
    • +
    • Oceania
    • +
    • South America
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:continent
    Term IRIhttp://rs.tdwg.org/dwc/terms/continent
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/continent-2017-10-06
    LabelContinent
    DefinitionThe name of the continent in which the Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.
    ExamplesAfrica, Antarctica, Asia, Europe, North America, Oceania, South America
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent
    TypeProperty
    + +### Technical details in form of names + +Several issues clarified the use of the multiplication character in hybrid names and other technical issues in the format of names. + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimIdentification
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimIdentification
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2023-06-16
    LabelVerbatim Identification
    DefinitionA string representing the taxonomic identification as it appeared in the original record.
    NotesThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to dwc:scientificName (and dwc:identificationQualifier etc.), not instead of it.
    Examples
      +
    • Peromyscus sp.
    • +
    • Ministrymon sp. nov. 1
    • +
    • Anser anser × Branta canadensis
    • +
    • Pachyporidae?
    • +
    • Potentilla × pantotricha Soják
    • +
    • Aconitum pilipes × A. variegatum
    • +
    • Lepomis auritus x cyanellus
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimIdentification
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimIdentification
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2021-07-15
    LabelVerbatim Identification
    DefinitionA string representing the taxonomic identification as it appeared in the original record.
    NotesThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it.
    ExamplesPeromyscus sp., Ministrymon sp. nov. 1, Anser anser X Branta canadensis, Pachyporidae?
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + +--------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificName
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificName
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificName-2023-06-16
    LabelScientific Name
    DefinitionThe full scientific name, with authorship and date information if known. When forming part of a dwc: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 dwc:identificationQualifier term.
    NotesThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified. Names should be compliant to the most recent nomenclatural code. For example, names of hybrids for algae, fungi and plants should follow the rules of the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H.1, H.2 and H.3). Thus, use the multiplication sign × (Unicode U+00D7, HTML ×) to identify a hybrid, not x or X, if possible.
    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)
    • +
    • ×Agropogon littoralis (Sm.) C. E. Hubb.
    • +
    • Mentha ×smithiana R. A. Graham
    • +
    • Agrostis stolonifera L. × Polypogon monspeliensis (L.) Desf.
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:scientificName
    Term IRIhttp://rs.tdwg.org/dwc/terms/scientificName
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificName-2021-07-15
    LabelScientific Name
    DefinitionThe 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.
    NotesThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified.
    ExamplesColeoptera (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).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + +------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonRank
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonRank-2023-06-16
    LabelTaxon Rank
    DefinitionThe taxonomic rank of the most specific name in the dwc:scientificName.
    NotesRecommended best practice is to use a controlled vocabulary. The taxon ranks of algae, fungi and plants are defined in the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H3.2, H4.4 and H.3.1).
    Examples
      +
    • subspecies
    • +
    • varietas
    • +
    • forma
    • +
    • species
    • +
    • genus
    • +
    • nothogenus
    • +
    • nothospecies
    • +
    • nothosubspecies
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:taxonRank
    Term IRIhttp://rs.tdwg.org/dwc/terms/taxonRank
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonRank-2017-10-06
    LabelTaxon Rank
    DefinitionThe taxonomic rank of the most specific name in the scientificName.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplessubspecies, varietas, forma, species, genus
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank
    TypeProperty
    + +-------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:infraspecificEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/infraspecificEpithet
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2023-06-16
    LabelInfraspecific Epithet
    DefinitionThe name of the lowest or terminal infraspecific epithet of the dwc:scientificName, excluding any rank designation.
    NotesIn botany, name strings in literature and identifications may have multiple infraspecific ranks. According to the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles 6.7 & Art. 24.1), valid names only have two epithets, with the lowest rank being the dwc:infraspecificEpithet. For example: the dwc:infraspecificEpithet in the string Indigofera charlieriana subsp. sessilis var. scaberrima is scaberrima and the dwc:scientificName is Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett. Use dwc:verbatimIdentification for the full name string used in a dwc:Identification.
    Examples
      +
    • concolor (for scientificName Puma concolor concolor (Linnaeus, 1771))
    • +
    • oxyadenia (for scientificName Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell)
    • +
    • laxa (for scientificName Cheilanthes hirta f. laxa (Kunze) W.Jacobsen & N.Jacobsen)
    • +
    • scaberrima (for scientificName Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett)
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:infraspecificEpithet
    Term IRIhttp://rs.tdwg.org/dwc/terms/infraspecificEpithet
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2021-07-15
    LabelInfraspecific Epithet
    DefinitionThe name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.
    NotesIn botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is scaberrima and the scientificName is Indigophera charlieriana var. scaberrima.
    Examplesconcolor (for scientificName "Puma concolor concolor"), oxyadenia (for scientificName "Quercus agrifolia var. oxyadenia"), laxa (for scientificName "Cheilanthes hirta f. laxa"), scaberrima (for scientificName "Indigofera charlieriana var. scaberrima").
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet
    TypeProperty
    + +## 3. Non-substantive term changes (informative) + +New: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipOfResource
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipOfResource
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2023-06-16
    LabelRelationship Of Resource
    DefinitionThe relationship of the subject (identified by dwc:resourceID) to the object (identified by dwc:relatedResourceID).
    NotesRecommended best practice is to use a controlled vocabulary.
    Examples
      +
    • same as
    • +
    • duplicate of
    • +
    • mother of
    • +
    • offspring of
    • +
    • sibling of
    • +
    • parasite of
    • +
    • host of
    • +
    • valid synonym of
    • +
    • located within
    • +
    • pollinator of members of taxon
    • +
    • pollinated specific plant
    • +
    • pollinated by members of taxon
    • +
    • on slab with
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:relationshipOfResource
    Term IRIhttp://rs.tdwg.org/dwc/terms/relationshipOfResource
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2021-07-15
    LabelRelationship Of Resource
    DefinitionThe relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID).
    NotesRecommended best practice is to use a controlled vocabulary.
    ExamplessameAs, duplicate of, mother of, offspring of, sibling of, parasite of, host of, valid synonym of, located within, pollinator of members of taxon, pollinated specific plant, pollinated by members of taxon
    ABCD equivalenceDataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType
    TypeProperty
    + +-------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementUnit
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementUnit-2023-06-16
    LabelMeasurement Unit
    DefinitionThe units associated with the dwc:measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI).
    Examples
      +
    • m
    • +
    • g
    • +
    • l
    • +
    • °C
    • +
    • mm
    • +
    • km²
    • +
    • %
    • +
    • hh:mm:ss
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementUnit
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementUnit-2018-09-06
    LabelMeasurement Unit
    DefinitionThe units associated with the measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI).
    Examplesmm, C, km, ha
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    TypeProperty
    + +------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:institutionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/institutionID
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/institutionID-2023-06-16
    LabelInstitution ID
    DefinitionAn identifier for the institution having custody of the object(s) or information referred to in the record.
    NotesFor physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the Research Organization Registry (ROR) or the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll).
    Examples
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceInstitutionID
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:institutionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/institutionID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/institutionID-2017-10-06
    LabelInstitution ID
    DefinitionAn identifier for the institution having custody of the object(s) or information referred to in the record.
    NotesFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).
    Exampleshttp://biocol.org/urn:lsid:biocol.org:col:34777, http://grbio.org/cool/km06-gtbn
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceInstitutionID
    TypeProperty
    + +----------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:collectionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/collectionID
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionID-2023-06-16
    LabelCollection ID
    DefinitionAn identifier for the collection or dataset from which the record was derived.
    NotesFor physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll).
    Exampleshttps://www.gbif.org/grscicoll/collection/fbd3ed74-5a21-4e01-b86a-33d36f032d9c
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceID
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:collectionID
    Term IRIhttp://rs.tdwg.org/dwc/terms/collectionID
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionID-2017-10-06
    LabelCollection ID
    DefinitionAn identifier for the collection or dataset from which the record was derived.
    NotesFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).
    Exampleshttp://biocol.org/urn:lsid:biocol.org:col:1001, http://grbio.org/cool/p5fp-c036
    ABCD equivalenceDataSets/DataSet/Units/Unit/SourceID
    TypeProperty
    + +------------ + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantity
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantity
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantity-2023-06-16
    LabelOrganism Quantity
    DefinitionA number or enumeration value for the quantity of dwc:Organisms.
    NotesA dwc:organismQuantity must have a corresponding dwc:organismQuantityType.
    Examples
      +
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • +
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • +
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • +
    • many (organismQuantity) with individuals (organismQuantityType)
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantity
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantity
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantity-2021-07-15
    LabelOrganism Quantity
    DefinitionA number or enumeration value for the quantity of organisms.
    NotesAn organismQuantity must have a corresponding organismQuantityType.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with % biomass (organismQuantityType). r (organismQuantity) with Braun Blanquet Scale (organismQuantityType). many (organismQuantity) with individuals (organismQuantityType).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + +---------------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantityType
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantityType
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantityType-2023-06-16
    LabelOrganism Quantity Type
    DefinitionThe type of quantification system used for the quantity of dwc:Organisms.
    NotesA dwc:organismQuantityType must have a corresponding dwc:organismQuantity.
    Examples
      +
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • +
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • +
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • +
    • many (organismQuantity) with individuals (organismQuantityType)
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:organismQuantityType
    Term IRIhttp://rs.tdwg.org/dwc/terms/organismQuantityType
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantityType-2017-10-06
    LabelOrganism Quantity Type
    DefinitionThe type of quantification system used for the quantity of organisms.
    NotesA dwc:organismQuantityType must have a corresponding dwc:organismQuantity.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with %biomass (organismQuantityType). r (organismQuantity) with BraunBlanquetScale (organismQuantityType).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2015-03-19_18
    + +--------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:coordinateUncertaintyInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2023-06-16
    LabelCoordinate Uncertainty In Meters
    DefinitionThe 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.
    Examples
      +
    • 30 (reasonable lower limit on or after 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • +
    • 100 (reasonable lower limit before 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • +
    • 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system)
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters
    TypeProperty
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:coordinateUncertaintyInMeters
    Term IRIhttp://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters
    Modified2021-07-15
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2021-07-15
    LabelCoordinate Uncertainty In Meters
    DefinitionThe horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.
    Examples30 (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 100 (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters
    TypeProperty
    + +------------- + +new: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:dynamicProperties
    Term IRIhttp://rs.tdwg.org/dwc/terms/dynamicProperties
    Modified2023-06-16
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/dynamicProperties-2023-06-16
    LabelDynamic Properties
    DefinitionA list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
    NotesRecommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.
    Examples
      +
    • {"heightInMeters":1.5}
    • +
    • {"targusLengthInMeters":0.014, "weightInGrams":120}
    • +
    • {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}
    • +
    • {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}
    • +
    • {"aspectHeading":277, "slopeInDegrees":6}
    • +
    • {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + +old: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:dynamicProperties
    Term IRIhttp://rs.tdwg.org/dwc/terms/dynamicProperties
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06
    LabelDynamic Properties
    DefinitionA list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.
    NotesRecommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.
    Examples{"heightInMeters":1.5}, {"tragusLengthInMeters":0.014, "weightInGrams":120}, {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}, {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}, {"aspectHeading":277, "slopeInDegrees":6}, {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + +------------- + diff --git a/docs/list/index.md b/docs/list/index.md index 23bea01..21e2852 100644 --- a/docs/list/index.md +++ b/docs/list/index.md @@ -4,7 +4,7 @@ Title : List of Darwin Core terms Date version issued -: 2021-07-15 +: 2023-06-28 Date created : 2020-08-12 @@ -13,13 +13,13 @@ Part of TDWG Standard : This version -: +: Latest version : Previous version -: +: Abstract : Darwin Core is a vocabulary standard for transmitting information about biodiversity. This document lists all terms in namespaces currently used in the vocabulary. @@ -31,12 +31,12 @@ Creator : TDWG Darwin Core Maintenance Group Bibliographic citation -: Darwin Core Maintenance Group. 2021. List of Darwin Core terms. Biodiversity Information Standards (TDWG). +: Darwin Core Maintenance Group. 2023. List of Darwin Core terms. Biodiversity Information Standards (TDWG). ## 1 Introduction (Informative) -This document contains terms that are part of the most recent version of the Darwin Core vocabulary (). +This document contains terms that are part of the most recent version of the Darwin Core vocabulary (). This document includes terms in four namespaces that contain recommended terms: `dwc:`, `dwciri:`, `dc:`, and `dcterms:`. However, some terms in these namespaces are deprecated or superseded and should no longer be used. Deprecation or supersession is noted in the term metadata. Namespaces that contain only deprecated terms are not included in this document, but metadata about those terms can be retrieved by dereferencing their IRIs. @@ -131,6 +131,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:associatedSequences](#dwc_associatedSequences) | [dwc:associatedTaxa](#dwc_associatedTaxa) | [dwc:behavior](#dwc_behavior) | +[dwc:caste](#dwc_caste) | [dwc:catalogNumber](#dwc_catalogNumber) | [dwc:CatalogNumberNumeric](#dwc_CatalogNumberNumeric) | [dwc:degreeOfEstablishment](#dwc_degreeOfEstablishment) | @@ -154,7 +155,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:recordedByID](#dwc_recordedByID) | [dwc:recordNumber](#dwc_recordNumber) | [dwc:reproductiveCondition](#dwc_reproductiveCondition) | -[dwc:sex](#dwc_sex) +[dwc:sex](#dwc_sex) | +[dwc:vitality](#dwc_vitality) **Organism** @@ -167,7 +169,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# **Material Sample** -[dwc:materialSampleID](#dwc_materialSampleID) +[dwc:materialSampleID](#dwc_materialSampleID) | +[dwc:verbatimLabel](#dwc_verbatimLabel) **Event** @@ -180,6 +183,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:eventID](#dwc_eventID) | [dwc:eventRemarks](#dwc_eventRemarks) | [dwc:eventTime](#dwc_eventTime) | +[dwc:eventType](#dwc_eventType) | [dwc:fieldNotes](#dwc_fieldNotes) | [dwc:fieldNumber](#dwc_fieldNumber) | [dwc:habitat](#dwc_habitat) | @@ -330,6 +334,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:specificEpithet](#dwc_specificEpithet) | [dwc:subfamily](#dwc_subfamily) | [dwc:subgenus](#dwc_subgenus) | +[dwc:subtribe](#dwc_subtribe) | +[dwc:superfamily](#dwc_superfamily) | [dwc:taxonAccordingTo](#dwc_taxonAccordingTo) | [dwc:taxonAttributes](#dwc_taxonAttributes) | [dwc:taxonConceptID](#dwc_taxonConceptID) | @@ -339,6 +345,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:taxonomicStatus](#dwc_taxonomicStatus) | [dwc:taxonRank](#dwc_taxonRank) | [dwc:taxonRemarks](#dwc_taxonRemarks) | +[dwc:tribe](#dwc_tribe) | [dwc:verbatimScientificNameRank](#dwc_verbatimScientificNameRank) | [dwc:verbatimTaxonRank](#dwc_verbatimTaxonRank) | [dwc:vernacularName](#dwc_vernacularName) @@ -353,7 +360,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwc:measurementRemarks](#dwc_measurementRemarks) | [dwc:measurementType](#dwc_measurementType) | [dwc:measurementUnit](#dwc_measurementUnit) | -[dwc:measurementValue](#dwc_measurementValue) +[dwc:measurementValue](#dwc_measurementValue) | +[dwc:parentMeasurementID](#dwc_parentMeasurementID) **Resource Relationship** @@ -371,11 +379,13 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# **IRI-value terms** [dwciri:behavior](#dwciri_behavior) | +[dwciri:caste](#dwciri_caste) | [dwciri:dataGeneralizations](#dwciri_dataGeneralizations) | [dwciri:degreeOfEstablishment](#dwciri_degreeOfEstablishment) | [dwciri:disposition](#dwciri_disposition) | [dwciri:earliestGeochronologicalEra](#dwciri_earliestGeochronologicalEra) | [dwciri:establishmentMeans](#dwciri_establishmentMeans) | +[dwciri:eventType](#dwciri_eventType) | [dwciri:fieldNotes](#dwciri_fieldNotes) | [dwciri:fieldNumber](#dwciri_fieldNumber) | [dwciri:footprintSRS](#dwciri_footprintSRS) | @@ -416,7 +426,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [dwciri:typeStatus](#dwciri_typeStatus) | [dwciri:verbatimCoordinateSystem](#dwciri_verbatimCoordinateSystem) | [dwciri:verbatimSRS](#dwciri_verbatimSRS) | -[dwciri:verticalDatum](#dwciri_verticalDatum) +[dwciri:verticalDatum](#dwciri_verticalDatum) | +[dwciri:vitality](#dwciri_vitality) ### 3.2 Index By Label @@ -480,6 +491,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Associated Sequences](#dwc_associatedSequences) | [Associated Taxa](#dwc_associatedTaxa) | [Behavior](#dwc_behavior) | +[Caste](#dwc_caste) | [Catalog Number](#dwc_catalogNumber) | [Catalog Number Numeric](#dwc_CatalogNumberNumeric) | [Degree of Establishment](#dwc_degreeOfEstablishment) | @@ -503,7 +515,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Recorded By](#dwc_recordedBy) | [Recorded By ID](#dwc_recordedByID) | [Reproductive Condition](#dwc_reproductiveCondition) | -[Sex](#dwc_sex) +[Sex](#dwc_sex) | +[Vitality](#dwc_vitality) **Organism** @@ -516,7 +529,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# **Material Sample** -[Material Sample ID](#dwc_materialSampleID) +[Material Sample ID](#dwc_materialSampleID) | +[Verbatim Label](#dwc_verbatimLabel) **Event** @@ -529,6 +543,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Event ID](#dwc_eventID) | [Event Remarks](#dwc_eventRemarks) | [Event Time](#dwc_eventTime) | +[Event Type](#dwc_eventType) | [Field Notes](#dwc_fieldNotes) | [Field Number](#dwc_fieldNumber) | [Habitat](#dwc_habitat) | @@ -551,9 +566,9 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Coordinate Uncertainty In Meters](#dwc_coordinateUncertaintyInMeters) | [Country](#dwc_country) | [Country Code](#dwc_countryCode) | -[County](#dwc_county) | [Decimal Latitude](#dwc_decimalLatitude) | [Decimal Longitude](#dwc_decimalLongitude) | +[First Order Division](#dwc_stateProvince) | [Footprint SRS](#dwc_footprintSRS) | [Footprint Spatial Fit](#dwc_footprintSpatialFit) | [Footprint WKT](#dwc_footprintWKT) | @@ -578,11 +593,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Minimum Depth In Meters](#dwc_minimumDepthInMeters) | [Minimum Distance Above Surface In Meters](#dwc_minimumDistanceAboveSurfaceInMeters) | [Minimum Elevation In Meters](#dwc_minimumElevationInMeters) | -[Municipality](#dwc_municipality) | [Point Radius Spatial Fit](#dwc_pointRadiusSpatialFit) | [Sampling Location ID](#dwc_SamplingLocationID) | [Sampling Location Remarks](#dwc_SamplingLocationRemarks) | -[State Province](#dwc_stateProvince) | +[Second Order Division](#dwc_county) | +[Third Order Division](#dwc_municipality) | [Verbatim Coordinate System](#dwc_verbatimCoordinateSystem) | [Verbatim Coordinates](#dwc_verbatimCoordinates) | [Verbatim Depth](#dwc_verbatimDepth) | @@ -678,6 +693,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Specific Epithet](#dwc_specificEpithet) | [Subfamily](#dwc_subfamily) | [Subgenus](#dwc_subgenus) | +[Subtribe](#dwc_subtribe) | +[Superfamily](#dwc_superfamily) | [Taxon According To](#dwc_taxonAccordingTo) | [Taxon Attributes](#dwc_taxonAttributes) | [Taxon Concept ID](#dwc_taxonConceptID) | @@ -686,6 +703,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Taxon Rank](#dwc_taxonRank) | [Taxon Remarks](#dwc_taxonRemarks) | [Taxonomic Status](#dwc_taxonomicStatus) | +[Tribe](#dwc_tribe) | [Verbatim Scientific Name Rank](#dwc_verbatimScientificNameRank) | [Verbatim Taxon Rank](#dwc_verbatimTaxonRank) | [Vernacular Name](#dwc_vernacularName) @@ -700,7 +718,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Measurement Remarks](#dwc_measurementRemarks) | [Measurement Type](#dwc_measurementType) | [Measurement Unit](#dwc_measurementUnit) | -[Measurement Value](#dwc_measurementValue) +[Measurement Value](#dwc_measurementValue) | +[Parent Measurement ID](#dwc_parentMeasurementID) **Resource Relationship** @@ -718,11 +737,13 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# **IRI-value terms** [Behavior (IRI)](#dwciri_behavior) | +[Caste (IRI)](#dwciri_caste) | [Data Generalizations (IRI)](#dwciri_dataGeneralizations) | [Degree of Establishment (IRI)](#dwciri_degreeOfEstablishment) | [Disposition (IRI)](#dwciri_disposition) | [Earliest Geochronological Era](#dwciri_earliestGeochronologicalEra) | [Establishment Means (IRI)](#dwciri_establishmentMeans) | +[Event Type (IRI)](#dwciri_eventType) | [Field Notes (IRI)](#dwciri_fieldNotes) | [Field Number (IRI)](#dwciri_fieldNumber) | [Footprint SRS (IRI)](#dwciri_footprintSRS) | @@ -763,7 +784,8 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# [Type Status (IRI)](#dwciri_typeStatus) | [Verbatim Coordinate System (IRI)](#dwciri_verbatimCoordinateSystem) | [Verbatim SRS (IRI)](#dwciri_verbatimSRS) | -[Vertical Datum (IRI)](#dwciri_verticalDatum) +[Vertical Datum (IRI)](#dwciri_verticalDatum) | +[Vitality (IRI)](#dwciri_vitality) ## 4 Vocabulary @@ -779,11 +801,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -791,15 +813,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -825,11 +847,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -841,11 +863,16 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1223,7 +1250,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -1243,7 +1270,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -1345,11 +1375,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1357,7 +1387,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -1391,11 +1421,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1403,15 +1433,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -1445,11 +1478,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1457,15 +1490,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -1495,11 +1531,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1507,15 +1543,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -1545,11 +1585,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1557,11 +1597,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1587,11 +1630,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1599,15 +1642,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -1725,11 +1772,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1741,11 +1788,22 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -1763,6 +1821,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2021-07-15http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2023-06-28
    Label
    DefinitionThe full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) dwc:Taxon.
    NotesThe full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided scientificName is considered by the reference indicated in the accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to an Organism or Occurrence, this term should be used in cases where a content provider regards the provided scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed organism), and the name asserted by the content provider to be taxonomically accepted.The full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided dwc:scientificName is considered by the reference indicated in the dwc:accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to a dwc:Organism or dwc:Occurrence, this term should be used in cases where a content provider regards the provided dwc:scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed dwc:Organism), and the name asserted by the content provider to be taxonomically accepted.
    ExamplesTamias minimus (valid name for Eutamias minimus).Tamias minimus (valid name for Eutamias minimus)
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2021-07-15http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2023-06-28
    Label
    NotesThis term should be used for synonyms or misapplied names to refer to the taxonID of a Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.This term should be used for synonyms or misapplied names to refer to the dwc:taxonID of a dwc:Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL)
      +
    • tsn:41107 (ITIS)
    • +
    • urn:lsid:ipni.org:names:320035-2 (IPNI)
    • +
    • 2704179 (GBIF)
    • +
    • 6W3C4 (COL)
    • +
    ABCD equivalence
    Modified2008-01-142023-06-28
    Term version IRI
    Examplesnot-for-profit use only, https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images
    ABCD equivalence
    Modified2020-08-122023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedMedia-2020-08-12http://rs.tdwg.org/dwc/terms/version/associatedMedia-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the dwc:Occurrence.
    Examples
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2021-07-15http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.A list (concatenated and separated) of identifiers of other dwc:Occurrence records and their associations to this dwc:Occurrence.
    NotesThis term can be used to provide a list of associations to other Occurrences. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).This term can be used to provide a list of associations to other dwc:Occurrences. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"parasite collected from":"https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760", "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392" | "encounter previous to":"http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139"
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2021-07-15http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers of other Organisms and the associations of this Organism to each of them.A list (concatenated and separated) of identifiers of other dwc:Organisms and the associations of this dwc:Organism to each of them.
    NotesThis term can be used to provide a list of associations to other Organisms. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).This term can be used to provide a list of associations to other dwc:Organisms. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"sibling of":"http://arctos.database.museum/guid/DMNS:Mamm:14171", "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196208" | "parent of":"http://arctos.database.museum/guid/MSB:Mamm:196523" | "sibling of":"http://arctos.database.museum/guid/MSB:Mamm:142638"
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedReferences-2021-07-15http://rs.tdwg.org/dwc/terms/version/associatedReferences-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the dwc:Occurrence.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to an Occurrence is to point to the definitive source representation of that Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to an Occurrence is to provide the preferred way to cite the Occurrence itself.Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to a dwc:Occurrence is to point to the definitive source representation of that dwc:Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to a dwc:Occurrence is to provide the preferred way to cite the dwc:Occurrence itself.
    Exampleshttp://www.sciencemag.org/cgi/content/abstract/322/5899/261, Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767., Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.
      +
    • http://www.sciencemag.org/cgi/content/abstract/322/5899/261
    • +
    • Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.
    • +
    • Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedSequences-2017-10-06http://rs.tdwg.org/dwc/terms/version/associatedSequences-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the dwc:Occurrence.
    Exampleshttp://www.ncbi.nlm.nih.gov/nuccore/U34853.1, http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/associatedTaxa-2021-07-15http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of identifiers or names of taxa and the associations of this Occurrence to each of them.A list (concatenated and separated) of identifiers or names of dwc:Taxon records and the associations of this dwc:Occurrence to each of them.
    NotesThis term can be used to provide a list of associations to Taxa other than the one defined in the Occurrence. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between Taxa, only between specific Occurrences of an Organism with other Taxa. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).This term can be used to provide a list of associations to dwc:Taxon records other than the one defined in the dwc:Occurrence. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between dwc:Taxon records, only between specific dwc:Occurrences of a dwc:Organism with other dwc:Taxon records. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples"host":"Quercus alba", "host":"gbif.org/species/2879737","parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera"
      +
    • "host":"Quercus alba"
    • +
    • "host":"gbif.org/species/2879737"
    • +
    • "parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera"
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/basisOfRecord-2021-07-15http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2023-06-28
    Label
    NotesRecommended best practice is to use the standard label of one of the Darwin Core classes.Recommended best practice is to use a controlled vocabulary such as the set of local names of the identifiers for classes in Darwin Core.
    ExamplesPreservedSpecimen, FossilSpecimen, LivingSpecimen, MaterialSample, Event, HumanObservation, MachineObservation, Taxon, Occurrence, MaterialCitation
      +
    • PreservedSpecimen
    • +
    • FossilSpecimen
    • +
    • LivingSpecimen
    • +
    • MaterialSample
    • +
    • Event
    • +
    • HumanObservation
    • +
    • MachineObservation
    • +
    • Taxon
    • +
    • Occurrence
    • +
    • MaterialCitation
    • +
    ABCD equivalenceExecutive Committee decision http://rs.tdwg.org/decisions/decision-2014-10-26_15
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -1821,11 +1883,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2015-03-27 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/behavior-2015-03-27 + http://rs.tdwg.org/dwc/iri/version/behavior-2023-06-28 Label @@ -1833,7 +1895,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - A description of the behavior shown by the subject at the time the Occurrence was recorded. + A description of the behavior shown by the subject at the time the dwc:Occurrence was recorded. Notes @@ -1863,11 +1925,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/behavior-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/behavior-2023-06-28 Label @@ -1875,11 +1937,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The behavior shown by the subject at the time the Occurrence was recorded. + The behavior shown by the subject at the time the dwc:Occurrence was recorded. + + + Notes + This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - roosting, foraging, running +
      +
    • roosting
    • +
    • foraging
    • +
    • running
    • +
    ABCD equivalence @@ -1905,7 +1975,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI @@ -1921,11 +1991,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - From Dublin Core, "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible." The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - "how to cite this record". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - "where to find the as-close-to-original reference, if one is available. + From Dublin Core, "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible." The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - "how to cite this record". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - "where to find the as-close-to-original reference", if one is available. Examples - Occurrence example: Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal. Taxon example: https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone, Event example: Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2 + ABCD equivalence @@ -1980,6 +2054,109 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:caste
    Term IRIhttp://rs.tdwg.org/dwc/iri/caste
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/caste-2023-06-28
    LabelCaste (IRI)
    DefinitionCategorisation of individuals for eusocial species (including some mammals and arthropods).
    NotesRecommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:caste
    Term IRIhttp://rs.tdwg.org/dwc/terms/caste
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/caste-2023-06-28
    LabelCaste
    DefinitionCategorisation of individuals for eusocial species (including some mammals and arthropods).
    NotesRecommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • queen
    • +
    • male alate
    • +
    • intercaste
    • +
    • minor worker
    • +
    • soldier
    • +
    • ergatoid
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + @@ -1993,11 +2170,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2009,7 +2186,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -2073,11 +2255,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2085,11 +2267,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2115,11 +2300,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2131,7 +2316,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -2157,11 +2347,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2173,11 +2363,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2203,11 +2393,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -2215,15 +2405,23 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -2233,6 +2431,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/catalogNumber-2017-10-06http://rs.tdwg.org/dwc/terms/version/catalogNumber-2023-06-28
    Label
    Examples145732, 145732a, 2008.1334, R-4313
      +
    • 145732
    • +
    • 145732a
    • +
    • 2008.1334
    • +
    • R-4313
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/class-2017-10-06http://rs.tdwg.org/dwc/terms/version/class-2023-06-28
    Label
    DefinitionThe full scientific name of the class in which the taxon is classified.The full scientific name of the class in which the dwc:Taxon is classified.
    ExamplesMammalia, Hepaticopsida
      +
    • Mammalia
    • +
    • Hepaticopsida
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionCode-2017-10-06http://rs.tdwg.org/dwc/terms/version/collectionCode-2023-06-28
    Label
    ExamplesMammals, Hildebrandt, EBIRD, VP
      +
    • Mammals
    • +
    • Hildebrandt
    • +
    • EBIRD
    • +
    • VP
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/collectionID-2017-10-06http://rs.tdwg.org/dwc/terms/version/collectionID-2023-06-28
    Label
    NotesFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).For physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll).
    Exampleshttp://biocol.org/urn:lsid:biocol.org:col:1001, http://grbio.org/cool/p5fp-c036https://www.gbif.org/grscicoll/collection/fbd3ed74-5a21-4e01-b86a-33d36f032d9c
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/continent-2017-10-06http://rs.tdwg.org/dwc/terms/version/continent-2023-06-28
    Label
    DefinitionThe name of the continent in which the Location occurs.The name of the continent in which the dcterms:Location occurs.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    ExamplesAfrica, Antarctica, Asia, Europe, North America, Oceania, South America
      +
    • Africa
    • +
    • Antarctica
    • +
    • Asia
    • +
    • Europe
    • +
    • North America
    • +
    • Oceania
    • +
    • South America
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -2249,11 +2451,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2023-06-28 Label @@ -2261,11 +2463,16 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude. + A decimal representation of the precision of the coordinates given in the dwc:decimalLatitude and dwc:decimalLongitude. Examples - 0.00001 (normal GPS limit for decimal degrees). 0.000278 (nearest second). 0.01667 (nearest minute). 1.0 (nearest degree). +
      +
    • 0.00001 (normal GPS limit for decimal degrees)
    • +
    • 0.000278 (nearest second)
    • +
    • 0.01667 (nearest minute)
    • +
    • 1.0 (nearest degree)
    • +
    ABCD equivalence @@ -2291,11 +2498,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2023-06-28 Label @@ -2303,11 +2510,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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. + 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. Examples - 30 (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 100 (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system). +
      +
    • 30 (reasonable lower limit on or after 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • +
    • 100 (reasonable lower limit before 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • +
    • 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system)
    • +
    ABCD equivalence @@ -2333,11 +2544,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/country-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/country-2023-06-28 Label @@ -2345,15 +2556,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The name of the country or major administrative unit in which the Location occurs. + The name of the country or major administrative unit in which the dcterms:Location occurs. Notes - Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the Location spans multiple entities at this administrative level or if the Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term higherGeography or in the term locality, or both. + Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples - Denmark, Colombia, España +
      +
    • Denmark
    • +
    • Colombia
    • +
    • España
    • +
    ABCD equivalence @@ -2379,11 +2594,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/countryCode-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/countryCode-2023-06-28 Label @@ -2391,15 +2606,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The standard code for the country in which the Location occurs. + The standard code for the country in which the dcterms:Location occurs. Notes - Recommended best practice is to use an ISO 3166-1-alpha-2 country code. + Recommended best practice is to use an ISO 3166-1-alpha-2 country code. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples - AR, SV +
      +
    • AR
    • +
    • SV
    • +
    ABCD equivalence @@ -2409,6 +2627,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + @@ -2425,27 +2647,31 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/county-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/county-2023-06-28 Label - County + Second Order Division Definition - The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs. + The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the dcterms:Location occurs. Notes - Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. + Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples - Missoula, Los Lagos, Mataró +
      +
    • Missoula
    • +
    • Los Lagos
    • +
    • Mataró
    • +
    ABCD equivalence @@ -2455,6 +2681,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + @@ -2471,11 +2701,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2023-06-28 Label @@ -2483,15 +2713,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - Part of the name of a cultivar, cultivar group or grex that follows the scientific name. + Part of the name of a cultivar, cultivar group or grex that follows the dwc:scientificName. Notes - According to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the cultivarEpithet should exclude any quotes. The term taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in scientificName as well. + According to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the dwc:cultivarEpithet should exclude any quotes. The term dwc:taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in dwc:scientificName as well. Examples - King Edward (for scientificName "Solanum tuberosum 'King Edward'" and taxonRank "cultivar"); Mishmiense (for scientificName "Rhododendron boothii Mishmiense Group" and taxonRank "cultivar group"); Atlantis (for scientificName "Paphiopedilum Atlantis grex" and taxonRank "grex"). +
      +
    • King Edward (for scientificName Solanum tuberosum 'King Edward' and taxonRank cultivar)
    • +
    • Mishmiense (for scientificName Rhododendron boothii Mishmiense Group and taxonRank cultivar group)
    • +
    • Atlantis (for scientificName Paphiopedilum Atlantis grex and taxonRank grex)
    • +
    ABCD equivalence @@ -2521,11 +2755,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2023-06-28 Label @@ -2535,6 +2769,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition 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. + + Notes + This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. + Examples Coordinates generalized from original GPS coordinates to the nearest half degree grid cell. @@ -2685,11 +2923,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/datasetName-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/datasetName-2023-06-28 Label @@ -2701,7 +2939,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Grinnell Resurvey Mammals, Lacey Ctenomys Recaptures +
      +
    • Grinnell Resurvey Mammals
    • +
    • Lacey Ctenomys Recaptures
    • +
    ABCD equivalence @@ -2727,11 +2968,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-12 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/dateIdentified-2020-08-12 + http://rs.tdwg.org/dwc/terms/version/dateIdentified-2023-06-28 Label @@ -2739,7 +2980,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The date on which the subject was determined as representing the Taxon. + The date on which the subject was determined as representing the dwc:Taxon. Notes @@ -2747,7 +2988,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). +
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence @@ -2777,11 +3028,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/day-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/day-2023-06-28 Label @@ -2789,11 +3040,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The integer day of the month on which the Event occurred. + The integer day of the month on which the dwc:Event occurred. Examples - 9, 28 +
      +
    • 9
    • +
    • 28
    • +
    ABCD equivalence @@ -2819,11 +3073,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2023-06-28 Label @@ -2831,7 +3085,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive. + 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. Examples @@ -2861,11 +3115,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2023-06-28 Label @@ -2873,7 +3127,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive. + 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. Examples @@ -2903,11 +3157,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-03-29 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2021-03-29 + http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2023-06-28 Label @@ -2915,7 +3169,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The degree to which an Organism survives, reproduces, and expands its range at the given place and time. + The degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time. Notes @@ -2923,7 +3177,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - http://rs.tdwg.org/dwcdoe/values/d003, http://rs.tdwg.org/dwcdoe/values/d005 + ABCD equivalence @@ -2953,11 +3210,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-03-29 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2021-03-29 + http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2023-06-28 Label @@ -2965,15 +3222,27 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The degree to which an Organism survives, reproduces, and expands its range at the given place and time. + The degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time. Notes - Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 + Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - native, captive, cultivated, released, failing, casual, reproducing, established, colonising, invasive, widespreadInvasive +
      +
    • native
    • +
    • captive
    • +
    • cultivated
    • +
    • released
    • +
    • failing
    • +
    • casual
    • +
    • reproducing
    • +
    • established
    • +
    • colonising
    • +
    • invasive
    • +
    • widespreadInvasive
    • +
    Type @@ -2999,11 +3268,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2015-03-27 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/disposition-2015-03-27 + http://rs.tdwg.org/dwc/iri/version/disposition-2023-06-28 Label @@ -3011,7 +3280,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The current state of a specimen with respect to the collection identified in collectionCode or collectionID. + The current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID. Notes @@ -3041,11 +3310,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/disposition-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/disposition-2023-06-28 Label @@ -3053,15 +3322,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The current state of a specimen with respect to the collection identified in collectionCode or collectionID. + The current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID. Notes - Recommended best practice is to use a controlled vocabulary. + Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - in collection, missing, voucher elsewhere, duplicates elsewhere +
      +
    • in collection
    • +
    • missing
    • +
    • voucher elsewhere
    • +
    • duplicates elsewhere
    • +
    ABCD equivalence @@ -3125,11 +3399,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2023-06-28 Label @@ -3145,7 +3419,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - {"heightInMeters":1.5}, {"tragusLengthInMeters":0.014, "weightInGrams":120}, {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}, {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}, {"aspectHeading":277, "slopeInDegrees":6}, {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"} +
      +
    • {"heightInMeters":1.5}
    • +
    • {"targusLengthInMeters":0.014, "weightInGrams":120}
    • +
    • {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}
    • +
    • {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}
    • +
    • {"aspectHeading":277, "slopeInDegrees":6}
    • +
    • {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    • +
    ABCD equivalence @@ -3175,11 +3456,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2023-06-28 Label @@ -3191,7 +3472,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Atlantic, Boreal, Skullrockian +
      +
    • Atlantic
    • +
    • Boreal
    • +
    • Skullrockian
    • +
    ABCD equivalence @@ -3263,11 +3548,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2023-06-28 Label @@ -3279,7 +3564,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Phanerozoic, Proterozoic +
      +
    • Phanerozoic
    • +
    • Proterozoic
    • +
    ABCD equivalence @@ -3305,11 +3593,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2023-06-28 Label @@ -3321,7 +3609,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Holocene, Pleistocene, Ibexian Series +
      +
    • Holocene
    • +
    • Pleistocene
    • +
    • Ibexian Series
    • +
    ABCD equivalence @@ -3347,11 +3639,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2023-06-28 Label @@ -3363,7 +3655,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Cenozoic, Mesozoic +
      +
    • Cenozoic
    • +
    • Mesozoic
    • +
    ABCD equivalence @@ -3431,11 +3726,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2023-06-28 Label @@ -3447,7 +3742,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Neogene, Tertiary, Quaternary +
      +
    • Neogene
    • +
    • Tertiary
    • +
    • Quaternary
    • +
    ABCD equivalence @@ -3473,11 +3772,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-20 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20 + http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2023-06-28 Label @@ -3485,11 +3784,16 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). + 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). Examples - 1 (1 January). 32 (1 February). 366 (31 December). 365 (30 December in a leap year, 31 December in a non-leap year). +
      +
    • 1 (1 January)
    • +
    • 32 (1 February)
    • +
    • 366 (31 December)
    • +
    • 365 (30 December in a leap year, 31 December in a non-leap year)
    • +
    ABCD equivalence @@ -3561,11 +3865,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-03-29 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2021-03-29 + http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2023-06-28 Label @@ -3573,7 +3877,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The process by which the biological individual(s) represented in the Occurrence became established at the location. + Statement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans. Notes @@ -3581,7 +3885,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - http://rs.tdwg.org/dwcem/values/e001, http://rs.tdwg.org/dwcem/values/e005 + ABCD equivalence @@ -3611,11 +3918,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-03-29 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2021-03-29 + http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2023-06-28 Label @@ -3623,15 +3930,22 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans. + Statement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans. Notes - Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 + Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - native, nativeReintroduced, introduced, introducedAssistedColonisation, vagrant, uncertain +
      +
    • native
    • +
    • nativeReintroduced
    • +
    • introduced
    • +
    • introducedAssistedColonisation
    • +
    • vagrant
    • +
    • uncertain
    • +
    ABCD equivalence @@ -4151,11 +4465,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-12 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/eventDate-2020-08-12 + http://rs.tdwg.org/dwc/terms/version/eventDate-2023-06-28 Label @@ -4163,7 +4477,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. + 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. Notes @@ -4171,7 +4485,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007). +
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence @@ -4197,11 +4521,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/eventID-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/eventID-2023-06-28 Label @@ -4209,7 +4533,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set. + 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. Examples @@ -4645,11 +4969,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/eventRemarks-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/eventRemarks-2023-06-28 Label @@ -4657,7 +4981,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - Comments or notes about the Event. + Comments or notes about the dwc:Event. Examples @@ -4687,11 +5011,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-12 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12 + http://rs.tdwg.org/dwc/terms/version/eventTime-2023-06-28 Label @@ -4699,15 +5023,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The time or interval during which an Event occurred. + The time or interval during which a dwc:Event occurred. Notes - Recommended best practice is to use a date that conforms to ISO 8601-1:2019. + Recommended best practice is to use a time of day that conforms to ISO 8601-1:2019. Examples - 14:07-0600 (2:07pm in the time zone six hours earlier than UTC). 08:40:21Z (8:40:21am UTC). 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC). +
      +
    • 14:07-0600 (2:07pm in the time zone six hours earlier than UTC)
    • +
    • 08:40:21Z (8:40:21am UTC)
    • +
    • 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC)
    • +
    ABCD equivalence @@ -4717,6 +5045,115 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:eventType
    Term IRIhttp://rs.tdwg.org/dwc/terms/eventType
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/eventType-2023-06-28
    LabelEvent Type
    DefinitionThe nature of the dwc:Event.
    NotesRecommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • Sample
    • +
    • Observation
    • +
    • Site Visit
    • +
    • Biotic Interaction
    • +
    • Bioblitz
    • +
    • Expedition
    • +
    • Survey
    • +
    • Project
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:eventType
    Term IRIhttp://rs.tdwg.org/dwc/iri/eventType
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/eventType-2023-06-28
    LabelEvent Type (IRI)
    DefinitionThe nature of the dwc:Event.
    NotesRecommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -4733,11 +5170,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/family-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/family-2023-06-28 Label @@ -4745,11 +5182,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The full scientific name of the family in which the taxon is classified. + The full scientific name of the family in which the dwc:Taxon is classified. Examples - Felidae, Monocleaceae +
      +
    • Felidae
    • +
    • Monocleaceae
    • +
    ABCD equivalence @@ -4762,48 +5202,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwciri:fieldNotes
    Term IRIhttp://rs.tdwg.org/dwc/iri/fieldNotes
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fieldNotes-2015-03-27
    LabelField Notes (IRI)
    DefinitionOne 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 Event.
    NotesThe subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -4817,11 +5215,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -4829,7 +5227,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + + + + + @@ -4849,33 +5251,33 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/fieldNotes-2017-10-06http://rs.tdwg.org/dwc/terms/version/fieldNotes-2023-06-28
    Label
    DefinitionOne 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 Event.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.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    - + - + - + - + - + - + - + @@ -4901,11 +5303,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -4913,7 +5315,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + + + + + @@ -4930,6 +5336,48 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:fieldNumberTerm Name dwciri:fieldNotes
    Term IRIhttp://rs.tdwg.org/dwc/iri/fieldNumberhttp://rs.tdwg.org/dwc/iri/fieldNotes
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fieldNumber-2015-03-27http://rs.tdwg.org/dwc/iri/version/fieldNotes-2023-06-28
    LabelField Number (IRI)Field Notes (IRI)
    DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the Event.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.
    NotesThe subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.The subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/fieldNumber-2017-10-06http://rs.tdwg.org/dwc/terms/version/fieldNumber-2023-06-28
    Label
    DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the Event.An identifier given to the dwc:Event in the field. Often serves as a link between field notes and the dwc:Event.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:fieldNumber
    Term IRIhttp://rs.tdwg.org/dwc/iri/fieldNumber
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/fieldNumber-2023-06-28
    LabelField Number (IRI)
    DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the dwc:Event.
    NotesThe subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.
    ABCD equivalencenot in ABCD
    TypeProperty
    + @@ -4943,11 +5391,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -4955,7 +5403,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -4963,7 +5411,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -4973,39 +5425,50 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2020-08-202023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2023-06-28
    Label
    DefinitionThe ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.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.
    Notes
    Examples0, 1, 1.5708
      +
    • 0
    • +
    • 1
    • +
    • 1.5708
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    - + - + - + - + - + - + - + + + + + @@ -5025,37 +5488,33 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:footprintSRSTerm Name dwc:footprintSRS
    Term IRIhttp://rs.tdwg.org/dwc/iri/footprintSRShttp://rs.tdwg.org/dwc/terms/footprintSRS
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/footprintSRS-2021-07-15http://rs.tdwg.org/dwc/terms/version/footprintSRS-2023-06-28
    LabelFootprint SRS (IRI)Footprint SRS
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the dwc:decimalLatitude and dwc:decimalLongitude, nor of any verbatim coordinates - use the dwc:geodeticDatum and dwc:verbatimSRS instead. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • epsg:4326
    • +
    • GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]] (WKT for the standard WGS84 Spatial Reference System EPSG:4326)
    • +
    ABCD equivalence
    - + - + - + - + - + - + - - - - - + @@ -5085,11 +5544,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5097,7 +5556,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5127,11 +5586,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5139,7 +5598,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + + + + + @@ -5169,11 +5632,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5185,7 +5648,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5345,11 +5812,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5357,15 +5824,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -5395,11 +5862,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5407,11 +5874,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5437,11 +5907,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5449,15 +5919,23 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -5483,11 +5961,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5495,7 +5973,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5575,11 +6053,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5587,7 +6065,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5617,11 +6095,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5629,15 +6107,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -5667,11 +6148,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5679,7 +6160,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5709,11 +6190,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5721,7 +6202,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5729,7 +6210,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -5759,11 +6250,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5773,6 +6264,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + @@ -5843,11 +6338,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5855,11 +6350,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5872,48 +6367,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwc:footprintSRSTerm Name dwciri:footprintSRS
    Term IRIhttp://rs.tdwg.org/dwc/terms/footprintSRShttp://rs.tdwg.org/dwc/iri/footprintSRS
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintSRS-2021-07-15http://rs.tdwg.org/dwc/iri/version/footprintSRS-2023-06-28
    LabelFootprint SRSFootprint SRS (IRI)
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based.
    NotesRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead.
    Examplesepsg:4326, GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]] (WKT for the standard WGS84 Spatial Reference System EPSG:4326)Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/footprintWKT-2015-03-27http://rs.tdwg.org/dwc/iri/version/footprintWKT-2023-06-28
    Label
    DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.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.
    Notes
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/footprintWKT-2017-10-06http://rs.tdwg.org/dwc/terms/version/footprintWKT-2023-06-28
    Label
    DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.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.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/formation-2017-10-06http://rs.tdwg.org/dwc/terms/version/formation-2023-06-28
    Label
    ExamplesNotch Peak Formation, House Limestone, Fillmore Formation
      +
    • Notch Peak Formation
    • +
    • House Limestone
    • +
    • Fillmore Formation
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/genericName-2021-07-15http://rs.tdwg.org/dwc/terms/version/genericName-2023-06-28
    Label
    DefinitionThe genus part of the scientificName without authorship.The genus part of the dwc:scientificName without authorship.
    NotesFor synonyms the accepted genus and the genus part of the name may be different. The term genericName should be used together with specificEpithet to form a binomial and with infraspecificEpithet to form a trinomial. The term genericName should only be used for combinations. Uninomials of generic rank do not have a genericName.For synonyms the accepted genus and the genus part of the name may be different. The term dwc:genericName should be used together with dwc:specificEpithet to form a binomial and with dwc:infraspecificEpithet to form a trinomial. The term dwc:genericName should only be used for combinations. Uninomials of generic rank do not have a dwc:genericName.
    ExamplesFelis (for scientificName "Felis concolor", with accompanying values of "Puma concolor" in acceptedNameUsage and "Puma" in genus).Felis (for scientificName Felis concolor, with accompanying values of Puma concolor in acceptedNameUsage and Puma in genus)
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/genus-2017-10-06http://rs.tdwg.org/dwc/terms/version/genus-2023-06-28
    Label
    DefinitionThe full scientific name of the genus in which the taxon is classified.The full scientific name of the genus in which the dwc:Taxon is classified.
    ExamplesPuma, Monoclea
      +
    • Puma
    • +
    • Monoclea
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/geodeticDatum-2017-10-06http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2023-06-28
    Label
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude are based.
    NotesRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown.Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesEPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866, unknown
      +
    • EPSG:4326
    • +
    • WGS84
    • +
    • NAD27
    • +
    • Campo Inchauspe
    • +
    • European 1950
    • +
    • Clarke 1866
    • +
    • unknown
    • +
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/geodeticDatum-2015-03-27http://rs.tdwg.org/dwc/iri/version/geodeticDatum-2023-06-28
    Label
    DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude is based.
    Notes
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/geologicalContextID-2017-10-06http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2023-06-28
    Label
    DefinitionAn identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.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.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferencedBy-2017-10-06http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the dcterms:Location.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesBrad Millen (ROM), Kristina Yamamoto | Janet Fang
      +
    • Brad Millen (ROM)
    • +
    • Kristina Yamamoto | Janet Fang
    • +
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferencedBy-2015-03-27http://rs.tdwg.org/dwc/iri/version/georeferencedBy-2023-06-28
    Label
    DefinitionA person, group, or organization who determined the georeference (spatial representation) for the Location.A person, group, or organization who determined the georeference (spatial representation) for the dcterms:Location.
    Notes
    Modified2020-08-122023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferencedDate-2020-08-12http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2023-06-28
    Label
    DefinitionThe date on which the Location was georeferenced.The date on which the dcterms:Location was georeferenced.
    Notes
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence
    Modified2020-08-202023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2023-06-28
    LabelDefinition A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2017-10-06http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2023-06-28
    Label
    DefinitionNotes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol.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.
    ExamplesAssumed distance by road (Hwy. 101).Assumed distance by road (Hwy. 101)
    ABCD equivalence
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwciri:georeferenceSources
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceSources
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceSources-2015-03-27
    LabelGeoreference Sources (IRI)
    DefinitionA map, gazetteer, or other resource used to georeference the Location.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -5927,11 +6380,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -5939,15 +6392,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -5967,33 +6424,33 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2020-10-282023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/georeferenceSources-2020-10-28http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.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.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Exampleshttps://www.geonames.org/, USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth, GeoLocate
    ABCD equivalence
    - + - + - + - + - + - + - + @@ -6003,10 +6460,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - - - -
    Term Name dwciri:georeferenceVerificationStatusTerm Name dwciri:georeferenceSources
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceVerificationStatushttp://rs.tdwg.org/dwc/iri/georeferenceSources
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2021-07-15http://rs.tdwg.org/dwc/iri/version/georeferenceSources-2023-06-28
    LabelGeoreference Verification Status (IRI)Georeference Sources (IRI)
    DefinitionA categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.A map, gazetteer, or other resource used to georeference the dcterms:Location.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    @@ -6023,11 +6476,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2023-06-28 Label @@ -6035,15 +6488,21 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence. + 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. Notes - Recommended best practice is to use a controlled vocabulary. + Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - unable to georeference, requires georeference, requires verification, verified by data custodian, verified by contributor +
      +
    • unable to georeference
    • +
    • requires georeference
    • +
    • requires verification
    • +
    • verified by data custodian
    • +
    • verified by contributor
    • +
    ABCD equivalence @@ -6060,6 +6519,52 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:georeferenceVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2023-06-28
    LabelGeoreference Verification Status (IRI)
    DefinitionA 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.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2021-07-15_34
    + @@ -6073,11 +6578,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6089,7 +6594,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6115,11 +6623,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6127,11 +6635,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + + + + + - + @@ -6157,11 +6672,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6169,7 +6684,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6199,11 +6714,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6211,7 +6726,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6219,7 +6734,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6249,11 +6768,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6261,7 +6780,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6269,7 +6788,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6299,11 +6821,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6311,7 +6833,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6643,11 +7165,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6655,7 +7177,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6731,11 +7253,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6743,7 +7265,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6773,11 +7295,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6785,7 +7307,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6815,11 +7337,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6827,11 +7349,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + + + + + - + @@ -6861,11 +7390,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6873,7 +7402,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6881,7 +7410,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6911,11 +7443,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -6923,7 +7455,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -6940,56 +7472,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/group-2017-10-06http://rs.tdwg.org/dwc/terms/version/group-2023-06-28
    Label
    ExamplesBathurst, Lower Wealden
      +
    • Bathurst
    • +
    • Lower Wealden
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/habitat-2017-10-06http://rs.tdwg.org/dwc/terms/version/habitat-2023-06-28
    Label
    DefinitionA category or description of the habitat in which the Event occurred.A category or description of the habitat in which the dwc:Event occurred.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplesoak savanna, pre-cordilleran steppe
      +
    • oak savanna
    • +
    • pre-cordilleran steppe
    • +
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/habitat-2015-03-27http://rs.tdwg.org/dwc/iri/version/habitat-2023-06-28
    Label
    DefinitionA category or description of the habitat in which the Event occurred.A category or description of the habitat in which the dwc:Event occurred.
    Notes
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherClassification-2017-10-06http://rs.tdwg.org/dwc/terms/version/higherClassification-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the referenced dwc:Taxon.
    Notes
    ExamplesPlantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus, Animalia, Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys
      +
    • Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus
    • +
    • Animalia
    • +
    • Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherGeography-2017-10-06http://rs.tdwg.org/dwc/terms/version/higherGeography-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of geographic names less specific than the information captured in the locality term.A list (concatenated and separated) of geographic names less specific than the information captured in the dwc:locality term.
    Notes
    ExamplesNorth Atlantic Ocean. South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos (with accompanying values South America in continent, Argentina in country, Neuquén in stateProvince, and Los Lagos in county.
      +
    • North Atlantic Ocean
    • +
    • South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos with accompanying values South America (continent) Argentina (country), Neuquén (first order division), and Los Lagos (second order division)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/higherGeographyID-2017-10-06http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2023-06-28
    Label
    DefinitionAn identifier for the geographic region within which the Location occurred.An identifier for the geographic region within which the dcterms:Location occurred.
    Notes
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Identification-2018-09-06http://rs.tdwg.org/dwc/terms/version/Identification-2023-06-28
    Label
    DefinitionA taxonomic determination (e.g., the assignment to a taxon).A taxonomic determination (e.g., the assignment to a dwc:Taxon).
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationID-2017-10-06http://rs.tdwg.org/dwc/terms/version/identificationID-2023-06-28
    Label
    DefinitionAn identifier for the 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.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.
    Examples
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identificationQualifier-2015-03-27http://rs.tdwg.org/dwc/iri/version/identificationQualifier-2023-06-28
    Label
    DefinitionA controlled value to express the determiner's doubts about the Identification.A controlled value to express the determiner's doubts about the dwc:Identification.
    Notes
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationQualifier-2017-10-06http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2023-06-28
    Label
    DefinitionA brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the Identification.A brief phrase or a standard term ("cf.", "aff.") to express the determiner's doubts about the dwc:Identification.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplesaff. agrifolia var. oxyadenia (for Quercus aff. agrifolia var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank. cf. var. oxyadenia for Quercus agrifolia cf. var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank.
      +
    • aff. agrifolia var. oxyadenia (for Quercus aff. agrifolia var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank)
    • +
    • cf. var. oxyadenia (for Quercus agrifolia cf. var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationReferences-2017-10-06http://rs.tdwg.org/dwc/terms/version/identificationReferences-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the dwc:Identification.
    Notes
    ExamplesAves del Noroeste Patagonico. Christie et al. 2004., Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.
      +
    • Aves del Noroeste Patagonico. Christie et al. 2004.
    • +
    • Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationRemarks-2017-10-06http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2023-06-28
    Label
    DefinitionComments or notes about the Identification.Comments or notes about the dwc:Identification.
    Examples
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:identificationVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationVerificationStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2017-10-06
    LabelIdentification Verification Status
    DefinitionA categorical indicator of the extent to which the taxonomic identification has been verified to be correct.
    NotesRecommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.
    Examples0 ("unverified" in HISPID/ABCD).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_10
    - @@ -7032,6 +7514,98 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:identificationVerificationStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/identificationVerificationStatus
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2023-06-28
    LabelIdentification Verification Status
    DefinitionA categorical indicator of the extent to which the taxonomic identification has been verified to be correct.
    NotesRecommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples0 ("unverified" in HISPID/ABCD).
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2011-10-16_10
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:identifiedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/identifiedBy
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identifiedBy-2023-06-28
    LabelIdentified By (IRI)
    DefinitionA person, group, or organization who assigned the dwc:Taxon to the subject.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    + @@ -7045,11 +7619,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7057,15 +7631,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -7086,48 +7663,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identifiedBy-2017-10-06http://rs.tdwg.org/dwc/terms/version/identifiedBy-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.A list (concatenated and separated) of names of people, groups, or organizations who assigned the dwc:Taxon to the subject.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesJames L. Patton, Theodore Pappenfuss | Robert Macey
      +
    • James L. Patton
    • +
    • Theodore Pappenfuss | Robert Macey
    • +
    ABCD equivalence
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwciri:identifiedBy
    Term IRIhttp://rs.tdwg.org/dwc/iri/identifiedBy
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/identifiedBy-2015-03-27
    LabelIdentified By (IRI)
    DefinitionA person, group, or organization who assigned the Taxon to the subject.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -7141,11 +7676,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7153,15 +7688,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -7321,11 +7859,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7333,11 +7871,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7404,6 +7946,55 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/identifiedByID-2021-07-15http://rs.tdwg.org/dwc/terms/version/identifiedByID-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the Taxon to the subject.A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the dwc:Taxon to the subject.
    NotesRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Exampleshttps://orcid.org/0000-0002-1825-0097 (for an individual), https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people).
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/individualCount-2021-07-15http://rs.tdwg.org/dwc/terms/version/individualCount-2023-06-28
    Label
    DefinitionThe number of individuals present at the time of the Occurrence.The number of individuals present at the time of the dwc:Occurrence.
    Examples0, 1, 25
      +
    • 0
    • +
    • 1
    • +
    • 25
    • +
    ABCD equivalence
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:informationWithheld
    Term IRIhttp://rs.tdwg.org/dwc/terms/informationWithheld
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/informationWithheld-2023-06-28
    LabelInformation Withheld
    DefinitionAdditional information that exists, but that has not been shared in the given record.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • location information not given for endangered species
    • +
    • collector identities withheld | ask about tissue samples
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/InformationWithheld
    TypeProperty
    + @@ -7446,48 +8037,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:informationWithheld
    Term IRIhttp://rs.tdwg.org/dwc/terms/informationWithheld
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/informationWithheld-2017-10-06
    LabelInformation Withheld
    DefinitionAdditional information that exists, but that has not been shared in the given record.
    Exampleslocation information not given for endangered species, collector identities withheld | ask about tissue samples
    ABCD equivalenceDataSets/DataSet/Units/Unit/InformationWithheld
    TypeProperty
    - @@ -7501,11 +8050,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7517,11 +8066,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7551,11 +8103,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7563,15 +8115,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -7581,6 +8138,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2021-07-15http://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2023-06-28
    Label
    NotesThe term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca).The term dwc:infragenericEpithet should be used in conjunction with dwc:genericName, dwc:specificEpithet, dwc:infraspecificEpithet, dwc:taxonRank and dwc:scientificNameAuthorship to represent the individual elements of the complete dwc:scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca).
    ExamplesAbacetillus (for scientificName "Abacetus (Abacetillus) ambiguus", Cracca (for scientificName "Vicia sect. Cracca")
      +
    • Abacetillus (for scientificName Abacetus (Abacetillus) ambiguus)
    • +
    • Cracca (for scientificName Vicia sect. Cracca)
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2021-07-15http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2023-06-28
    Label
    DefinitionThe name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.The name of the lowest or terminal infraspecific epithet of the dwc:scientificName, excluding any rank designation.
    NotesIn botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is scaberrima and the scientificName is Indigophera charlieriana var. scaberrima.In botany, name strings in literature and identifications may have multiple infraspecific ranks. According to the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles 6.7 & Art. 24.1), valid names only have two epithets, with the lowest rank being the dwc:infraspecificEpithet. For example: the dwc:infraspecificEpithet in the string Indigofera charlieriana subsp. sessilis var. scaberrima is scaberrima and the dwc:scientificName is Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett. Use dwc:verbatimIdentification for the full name string used in a dwc:Identification.
    Examplesconcolor (for scientificName "Puma concolor concolor"), oxyadenia (for scientificName "Quercus agrifolia var. oxyadenia"), laxa (for scientificName "Cheilanthes hirta f. laxa"), scaberrima (for scientificName "Indigofera charlieriana var. scaberrima").
      +
    • concolor (for scientificName Puma concolor concolor (Linnaeus, 1771))
    • +
    • oxyadenia (for scientificName Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell)
    • +
    • laxa (for scientificName Cheilanthes hirta f. laxa (Kunze) W.Jacobsen & N.Jacobsen)
    • +
    • scaberrima (for scientificName Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett)
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -7597,11 +8158,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/institutionCode-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/institutionCode-2023-06-28 Label @@ -7613,7 +8174,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - MVZ, FMNH, CLO, UCMP +
      +
    • MVZ
    • +
    • FMNH
    • +
    • CLO
    • +
    • UCMP
    • +
    ABCD equivalence @@ -7639,11 +8205,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/institutionID-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/institutionID-2023-06-28 Label @@ -7655,11 +8221,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). + For physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the Research Organization Registry (ROR) or the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll). Examples - http://biocol.org/urn:lsid:biocol.org:col:34777, http://grbio.org/cool/km06-gtbn + ABCD equivalence @@ -7685,11 +8255,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/island-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/island-2023-06-28 Label @@ -7697,7 +8267,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The name of the island on or near which the Location occurs. + The name of the island on or near which the dcterms:Location occurs. Notes @@ -7705,7 +8275,13 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Nosy Be, Bikini Atoll, Vancouver, Viti Levu, Zanzibar +
      +
    • Nosy Be
    • +
    • Bikini Atoll
    • +
    • Vancouver
    • +
    • Viti Levu
    • +
    • Zanzibar
    • +
    ABCD equivalence @@ -7731,11 +8307,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/islandGroup-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/islandGroup-2023-06-28 Label @@ -7743,7 +8319,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The name of the island group in which the Location occurs. + The name of the island group in which the dcterms:Location occurs. Notes @@ -7751,7 +8327,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Alexander Archipelago, Archipiélago Diego Ramírez, Seychelles +
      +
    • Alexander Archipelago
    • +
    • Archipiélago Diego Ramírez
    • +
    • Seychelles
    • +
    ABCD equivalence @@ -7777,11 +8357,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/kingdom-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/kingdom-2023-06-28 Label @@ -7789,11 +8369,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The full scientific name of the kingdom in which the taxon is classified. + The full scientific name of the kingdom in which the dwc:Taxon is classified. Examples - Animalia, Archaea, Bacteria, Chromista, Fungi, Plantae, Protozoa, Viruses +
      +
    • Animalia
    • +
    • Archaea
    • +
    • Bacteria
    • +
    • Chromista
    • +
    • Fungi
    • +
    • Plantae
    • +
    • Protozoa
    • +
    • Viruses
    • +
    ABCD equivalence @@ -7806,56 +8395,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dc:language
    Term IRIhttp://purl.org/dc/elements/1.1/language
    Modified2020-10-28
    Term version IRIhttp://dublincore.org/usage/terms/history/#language-007
    LabelLanguage
    DefinitionA language of the resource.
    NotesRecommended best practice is to use a controlled vocabulary such as RFC 5646.
    Examplesen (for English), es (for Spanish)
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    - @@ -7902,6 +8441,59 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dc:language
    Term IRIhttp://purl.org/dc/elements/1.1/language
    Modified2023-06-28
    Term version IRIhttp://dublincore.org/usage/terms/history/#language-007
    LabelLanguage
    DefinitionA language of the resource.
    NotesRecommended best practice is to use a controlled vocabulary such as RFC 5646. This term has an equivalent in the dcterms: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • en (for English)
    • +
    • es (for Spanish)
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2019-12-01_19
    + @@ -7915,11 +8507,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -7931,7 +8523,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8003,11 +8599,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8019,7 +8615,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8045,11 +8644,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8061,7 +8660,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8087,11 +8690,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8103,7 +8706,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8171,11 +8777,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8187,7 +8793,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8213,7 +8823,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8229,7 +8839,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8259,11 +8872,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8271,15 +8884,23 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -8309,11 +8930,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8321,7 +8942,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8439,11 +9060,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8455,11 +9076,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8517,33 +9141,33 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2017-10-06http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2023-06-28
    Label
    ExamplesAtlantic, Boreal, Skullrockian
      +
    • Atlantic
    • +
    • Boreal
    • +
    • Skullrockian
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2017-10-06http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2023-06-28
    Label
    ExamplesPhanerozoic, Proterozoic
      +
    • Phanerozoic
    • +
    • Proterozoic
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2017-10-06http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2023-06-28
    Label
    ExamplesHolocene, Pleistocene, Ibexian Series
      +
    • Holocene
    • +
    • Pleistocene
    • +
    • Ibexian Series
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2017-10-06http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2023-06-28
    Label
    ExamplesCenozoic, Mesozoic
      +
    • Cenozoic
    • +
    • Mesozoic
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2017-10-06http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2023-06-28
    Label
    ExamplesNeogene, Tertiary, Quaternary
      +
    • Neogene
    • +
    • Tertiary
    • +
    • Quaternary
    • +
    ABCD equivalence
    Modified2008-01-142023-06-28
    Term version IRI
    Exampleshttp://creativecommons.org/publicdomain/zero/1.0/legalcode, http://creativecommons.org/licenses/by/4.0/legalcode
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/lifeStage-2021-07-15http://rs.tdwg.org/dwc/terms/version/lifeStage-2023-06-28
    Label
    DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded.The age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded.
    NotesRecommended best practice is to use a controlled vocabulary.Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Exampleszygote, larva, juvenile, adult, seedling, flowering, fruiting
      +
    • zygote
    • +
    • larva
    • +
    • juvenile
    • +
    • adult
    • +
    • seedling
    • +
    • flowering
    • +
    • fruiting
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/lifeStage-2021-07-15http://rs.tdwg.org/dwc/iri/version/lifeStage-2023-06-28
    Label
    DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded.The age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded.
    Notes
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locality-2021-07-15http://rs.tdwg.org/dwc/terms/version/locality-2023-06-28
    Label
    NotesLess specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.Less specific geographic information can be provided in other geographic terms (dwc:higherGeography, dwc:continent, dwc:country, dwc:stateProvince, dwc:county, dwc:municipality, dwc:waterBody, dwc:island, dwc:islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.
    ExamplesBariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237), Queets Rainforest, Olympic National Park
      +
    • Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)
    • +
    • Queets Rainforest, Olympic National Park
    • +
    ABCD equivalence
    - + - + - + - + - + - + - - + + @@ -8559,33 +9183,40 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwc:locationAccordingToTerm Name dwciri:locationAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/terms/locationAccordingTohttp://rs.tdwg.org/dwc/iri/locationAccordingTo
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2017-10-06http://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2023-06-28
    LabelLocation According ToLocation According To (IRI)
    DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.Information about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals.
    ExamplesGetty Thesaurus of Geographic Names, GADMNotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalence
    - + - + - + - + - + - + - + + + + + @@ -8653,11 +9284,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8665,7 +9296,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8695,11 +9326,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8707,7 +9338,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8925,11 +9556,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8937,7 +9568,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -8975,11 +9606,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -8991,7 +9622,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9017,11 +9651,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9033,7 +9667,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9059,11 +9697,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9075,7 +9713,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9101,11 +9742,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9113,11 +9754,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9143,11 +9787,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9155,7 +9799,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9185,11 +9829,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9197,15 +9841,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -9235,11 +9882,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9247,7 +9894,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9255,7 +9902,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9281,11 +9938,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9293,7 +9950,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9310,48 +9967,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:locationAccordingToTerm Name dwc:locationAccordingTo
    Term IRIhttp://rs.tdwg.org/dwc/iri/locationAccordingTohttp://rs.tdwg.org/dwc/terms/locationAccordingTo
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2015-03-27http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2023-06-28
    LabelLocation According To (IRI)Location According To
    DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.Information about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals.
    NotesTerms in the dwciri namespace are intended to be used in RDF with non-literal objects.This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • Getty Thesaurus of Geographic Names
    • +
    • GADM
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationID-2017-10-06http://rs.tdwg.org/dwc/terms/version/locationID-2023-06-28
    Label
    DefinitionAn identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.An identifier for the set of dcterms:Location information. May be a global unique identifier or an identifier specific to the data set.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/locationRemarks-2017-10-06http://rs.tdwg.org/dwc/terms/version/locationRemarks-2023-06-28
    Label
    DefinitionComments or notes about the Location.Comments or notes about the dcterms:Location.
    Examples
    Modified2020-10-282023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/materialSampleID-2020-10-28http://rs.tdwg.org/dwc/terms/version/materialSampleID-2023-06-28
    Label
    DefinitionAn identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.An identifier for the dwc:MaterialSample (as opposed to a particular digital record of the dwc:MaterialSample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:materialSampleID globally unique.
    Notes
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2023-06-28
    Label
    Examples0, 200
      +
    • 0
    • +
    • 200
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2023-06-28
    Label
    Examples-1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
      +
    • -1.5 (below the surface)
    • +
    • 4.2 (above the surface)
    • +
    • For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2023-06-28
    Label
    Examples-205, 1236
      +
    • -205
    • +
    • 1236
    • +
    ABCD equivalence
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2023-06-28
    Label
    DefinitionThe description of the potential error associated with the measurementValue.The description of the potential error associated with the dwc:measurementValue.
    Examples0.01, normal distribution with variation of 2 m
      +
    • 0.01
    • +
    • normal distribution with variation of 2 m
    • +
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2015-03-27http://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2023-06-28
    Label
    DefinitionA person, group, or organization who determined the value of the MeasurementOrFact.A person, group, or organization who determined the value of the dwc:MeasurementOrFact.
    Notes
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the dwc:MeasurementOrFact.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesRob Guralnick, Peter Desmet | Stijn Van Hoey
      +
    • Rob Guralnick
    • +
    • Peter Desmet | Stijn Van Hoey
    • +
    ABCD equivalence
    Modified2020-08-122023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2020-08-12http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2023-06-28
    Label
    DefinitionThe date on which the MeasurementOrFact was made.The date on which the dwc:MeasurementOrFact was made.
    Notes
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementID-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementID-2023-06-28
    Label
    DefinitionAn identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.An identifier for the dwc:MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.
    Examples
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:measurementMethod
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementMethod
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementMethod-2018-09-06
    LabelMeasurement Method
    DefinitionA description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.
    Examplesminimum convex polygon around burrow entrances (for a home range area). barometric altimeter (for an elevation).
    ABCD equivalence/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method
    TypeProperty
    - @@ -9394,6 +10009,55 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementMethod
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementMethod
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementMethod-2023-06-28
    LabelMeasurement Method
    DefinitionA description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • minimum convex polygon around burrow entrances (for a home range area)
    • +
    • barometric altimeter (for an elevation)
    • +
    ABCD equivalence/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method
    TypeProperty
    + @@ -9407,11 +10071,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9423,7 +10087,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9457,11 +10121,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9469,7 +10133,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9486,52 +10150,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2018-09-06http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2023-06-28
    Label
    NotesResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.
    Examples
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementRemarks-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2023-06-28
    Label
    DefinitionComments or notes accompanying the MeasurementOrFact.Comments or notes accompanying the dwc:MeasurementOrFact.
    Examples
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:measurementType
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementType
    Modified2018-09-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementType-2018-09-06
    LabelMeasurement Type
    DefinitionThe nature of the measurement, fact, characteristic, or assertion.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplestail length, temperature, trap line length, survey area, trap type
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    TypeProperty
    - @@ -9577,41 +10195,47 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    - + - + - + - + - + - + - + - + - + @@ -9633,11 +10257,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9645,11 +10269,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9665,37 +10289,50 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwc:measurementUnitTerm Name dwc:measurementType
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementUnithttp://rs.tdwg.org/dwc/terms/measurementType
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementUnit-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementType-2023-06-28
    LabelMeasurement UnitMeasurement Type
    DefinitionThe units associated with the measurementValue.The nature of the measurement, fact, characteristic, or assertion.
    NotesRecommended best practice is to use the International System of Units (SI).Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplesmm, C, km, ha
      +
    • tail length
    • +
    • temperature
    • +
    • trap line length
    • +
    • survey area
    • +
    • trap type
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurementDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter
    Type
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/measurementUnit-2015-03-27http://rs.tdwg.org/dwc/iri/version/measurementUnit-2023-06-28
    Label
    DefinitionThe units associated with the measurementValue.The units associated with the dwc:measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI).Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.
    ABCD equivalence
    - + - + - + - + - + - + + + + + - + - + @@ -9754,6 +10391,58 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwc:measurementValueTerm Name dwc:measurementUnit
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementValuehttp://rs.tdwg.org/dwc/terms/measurementUnit
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementValue-2018-09-06http://rs.tdwg.org/dwc/terms/version/measurementUnit-2023-06-28
    LabelMeasurement ValueMeasurement Unit
    DefinitionThe value of the measurement, fact, characteristic, or assertion.The units associated with the dwc:measurementValue.
    NotesRecommended best practice is to use the International System of Units (SI). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples45, 20, 1, 14.5, UV-light
      +
    • m
    • +
    • g
    • +
    • l
    • +
    • °C
    • +
    • mm
    • +
    • km²
    • +
    • %
    • +
    • hh:mm:ss
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValueDataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement
    Type
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:measurementValue
    Term IRIhttp://rs.tdwg.org/dwc/terms/measurementValue
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/measurementValue-2023-06-28
    LabelMeasurement Value
    DefinitionThe value of the measurement, fact, characteristic, or assertion.
    NotesThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • 45
    • +
    • 20
    • +
    • 1
    • +
    • 14.5
    • +
    • UV-light
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue
    TypeProperty
    + @@ -9767,11 +10456,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9783,7 +10472,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9809,11 +10501,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9825,7 +10517,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9851,11 +10546,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9867,7 +10562,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9893,11 +10592,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9909,7 +10608,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9935,7 +10637,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9955,7 +10657,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -9985,11 +10697,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -9997,11 +10709,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -10027,27 +10742,31 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + - + - + - + @@ -10057,6 +10776,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/member-2017-10-06http://rs.tdwg.org/dwc/terms/version/member-2023-06-28
    Label
    ExamplesLava Dam Member, Hellnmaria Member
      +
    • Lava Dam Member
    • +
    • Hellnmaria Member
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2023-06-28
    Label
    Examples0, 100
      +
    • 0
    • +
    • 100
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2023-06-28
    Label
    Examples-1.5 (below the surface). 4.2 (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
      +
    • -1.5 (below the surface)
    • +
    • 4.2 (above the surface)
    • +
    • For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: 300m minimumElevationInMeters: 300, maximumElevationInMeters: 300, verbatimDepth: 20m, minimumDepthInMeters: 20, maximumDepthInMeters: 20, minimumDistanceAboveSurfaceInMeters: 0, maximumDistanceAboveSurfaceInMeters: -1.5.
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2017-10-06http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2023-06-28
    Label
    Examples-100, 802
      +
    • -100
    • +
    • 802
    • +
    ABCD equivalence
    Modified2020-08-122023-06-28
    Term version IRI
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence
    Modified2020-08-122023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/month-2020-08-12http://rs.tdwg.org/dwc/terms/version/month-2023-06-28
    Label
    DefinitionThe integer month in which the Event occurred.The integer month in which the dwc:Event occurred.
    Examples1 (January). 10 (October).
      +
    • 1 (January)
    • +
    • 10 (October)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/municipality-2017-10-06http://rs.tdwg.org/dwc/terms/version/municipality-2023-06-28
    LabelMunicipalityThird Order Division
    DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the dcterms:Location occurs. Do not use this term for a nearby named place that does not contain the actual dcterms:Location.
    NotesRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.
    ExamplesHolzminden, Araçatuba, Ga-Segonyana
      +
    • Holzminden
    • +
    • Araçatuba
    • +
    • Ga-Segonyana
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -10073,11 +10796,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2023-06-28 Label @@ -10089,7 +10812,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - This term provides context to the scientificName. Together with the scientificName, separated by ‘sensu’ or ‘sec.’, it forms the taxon concept label, which may be seen as having the same relationship to taxonConceptID as, for example, acceptedNameUsage has to acceptedNameUsageID. When not provided, in Taxon Core data sets the nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most PreservedSpecimen data sets, the Identification, in which case there is no further context. + This term provides context to the dwc:scientificName. Together with the dwc:scientificName, separated by sensu or sec., it forms the taxon concept label, which may be seen as having the same relationship to dwc:taxonConceptID as, for example, dwc:acceptedNameUsage has to dwc:acceptedNameUsageID. When not provided, in Taxon Core data sets the dwc:nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, dwc:nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most dwc:PreservedSpecimen data sets, the dwc:Identification, in which case there is no further context. Examples @@ -10123,11 +10846,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2023-06-28 Label @@ -10135,7 +10858,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo. + An identifier for the source in which the specific taxon concept circumscription is defined or implied. See dwc:nameAccordingTo. Examples @@ -10211,11 +10934,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2023-06-28 Label @@ -10223,11 +10946,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. + A reference for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. + + + Notes + A citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedIn should be empty. Examples - Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886 +
      +
    • Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388
    • +
    • Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886
    • +
    ABCD equivalence @@ -10237,6 +10967,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + @@ -10253,11 +10987,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-12 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2020-08-12 + http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2023-06-28 Label @@ -10265,7 +10999,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. + An identifier for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. + + + Notes + A citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedInID should be empty. ABCD equivalence @@ -10275,6 +11013,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + @@ -10291,11 +11033,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2023-06-28 Label @@ -10303,11 +11045,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The four-digit year in which the scientificName was published. + The four-digit year in which the dwc:scientificName was published. Examples - 1915, 2008 +
      +
    • 1915
    • +
    • 2008
    • +
    ABCD equivalence @@ -10337,11 +11082,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2023-06-28 Label @@ -10349,7 +11094,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. + The nomenclatural code (or codes in the case of an ambiregnal name) under which the dwc:scientificName is constructed. Notes @@ -10357,7 +11102,13 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - ICN, ICZN, BC, ICNCP, BioCode +
      +
    • ICN
    • +
    • ICZN
    • +
    • BC
    • +
    • ICNCP
    • +
    • BioCode
    • +
    ABCD equivalence @@ -10383,11 +11134,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2023-06-28 Label @@ -10399,7 +11150,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - nom. ambig., nom. illeg., nom. subnud. +
      +
    • nom. ambig.
    • +
    • nom. illeg.
    • +
    • nom. subnud.
    • +
    ABCD equivalence @@ -10425,11 +11180,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-20 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20 + http://rs.tdwg.org/dwc/terms/version/Occurrence-2023-06-28 Label @@ -10437,7 +11192,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time. + An existence of a dwc:Organism at a particular place at a particular time. Examples @@ -10559,11 +11314,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/occurrenceID-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/occurrenceID-2023-06-28 Label @@ -10571,7 +11326,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique. + An identifier for the dwc:Occurrence (as opposed to a particular digital record of the dwc:Occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:occurrenceID globally unique. Notes @@ -10579,7 +11334,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - http://arctos.database.museum/guid/MSB:Mamm:233627, 000866d2-c177-4648-a200-ead4007051b9, urn:catalog:UWBM:Bird:89776 + ABCD equivalence @@ -11003,11 +11762,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2023-06-28 Label @@ -11015,7 +11774,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - Comments or notes about the Occurrence. + Comments or notes about the dwc:Occurrence. Examples @@ -11032,48 +11791,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwciri:occurrenceStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/occurrenceStatus
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2015-03-27
    LabelOccurrence Status (IRI)
    DefinitionA statement about the presence or absence of a Taxon at a Location.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -11087,11 +11804,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11099,15 +11816,60 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + + + + + + + + + + + +
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2021-07-15http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2023-06-28
    Label
    DefinitionA statement about the presence or absence of a Taxon at a Location.A statement about the presence or absence of a dwc:Taxon at a dcterms:Location.
    NotesFor Occurrences, the default vocabulary is recommended to consist of "present" and "absent", but can be extended by implementers with good justification.For dwc:Occurrences, the default vocabulary is recommended to consist of present and absent, but can be extended by implementers with good justification. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplespresent, absent
      +
    • present
    • +
    • absent
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11133,11 +11895,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11145,11 +11907,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11175,11 +11940,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11191,7 +11956,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11225,11 +11990,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11237,7 +12002,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11271,11 +12036,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11283,11 +12048,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11317,11 +12086,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11329,15 +12098,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11409,11 +12183,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11421,15 +12195,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11459,11 +12238,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11471,7 +12250,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11505,11 +12284,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11517,15 +12296,21 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11555,11 +12340,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11567,15 +12352,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11601,11 +12389,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11613,15 +12401,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11647,11 +12440,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11659,7 +12452,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11667,7 +12460,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11697,11 +12493,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11713,7 +12509,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11739,11 +12539,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11751,7 +12551,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11776,6 +12576,59 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:occurrenceStatus
    Term IRIhttp://rs.tdwg.org/dwc/iri/occurrenceStatus
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2023-06-28
    LabelOccurrence Status (IRI)
    DefinitionA statement about the presence or absence of a dwc:Taxon at a dcterms:Location.
    NotesRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/order-2017-10-06http://rs.tdwg.org/dwc/terms/version/order-2023-06-28
    Label
    DefinitionThe full scientific name of the order in which the taxon is classified.The full scientific name of the order in which the dwc:Taxon is classified.
    ExamplesCarnivora, Monocleales
      +
    • Carnivora
    • +
    • Monocleales
    • +
    ABCD equivalence
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/Organism-2018-09-06http://rs.tdwg.org/dwc/terms/version/Organism-2023-06-28
    Label
    NotesInstances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.Instances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose dwc:Occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismID-2017-10-06http://rs.tdwg.org/dwc/terms/version/organismID-2023-06-28
    Label
    DefinitionAn identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.An identifier for the dwc:Organism instance (as opposed to a particular digital record of the dwc:Organism). May be a globally unique identifier or an identifier specific to the data set.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismName-2017-10-06http://rs.tdwg.org/dwc/terms/version/organismName-2023-06-28
    Label
    DefinitionA textual name or label assigned to an Organism instance.A textual name or label assigned to a dwc:Organism instance.
    ExamplesHuberta, Boab Prison Tree, J pod
      +
    • Huberta
    • +
    • Boab Prison Tree
    • +
    • J pod
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantity-2021-07-15http://rs.tdwg.org/dwc/terms/version/organismQuantity-2023-06-28
    Label
    DefinitionA number or enumeration value for the quantity of organisms.A number or enumeration value for the quantity of dwc:Organisms.
    NotesAn organismQuantity must have a corresponding organismQuantityType.A dwc:organismQuantity must have a corresponding dwc:organismQuantityType.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with % biomass (organismQuantityType). r (organismQuantity) with Braun Blanquet Scale (organismQuantityType). many (organismQuantity) with individuals (organismQuantityType).
      +
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • +
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • +
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • +
    • many (organismQuantity) with individuals (organismQuantityType)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismQuantityType-2017-10-06http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2023-06-28
    Label
    DefinitionThe type of quantification system used for the quantity of organisms.The type of quantification system used for the quantity of dwc:Organisms.
    NotesA dwc:organismQuantityType must have a corresponding dwc:organismQuantity.A dwc:organismQuantityType must have a corresponding dwc:organismQuantity. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples27 (organismQuantity) with individuals (organismQuantityType). 12.5 (organismQuantity) with %biomass (organismQuantityType). r (organismQuantity) with BraunBlanquetScale (organismQuantityType).
      +
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • +
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • +
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • +
    • many (organismQuantity) with individuals (organismQuantityType)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismRemarks-2017-10-06http://rs.tdwg.org/dwc/terms/version/organismRemarks-2023-06-28
    Label
    DefinitionComments or notes about the Organism instance.Comments or notes about the dwc:Organism instance.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/organismScope-2017-10-06http://rs.tdwg.org/dwc/terms/version/organismScope-2023-06-28
    Label
    DefinitionA description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation.A description of the kind of dwc:Organism instance. Can be used to indicate whether the dwc:Organism instance represents a discrete organism or if it represents a particular type of aggregation.
    NotesRecommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.Recommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of dwc:Taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.
    Examplesmulticellular organism, virus, clone, pack, colony
      +
    • multicellular organism
    • +
    • virus
    • +
    • clone
    • +
    • pack
    • +
    • colony
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/originalNameUsage-2021-07-15http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2023-06-28
    Label
    DefinitionThe taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated dwc:nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the dwc:scientificName or the senior/earlier homonym for replaced names.
    NotesThe full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.The full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.
    ExamplesPinus abies, Gasterosteus saltatrix Linnaeus 1768
      +
    • Pinus abies
    • +
    • Gasterosteus saltatrix Linnaeus 1768
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2021-07-15http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2023-06-28
    Label
    DefinitionAn identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.
    NotesThis term should be used to refer to the taxonID of a Taxon record that represents the usage of the terminal element of the scientificName as originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.This term should be used to refer to the dwc:taxonID of a dwc:Taxon record that represents the usage of the terminal element of the dwc:scientificName as originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41107 (ITIS), urn:lsid:ipni.org:names:320035-2 (IPNI), 2704179 (GBIF), 6W3C4 (COL)
      +
    • tsn:41107 (ITIS)
    • +
    • urn:lsid:ipni.org:names:320035-2 (IPNI)
    • +
    • 2704179 (GBIF)
    • +
    • 6W3C4 (COL)
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2017-10-06http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same dwc:Occurrence, whether in the current or any other data set or collection.
    Notes
    ExamplesFMNH:Mammal:1234, NPS YELLO6778 | MBG 33424
      +
    • FMNH:Mammal:1234
    • +
    • NPS YELLO6778 | MBG 33424
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2017-10-06http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2023-06-28
    Label
    ExamplesNPS, APN, InBio
      +
    • NPS
    • +
    • APN
    • +
    • InBio
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentEventID-2017-10-06http://rs.tdwg.org/dwc/terms/version/parentEventID-2023-06-28
    Label
    DefinitionAn identifier for the broader Event that groups this and potentially other Events.An identifier for the broader dwc:Event that groups this and potentially other dwc:Events.
    Notes
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:parentMeasurementID
    Term IRIhttp://rs.tdwg.org/dwc/terms/parentMeasurementID
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentMeasurementID-2023-06-28
    LabelParent Measurement ID
    DefinitionAn identifier for a broader dwc:MeasurementOrFact that groups this and potentially other dwc:MeasurementOrFacts.
    NotesMay be a globally unique identifier or an identifier specific to the data set.
    Examples
      +
    • 9c752d22-b09a-11e8-96f8-529269fb1459
    • +
    • E1_E1_O1_M1
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + @@ -11789,11 +12642,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11801,11 +12654,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11831,11 +12688,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11843,15 +12700,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11877,11 +12739,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11889,15 +12751,22 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -11923,11 +12792,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11935,7 +12804,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11943,7 +12812,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -11973,11 +12845,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -11985,11 +12857,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12015,11 +12890,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12027,7 +12902,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12035,7 +12910,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12045,6 +12924,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentNameUsage-2017-10-06http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2023-06-28
    Label
    DefinitionThe full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent dwc:Taxon (in a classification) of the most specific element of the dwc:scientificName.
    ExamplesRubiaceae, Gruiformes, Testudinae
      +
    • Rubiaceae
    • +
    • Gruiformes
    • +
    • Testudinae
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2021-07-15http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2023-06-28
    Label
    DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the dwc:scientificName.
    NotesThis term should be used for accepted names to refer to the taxonID of a Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.This term should be used for accepted names to refer to the dwc:taxonID of a dwc:Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.
    Examplestsn:41074 (ITIS), urn:lsid:ipni.org:names:30001404-2 (IPNI), 2704173 (GBIF), 6T8N (COL)
      +
    • tsn:41074 (ITIS)
    • +
    • urn:lsid:ipni.org:names:30001404-2 (IPNI)
    • +
    • 2704173 (GBIF)
    • +
    • 6T8N (COL)
    • +
    ABCD equivalence
    Modified2021-03-292023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pathway-2021-03-29http://rs.tdwg.org/dwc/terms/version/pathway-2023-06-28
    Label
    DefinitionThe process by which an Organism came to be in a given place at a given time.The process by which a dwc:Organism came to be in a given place at a given time.
    NotesRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesreleasedForUse, otherEscape, transportContaminant, transportStowaway, corridor, unaided
      +
    • releasedForUse
    • +
    • otherEscape
    • +
    • transportContaminant
    • +
    • transportStowaway
    • +
    • corridor
    • +
    • unaided
    • +
    Type
    Modified2021-03-292023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/pathway-2021-03-29http://rs.tdwg.org/dwc/iri/version/pathway-2023-06-28
    Label
    DefinitionThe process by which an Organism came to be in a given place at a given time.The process by which a dwc:Organism came to be in a given place at a given time.
    Notes
    Exampleshttp://rs.tdwg.org/dwcpw/values/p002, http://rs.tdwg.org/dwcpw/values/p046
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/phylum-2017-10-06http://rs.tdwg.org/dwc/terms/version/phylum-2023-06-28
    Label
    DefinitionThe full scientific name of the phylum or division in which the taxon is classified.The full scientific name of the phylum or division in which the dwc:Taxon is classified.
    ExamplesChordata (phylum). Bryophyta (division).
      +
    • Chordata (phylum)
    • +
    • Bryophyta (division)
    • +
    ABCD equivalence
    Modified2020-08-202023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2023-06-28
    Label
    DefinitionThe ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.The ratio of the area of the point-radius (dwc:decimalLatitude, dwc:decimalLongitude, dwc:coordinateUncertaintyInMeters) 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 point-radius does not completely contain the original representation. The dwc:pointRadiusSpatialFit 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:pointRadiusSpatialFit is 1.
    Notes
    Examples0, 1, 1.5708
      +
    • 0
    • +
    • 1
    • +
    • 1.5708
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -12103,11 +12986,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/preparations-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/preparations-2023-06-28 Label @@ -12119,11 +13002,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to separate the values in a list with space vertical bar space ( | ). + Recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - fossil, cast, photograph, DNA extract, skin | skull | skeleton, whole animal (ETOH) | tissue (EDTA) +
      +
    • fossil
    • +
    • cast
    • +
    • photograph
    • +
    • DNA extract
    • +
    • skin | skull | skeleton
    • +
    • whole animal (ETOH) | tissue (EDTA)
    • +
    ABCD equivalence @@ -12190,6 +13080,64 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:previousIdentifications
    Term IRIhttp://rs.tdwg.org/dwc/terms/previousIdentifications
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/previousIdentifications-2023-06-28
    LabelPrevious Identifications
    DefinitionA list (concatenated and separated) of previous assignments of names to the dwc:Organism.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examples
      +
    • Chalepidae
    • +
    • Pinus abies
    • +
    • Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + @@ -12236,110 +13184,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:previousIdentifications
    Term IRIhttp://rs.tdwg.org/dwc/terms/previousIdentifications
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/previousIdentifications-2017-10-06
    LabelPrevious Identifications
    DefinitionA list (concatenated and separated) of previous assignments of names to the Organism.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesChalepidae, Pinus abies, Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology
    ABCD equivalenceDataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-26_14
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:recordedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordedBy
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordedBy-2017-10-06
    LabelRecorded By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    ExamplesJosé E. Crespo. Oliver P. Pearson | Anita K. Pearson (where the value in recordNumber OPP 7101 corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson).
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    - @@ -12353,11 +13197,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12365,7 +13209,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12382,6 +13226,59 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/recordedBy-2015-03-27http://rs.tdwg.org/dwc/iri/version/recordedBy-2023-06-28
    Label
    DefinitionA person, group, or organization responsible for recording the original Occurrence.A person, group, or organization responsible for recording the original dwc:Occurrence.
    Notes
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:recordedBy
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordedBy
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordedBy-2023-06-28
    LabelRecorded By
    DefinitionA list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original dwc:Occurrence. The primary collector or observer, especially one who applies a personal identifier (dwc:recordNumber), should be listed first.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • José E. Crespo
    • +
    • Oliver P. Pearson | Anita K. Pearson (where the value in recordNumber OPP 7101 corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson)
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + @@ -12395,11 +13292,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12407,15 +13304,18 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -12435,37 +13335,41 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordedByID-2021-07-15http://rs.tdwg.org/dwc/terms/version/recordedByID-2023-06-28
    Label
    DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original Occurrence.A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original dwc:Occurrence.
    NotesRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space ( | ). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space ( | ). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.
    Exampleshttps://orcid.org/0000-0002-1825-0097 (for an individual); https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098 (for a list of people).
    ABCD equivalence
    - + - + - + - + - + - + - + + + + + - + @@ -12477,37 +13381,37 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:recordNumberTerm Name dwc:recordNumber
    Term IRIhttp://rs.tdwg.org/dwc/iri/recordNumberhttp://rs.tdwg.org/dwc/terms/recordNumber
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/recordNumber-2015-03-27http://rs.tdwg.org/dwc/terms/version/recordNumber-2023-06-28
    LabelRecord Number (IRI)Record Number
    DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.An identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number.
    NotesThe subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    ExamplesOPP 7101
    ABCD equivalencenot in ABCDDataSets/DataSet/Units/Unit/CollectorsFieldNumber
    Type
    - + - + - + - + - + - + - - + + - + @@ -12529,7 +13433,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12545,11 +13449,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12747,11 +13654,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12767,7 +13674,17 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12793,11 +13710,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12805,7 +13722,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12813,7 +13730,21 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12839,11 +13770,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12851,7 +13782,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12859,7 +13790,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12889,11 +13824,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12905,7 +13840,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -12918,52 +13856,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwc:recordNumberTerm Name dwciri:recordNumber
    Term IRIhttp://rs.tdwg.org/dwc/terms/recordNumberhttp://rs.tdwg.org/dwc/iri/recordNumber
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/recordNumber-2017-10-06http://rs.tdwg.org/dwc/iri/version/recordNumber-2023-06-28
    LabelRecord NumberRecord Number (IRI)
    DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.An identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number.
    ExamplesOPP 7101NotesThe subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.
    ABCD equivalenceDataSets/DataSet/Units/Unit/CollectorsFieldNumbernot in ABCD
    Type
    Modified2021-07-152023-06-28
    Term version IRI
    NotesFrom Dublin Core, "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By." The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g.,Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.From Dublin Core, "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By." The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g., dwc:Taxon, dwc:Occurrence, dwc:Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.
    ExamplesMaterialSample example: http://arctos.database.museum/guid/MVZ:Mamm:165861, Taxon example: https://www.catalogueoflife.org/data/taxon/32664
    ABCD equivalence
    Modified2020-08-122023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2020-08-12http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2023-06-28
    Label
    Examples1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). 2009-02-20T08:40Z (20 February 2009 8:40am UTC). 2018-08-29T15:19 (3:19pm local time on 29 August 2018). 1809-02-12 (some time during 12 February 1809). 1906-06 (some time in June 1906). 1971 (some time in the year 1971). 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909). 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007).
      +
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • +
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • +
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • +
    • 1809-02-12 (some time during 12 February 1809)
    • +
    • 1906-06 (some time in June 1906)
    • +
    • 1971 (some time in the year 1971)
    • +
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • +
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • +
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2021-07-15http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2023-06-28
    Label
    DefinitionThe relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID).The relationship of the subject (identified by dwc:resourceID) to the object (identified by dwc:relatedResourceID).
    Notes
    ExamplessameAs, duplicate of, mother of, offspring of, sibling of, parasite of, host of, valid synonym of, located within, pollinator of members of taxon, pollinated specific plant, pollinated by members of taxon
      +
    • same as
    • +
    • duplicate of
    • +
    • mother of
    • +
    • offspring of
    • +
    • sibling of
    • +
    • parasite of
    • +
    • host of
    • +
    • valid synonym of
    • +
    • located within
    • +
    • pollinator of members of taxon
    • +
    • pollinated specific plant
    • +
    • pollinated by members of taxon
    • +
    • on slab with
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2021-07-15http://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2023-06-28
    Label
    DefinitionAn identifier for the relationship type (predicate) that connects the subject identified by resourceID to its object identified by relatedResourceID.An identifier for the relationship type (predicate) that connects the subject identified by dwc:resourceID to its object identified by dwc:relatedResourceID.
    Notes
    Exampleshttp://purl.obolibrary.org/obo/RO_0002456 (for the relation "pollinated by"), http://purl.obolibrary.org/obo/RO_0002455 (for the relation "pollinates"), https://www.inaturalist.org/observation_fields/879 (for the relation "eaten by")
    ABCD equivalence
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2018-09-06http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2023-06-28
    Label
    Examplesmother and offspring collected from the same nest, pollinator captured in the act
      +
    • mother and offspring collected from the same nest
    • +
    • pollinator captured in the act
    • +
    ABCD equivalence
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:reproductiveCondition
    Term IRIhttp://rs.tdwg.org/dwc/terms/reproductiveCondition
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2017-10-06
    LabelReproductive Condition
    DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary.
    Examplesnon-reproductive, pregnant, in bloom, fruit-bearing
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -12977,11 +13869,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -12989,7 +13881,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -13006,6 +13898,57 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2015-03-27http://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2023-06-28
    Label
    DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence.The reproductive condition of the biological individual(s) represented in the dwc:Occurrence.
    Notes
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:reproductiveCondition
    Term IRIhttp://rs.tdwg.org/dwc/terms/reproductiveCondition
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2023-06-28
    LabelReproductive Condition
    DefinitionThe reproductive condition of the biological individual(s) represented in the dwc:Occurrence.
    NotesRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • non-reproductive
    • +
    • pregnant
    • +
    • in bloom
    • +
    • fruit-bearing
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    + @@ -13061,11 +14004,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -13077,7 +14020,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -13111,11 +14054,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -13123,7 +14066,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -13634,6 +14577,48 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2018-09-06http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2023-06-28
    Label
    NotesResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.
    Examples
    Modified2018-09-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2018-09-06http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2023-06-28
    Label
    DefinitionAn identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).An identifier for an instance of relationship between one resource (the subject) and another (dwc:relatedResource, the object).
    Examples
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:sampleSizeUnit
    Term IRIhttp://rs.tdwg.org/dwc/iri/sampleSizeUnit
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2023-06-28
    LabelSampling Size Unit (IRI)
    DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.
    NotesA dwciri:sampleSizeUnit must have a corresponding dwc:sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.
    ABCD equivalencenot in ABCD
    TypeProperty
    + @@ -13647,11 +14632,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -13659,15 +14644,22 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -13684,48 +14676,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2017-10-06http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2023-06-28
    Label
    DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.
    NotesA sampleSizeUnit must have a corresponding sampleSizeValue, e.g., 5 for sampleSizeValue with metre for sampleSizeUnit.A dwc:sampleSizeUnit must have a corresponding dwc:sampleSizeValue, e.g., 5 for dwc:sampleSizeValue with m for dwc:sampleSizeUnit. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplesminute, hour, day, metre, square metre, cubic metre
      +
    • minute
    • +
    • hour
    • +
    • day
    • +
    • metre
    • +
    • square metre
    • +
    • cubic metre
    • +
    ABCD equivalence
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwciri:sampleSizeUnit
    Term IRIhttp://rs.tdwg.org/dwc/iri/sampleSizeUnit
    Modified2015-03-27
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2015-03-27
    LabelSampling Size Unit (IRI)
    DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.
    NotesA sampleSizeUnit must have a corresponding sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.
    ABCD equivalencenot in ABCD
    TypeProperty
    - @@ -13739,11 +14689,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -13751,15 +14701,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -13869,11 +14819,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -13881,11 +14831,16 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -14199,41 +15154,48 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2017-10-06http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2023-06-28
    Label
    DefinitionA numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.
    NotesA sampleSizeValue must have a corresponding sampleSizeUnit. A dwc:sampleSizeValue must have a corresponding dwc:sampleSizeUnit.
    Examples5 for sampleSizeValue with metre for sampleSizeUnit.5 (sampleSizeValue) with metre (sampleSizeUnit)
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/samplingEffort-2017-10-06http://rs.tdwg.org/dwc/terms/version/samplingEffort-2023-06-28
    Label
    DefinitionThe amount of effort expended during an Event.The amount of effort expended during a dwc:Event.
    Examples40 trap-nights, 10 observer-hours, 10 km by foot, 30 km by car
      +
    • 40 trap-nights
    • +
    • 10 observer-hours
    • +
    • 10 km by foot
    • +
    • 30 km by car
    • +
    ABCD equivalence
    - + - + - + - + - + - + - + - + - + @@ -14249,41 +15211,41 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Term Name dwciri:samplingProtocolTerm Name dwc:samplingProtocol
    Term IRIhttp://rs.tdwg.org/dwc/iri/samplingProtocolhttp://rs.tdwg.org/dwc/terms/samplingProtocol
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/samplingProtocol-2021-07-15http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2023-06-28
    LabelSampling Protocol (IRI)Sampling Protocol
    DefinitionThe methods or protocols used during an Event, denoted by an IRI.The names of, references to, or descriptions of the methods or protocols used during a dwc:Event.
    NotesRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the Occurrence.Recommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Exampleshttps://doi.org/10.1111/j.1466-8238.2009.00467.x
    ABCD equivalencenot in ABCDDataSets/DataSet/Units/Unit/Gathering/Method
    Type
    - + - + - + - + - + - + - + - + - + @@ -14309,11 +15271,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -14321,15 +15283,26 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -14343,6 +15316,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Term Name dwc:samplingProtocolTerm Name dwciri:samplingProtocol
    Term IRIhttp://rs.tdwg.org/dwc/terms/samplingProtocolhttp://rs.tdwg.org/dwc/iri/samplingProtocol
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/samplingProtocol-2021-07-15http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2023-06-28
    LabelSampling ProtocolSampling Protocol (IRI)
    DefinitionThe names of, references to, or descriptions of the methods or protocols used during an Event.The methods or protocols used during a dwc:Event, denoted by an IRI.
    NotesRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ).Recommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary dwc:Event in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the dwc:Occurrence.
    ExamplesUV light trap, mist net, bottom trawl, ad hoc observation | point count, Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x, Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdfhttps://doi.org/10.1111/j.1466-8238.2009.00467.x
    ABCD equivalenceDataSets/DataSet/Units/Unit/Gathering/Methodnot in ABCD
    Type
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/scientificName-2021-07-15http://rs.tdwg.org/dwc/terms/version/scientificName-2023-06-28
    Label
    DefinitionThe 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.The full scientific name, with authorship and date information if known. When forming part of a dwc: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 dwc:identificationQualifier term.
    NotesThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified.This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified. Names should be compliant to the most recent nomenclatural code. For example, names of hybrids for algae, fungi and plants should follow the rules of the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H.1, H.2 and H.3). Thus, use the multiplication sign × (Unicode U+00D7, HTML ×) to identify a hybrid, not x or X, if possible.
    ExamplesColeoptera (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).
      +
    • 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)
    • +
    • ×Agropogon littoralis (Sm.) C. E. Hubb.
    • +
    • Mentha ×smithiana R. A. Graham
    • +
    • Agrostis stolonifera L. × Polypogon monspeliensis (L.) Desf.
    • +
    ABCD equivalenceExecutive Committee decision http://rs.tdwg.org/decisions/decision-2019-12-01_19
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -14359,11 +15336,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2023-06-28 Label @@ -14371,11 +15348,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode. + The authorship information for the dwc:scientificName formatted according to the conventions of the applicable dwc:nomenclaturalCode. Examples - (Torr.) J.T. Howell, (Martinovský) Tzvelev, (Györfi, 1952) +
      +
    • (Torr.) J.T. Howell
    • +
    • (Martinovský) Tzvelev
    • +
    • (Györfi, 1952)
    • +
    ABCD equivalence @@ -14493,11 +15474,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2015-03-27 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/sex-2015-03-27 + http://rs.tdwg.org/dwc/iri/version/sex-2023-06-28 Label @@ -14505,7 +15486,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The sex of the biological individual(s) represented in the Occurrence. + The sex of the biological individual(s) represented in the dwc:Occurrence. Notes @@ -14535,11 +15516,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/sex-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/sex-2023-06-28 Label @@ -14547,15 +15528,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The sex of the biological individual(s) represented in the Occurrence. + The sex of the biological individual(s) represented in the dwc:Occurrence. Notes - Recommended best practice is to use a controlled vocabulary. + Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - female, male, hermaphrodite +
      +
    • female
    • +
    • male
    • +
    • hermaphrodite
    • +
    ABCD equivalence @@ -14585,11 +15570,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/specificEpithet-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/specificEpithet-2023-06-28 Label @@ -14597,11 +15582,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The name of the first or species epithet of the scientificName. + The name of the first or species epithet of the dwc:scientificName. Examples - concolor, gottschei +
      +
    • concolor
    • +
    • gottschei
    • +
    ABCD equivalence @@ -14627,11 +15615,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2020-08-20 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20 + http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2023-06-28 Label @@ -14639,11 +15627,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). + The earliest 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). Examples - 1 (1 January). 366 (31 December), 365 (30 December in a leap year, 31 December in a non-leap year). +
      +
    • 1 (1 January)
    • +
    • 366 (31 December)
    • +
    • 365 (30 December in a leap year, 31 December in a non-leap year)
    • +
    ABCD equivalence @@ -14715,27 +15707,31 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/stateProvince-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/stateProvince-2023-06-28 Label - State Province + First Order Division Definition - The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs. + The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the dcterms:Location occurs. Notes - Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. + Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples - Montana, Minas Gerais, Córdoba +
      +
    • Montana
    • +
    • Minas Gerais
    • +
    • Córdoba
    • +
    ABCD equivalence @@ -14745,6 +15741,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Type Property + + Executive Committee decision + http://rs.tdwg.org/decisions/decision-2023-06-28_40 + @@ -14761,11 +15761,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/subfamily-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/subfamily-2023-06-28 Label @@ -14773,11 +15773,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The full scientific name of the subfamily in which the taxon is classified. + The full scientific name of the subfamily in which the dwc:Taxon is classified. Examples - Periptyctinae, Orchidoideae, Sphindociinae +
      +
    • Periptyctinae
    • +
    • Orchidoideae
    • +
    • Sphindociinae
    • +
    ABCD equivalence @@ -14807,11 +15811,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/subgenus-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/subgenus-2023-06-28 Label @@ -14819,11 +15823,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion. + The full scientific name of the subgenus in which the dwc:Taxon is classified. Values should include the genus to avoid homonym confusion. Examples - Strobus, Amerigo, Pilosella +
      +
    • Strobus
    • +
    • Amerigo
    • +
    • Pilosella
    • +
    ABCD equivalence @@ -14836,6 +15844,112 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:subtribe
    Term IRIhttp://rs.tdwg.org/dwc/terms/subtribe
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/subtribe-2023-06-28
    LabelSubtribe
    DefinitionThe full scientific name of the subtribe in which the dwc:Taxon is classified.
    Examples
      +
    • Plotinini
    • +
    • Typhaeini
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: )
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:superfamily
    Term IRIhttp://rs.tdwg.org/dwc/terms/superfamily
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/superfamily-2023-06-28
    LabelSuperfamily
    DefinitionThe full scientific name of the family in which the dwc:Taxon is classified.
    NotesA taxonomic category subordinate to an order and superior to a family. According to ICZN article 29.2, the suffix -oidea is used for a superfamily name.
    Examples
      +
    • Achatinoidea
    • +
    • Cerithioidea
    • +
    • Helicoidea
    • +
    • Hypsibioidea
    • +
    • Valvatoidea
    • +
    • Zonitoidea
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: superfamilia)
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + @@ -14979,11 +16093,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -14991,7 +16105,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15063,11 +16177,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15075,11 +16189,15 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15143,11 +16261,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15155,7 +16273,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15163,7 +16281,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15189,11 +16312,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15201,15 +16324,24 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -15219,6 +16351,10 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonConceptID-2017-10-06http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2023-06-28
    Label
    DefinitionAn identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a dwc:Taxon.
    Examples
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonID-2017-10-06http://rs.tdwg.org/dwc/terms/version/taxonID-2023-06-28
    Label
    DefinitionAn identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.An identifier for the set of dwc:Taxon information. May be a global unique identifier or an identifier specific to the data set.
    Examples8fa58e08-08de-4ac1-b69c-1235340b7001, 32567, https://www.gbif.org/species/212
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2017-10-06http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2023-06-28
    Label
    DefinitionThe status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.The status of the use of the dwc:scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a dwc:Taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.
    Notes
    Examplesinvalid, misapplied, homotypic synonym, accepted
      +
    • invalid
    • +
    • misapplied
    • +
    • homotypic synonym
    • +
    • accepted
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/taxonRank-2017-10-06http://rs.tdwg.org/dwc/terms/version/taxonRank-2023-06-28
    Label
    DefinitionThe taxonomic rank of the most specific name in the scientificName.The taxonomic rank of the most specific name in the dwc:scientificName.
    NotesRecommended best practice is to use a controlled vocabulary.Recommended best practice is to use a controlled vocabulary. The taxon ranks of algae, fungi and plants are defined in the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H3.2, H4.4 and H.3.1).
    Examplessubspecies, varietas, forma, species, genus
      +
    • subspecies
    • +
    • varietas
    • +
    • forma
    • +
    • species
    • +
    • genus
    • +
    • nothogenus
    • +
    • nothospecies
    • +
    • nothosubspecies
    • +
    ABCD equivalenceType Property
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -15306,6 +16442,55 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:tribe
    Term IRIhttp://rs.tdwg.org/dwc/terms/tribe
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/tribe-2023-06-28
    LabelTribe
    DefinitionThe full scientific name of the tribe in which the dwc:Taxon is classified.
    Examples
      +
    • Ortaliini
    • +
    • Arethuseae
    • +
    ABCD equivalenceScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: )
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + @@ -15377,7 +16562,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15397,7 +16582,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15418,56 +16610,6 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    Modified2008-01-142023-06-28
    Term version IRI
    ExamplesStillImage, MovingImage, Sound, PhysicalObject, Event, Text
      +
    • StillImage
    • +
    • MovingImage
    • +
    • Sound
    • +
    • PhysicalObject
    • +
    • Event
    • +
    • Text
    • +
    ABCD equivalence
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Term Name dwc:typeStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/typeStatus
    Modified2017-10-06
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/typeStatus-2017-10-06
    LabelType Status
    DefinitionA list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ).
    Examplesholotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388, holotype of Pinus abies | holotype of Picea abies
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    - @@ -15510,6 +16652,59 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/#
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:typeStatus
    Term IRIhttp://rs.tdwg.org/dwc/terms/typeStatus
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/typeStatus-2023-06-28
    LabelType Status
    DefinitionA list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.
    NotesRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388
    • +
    • holotype of Pinus abies | holotype of Picea abies
    • +
    ABCD equivalenceDataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2014-10-30_16
    + @@ -15523,11 +16718,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15535,11 +16730,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15565,11 +16763,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15577,7 +16775,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -15607,11 +16805,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15619,15 +16817,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + - + @@ -15737,11 +16940,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15749,11 +16952,16 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15779,11 +16987,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15795,11 +17003,19 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -15813,6 +17029,60 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2017-10-06http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2023-06-28
    Label
    DefinitionThe verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.The verbatim original spatial coordinates of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem.
    Examples41 05 54S 121 05 34W, 17T 630000 4833400
      +
    • 41 05 54S 121 05 34W
    • +
    • 17T 630000 4833400
    • +
    ABCD equivalence
    Modified2015-03-272023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2015-03-27http://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2023-06-28
    Label
    DefinitionThe spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.The spatial coordinate system for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location.
    Notes
    Modified2020-08-202023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2023-06-28
    Label
    DefinitionThe coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.The coordinate format for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location.
    NotesRecommended best practice is to use a controlled vocabulary.Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examplesdecimal degrees, degrees decimal minutes, degrees minutes seconds, UTM
      +
    • decimal degrees
    • +
    • degrees decimal minutes
    • +
    • degrees minutes seconds
    • +
    • UTM
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2017-10-06http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2023-06-28
    Label
    DefinitionThe verbatim original representation of the date and time information for an Event.The verbatim original representation of the date and time information for a dwc:Event.
    Examplesspring 1910, Marzo 2002, 1999-03-XX, 17IV1934
      +
    • spring 1910
    • +
    • Marzo 2002
    • +
    • 1999-03-XX
    • +
    • 17IV1934
    • +
    ABCD equivalence
    Modified2021-07-152023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2021-07-15http://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2023-06-28
    Label
    NotesThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it.This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to dwc:scientificName (and dwc:identificationQualifier etc.), not instead of it.
    ExamplesPeromyscus sp., Ministrymon sp. nov. 1, Anser anser X Branta canadensis, Pachyporidae?
      +
    • Peromyscus sp.
    • +
    • Ministrymon sp. nov. 1
    • +
    • Anser anser × Branta canadensis
    • +
    • Pachyporidae?
    • +
    • Potentilla × pantotricha Soják
    • +
    • Aconitum pilipes × A. variegatum
    • +
    • Lepomis auritus x cyanellus
    • +
    ABCD equivalenceExecutive Committee decision http://rs.tdwg.org/decisions/decision-2021-07-15_34
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:verbatimLabel
    Term IRIhttp://rs.tdwg.org/dwc/terms/verbatimLabel
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/verbatimLabel-2023-06-28
    LabelVerbatim Label
    DefinitionA serialized encoding intended to represent the literal, i.e., character by character, textual content of a label affixed on, near, or explicitly associated with a material entity, free from interpretation, translation, or transliteration.
    NotesThe content of this term should include no embellishments, prefixes, headers or other additions made to the text. Abbreviations must not be expanded and supposed misspellings must not be corrected. Lines or breakpoints between blocks of text that could be verified by seeing the original labels or images of them may be used. Examples of material entities include preserved specimens, fossil specimens, and material samples. Best practice is to use UTF-8 for all characters. Best practice is to add comment “verbatimLabel derived from human transcription” in dwc:occurrenceRemarks.
    ExamplesExamples can be found at https://dwc.tdwg.org/examples/verbatimLabel.
    ABCD equivalenceMarks/Mark/MarkText
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    @@ -15829,11 +17099,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2023-06-28 Label @@ -15841,7 +17111,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. + The verbatim original latitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem. Examples @@ -15913,11 +17183,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2023-06-28 Label @@ -15925,7 +17195,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. + The verbatim original longitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem. Examples @@ -16001,11 +17271,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2015-03-27 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2015-03-27 + http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2023-06-28 Label @@ -16013,7 +17283,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based. Notes @@ -16043,11 +17313,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2023-06-28 Label @@ -16055,15 +17325,23 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based. Notes - Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. + Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - unknown, EPSG:4326, WGS84, NAD27, Campo Inchauspe, European 1950, Clarke 1866 +
      +
    • unknown
    • +
    • EPSG:4326
    • +
    • WGS84
    • +
    • NAD27
    • +
    • Campo Inchauspe
    • +
    • European 1950
    • +
    • Clarke 1866
    • +
    ABCD equivalence @@ -16089,11 +17367,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2023-06-28 Label @@ -16101,11 +17379,20 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Definition - The taxonomic rank of the most specific name in the scientificName as it appears in the original record. + The taxonomic rank of the most specific name in the dwc:scientificName as it appears in the original record. Examples - Agamospecies, sub-lesus, prole, apomict, nothogrex, sp., subsp., var. +
      +
    • Agamospecies
    • +
    • sub-lesus
    • +
    • prole
    • +
    • apomict
    • +
    • nothogrex
    • +
    • sp.
    • +
    • subsp.
    • +
    • var.
    • +
    ABCD equivalence @@ -16131,11 +17418,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2017-10-06 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/vernacularName-2017-10-06 + http://rs.tdwg.org/dwc/terms/version/vernacularName-2023-06-28 Label @@ -16147,7 +17434,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Examples - Andean Condor, Condor Andino, American Eagle, Gänsegeier +
      +
    • Andean Condor
    • +
    • Condor Andino
    • +
    • American Eagle
    • +
    • Gänsegeier
    • +
    ABCD equivalence @@ -16177,11 +17469,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Modified - 2021-07-15 + 2023-06-28 Term version IRI - http://rs.tdwg.org/dwc/terms/version/verticalDatum-2021-07-15 + http://rs.tdwg.org/dwc/terms/version/verticalDatum-2023-06-28 Label @@ -16193,11 +17485,21 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# Notes - Recommended best practice is to use a controlled vocabulary. + Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples - EGM84, EGM96, EGM2008, PGM2000A, PGM2004, PGM2006, PGM2007, epsg:7030, unknown +
      +
    • EGM84
    • +
    • EGM96
    • +
    • EGM2008
    • +
    • PGM2000A
    • +
    • PGM2004
    • +
    • PGM2006
    • +
    • PGM2007
    • +
    • epsg:7030
    • +
    • unknown
    • +
    ABCD equivalence @@ -16260,6 +17562,108 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwciri:vitality
    Term IRIhttp://rs.tdwg.org/dwc/iri/vitality
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/iri/version/vitality-2023-06-28
    LabelVitality (IRI)
    DefinitionAn indication of whether a dwc:Organism was alive or dead at the time of collection or observation.
    NotesRecommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of PreservedSpecimen, MaterialSample, or HumanObservation. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Term Name dwc:vitality
    Term IRIhttp://rs.tdwg.org/dwc/terms/vitality
    Modified2023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/vitality-2023-06-28
    LabelVitality
    DefinitionAn indication of whether a dwc:Organism was alive or dead at the time of collection or observation.
    NotesRecommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of PreservedSpecimen, MaterialSample, or HumanObservation. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
      +
    • alive
    • +
    • dead
    • +
    • mixedLot
    • +
    • uncertain
    • +
    • notAssessed
    • +
    ABCD equivalencenot in ABCD
    TypeProperty
    Executive Committee decisionhttp://rs.tdwg.org/decisions/decision-2023-06-28_40
    + @@ -16273,11 +17677,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -16285,7 +17689,7 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -16293,7 +17697,12 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + @@ -16319,11 +17728,11 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + @@ -16331,11 +17740,14 @@ Due to the requirements of [Section 1.4.3 of the Darwin Core RDF Guide](../rdf/# - + - + diff --git a/docs/terms/index.md b/docs/terms/index.md index 7d97b1e..3a5e276 100644 --- a/docs/terms/index.md +++ b/docs/terms/index.md @@ -1,14 +1,15 @@ # Darwin Core Quick Reference Guide -This document is intended to be an easy-to-read reference of the currently (as of 2021-07-15) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). +This document is intended to be an easy-to-read reference of the currently (as of 2023-06-28) recommended terms maintained as part of the [Darwin Core standard](https://www.tdwg.org/standards/dwc/) and is maintained by the [Darwin Core Maintenance Group](https://www.tdwg.org/community/dwc/). -This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Capitalized terms, such as Occurrence, are Darwin Core classes, which are special category terms used to group sets of terms for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/). + +**Need help?** Read more about how to use Darwin Core in the [Darwin Core Questions & Answers site](https://github.com/tdwg/dwc-qa/blob/master/README.md). Still have questions? Submit a new issue (question/problem) to the [dwc-qa issues page in GitHub](https://github.com/tdwg/dwc-qa/issues), or use the [form](https://tinyurl.com/darwin-qa). See the bottom of this document for [how to cite Darwin Core](https://dwc.tdwg.org/terms/#cite-darwin-core)." + +This page is not part of the standard, but combines the normative term names and definitions with the non-normative comments and examples that are meant to help people to use the terms consistently. Definitions, comments, and examples may include namespace abbreviations (e.g., "dwc:"). These are included to show that the meaning for the word it is attached to very specifically means the term as defined in that namespace. Thus, dwc:Event means Event as defined by Darwin Core at https://dwc.tdwg.org/terms/#event. Capitalized terms that follow a namespace abbreviation, such as dwc:Occurrence, are Darwin Core class terms, which are a special category of terms used to group sets of property terms (terms that being with lower case names that follow the namespace abbreviation, e.g., dwc:eventID) for convenience. Comprehensive metadata for current and obsolete terms in human readable form are found in the document [List of Darwin Core terms](../list/). Additional [files with just the current term names](https://github.com/tdwg/dwc/tree/master/dist) and a [file with the full term history](https://github.com/tdwg/dwc/blob/master/vocabulary/term_versions.csv) can be found in the [Darwin Core repository](https://github.com/tdwg/dwc). -For inquiries about how to use Darwin Core, either enter an issue in the [Darwin Core Questions & Answers site](https://github.com/tdwg/dwc-qa/blob/master/README.md) or enter an issue in the [alternative form](https://tinyurl.com/darwin-qa), which will have the same effect. See the bottom of this document for how to [cite Darwin Core](#cite-darwin-core). - ## Record-level @@ -122,7 +123,7 @@ This category contains terms that are generic in that they might apply to any ty - + @@ -136,7 +137,7 @@ This category contains terms that are generic in that they might apply to any ty - +
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/waterBody-2017-10-06http://rs.tdwg.org/dwc/terms/version/waterBody-2023-06-28
    Label
    DefinitionThe name of the water body in which the Location occurs.The name of the water body in which the dcterms:Location occurs.
    Notes
    ExamplesIndian Ocean, Baltic Sea, Hudson River, Lago Nahuel Huapi
      +
    • Indian Ocean
    • +
    • Baltic Sea
    • +
    • Hudson River
    • +
    • Lago Nahuel Huapi
    • +
    ABCD equivalence
    Modified2017-10-062023-06-28
    Term version IRIhttp://rs.tdwg.org/dwc/terms/version/year-2017-10-06http://rs.tdwg.org/dwc/terms/version/year-2023-06-28
    Label
    DefinitionThe four-digit year in which the Event occurred, according to the Common Era Calendar.The four-digit year in which the dwc:Event occurred, according to the Common Era Calendar.
    Examples1160, 2008
      +
    • 1160
    • +
    • 2008
    • +
    ABCD equivalence
    bibliographicCitation
    Identifierhttp://purl.org/dc/terms/bibliographicCitation
    DefinitionA bibliographic reference for the resource as a statement indicating how this record should be cited (attributed) when used.
    DefinitionA bibliographic reference for the resource.
    CommentsFrom Dublin Core, "Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible." The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - "how to cite this record". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - "where to find the as-close-to-original reference, if one is available.
    Examples
    references
    Identifierhttp://purl.org/dc/terms/references
    DefinitionA related resource that is referenced, cited, or otherwise pointed to by the described resource.
    CommentsFrom Dublin Core, "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By." The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g., Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.
    CommentsFrom Dublin Core, "This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By." The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g.,Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.
    Examples
    @@ -149,8 +150,8 @@ This category contains terms that are generic in that they might apply to any ty institutionID Identifierhttp://rs.tdwg.org/dwc/terms/institutionID DefinitionAn identifier for the institution having custody of the object(s) or information referred to in the record. - CommentsFor physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). - Examples + CommentsFor physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the Research Organization Registry (ROR) or the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll). + Examples + CommentsFor physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll). + Exampleshttps://www.gbif.org/grscicoll/collection/fbd3ed74-5a21-4e01-b86a-33d36f032d9c
    • PreservedSpecimen
    • FossilSpecimen
    • LivingSpecimen
    • MaterialSample
    • Event
    • HumanObservation
    • MachineObservation
    • Taxon
    • Occurrence
    • MaterialCitation
    @@ -253,7 +254,7 @@ This category contains terms that are generic in that they might apply to any ty informationWithheld Identifierhttp://rs.tdwg.org/dwc/terms/informationWithheld DefinitionAdditional information that exists, but that has not been shared in the given record. - Comments + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • location information not given for endangered species
    • collector identities withheld | ask about tissue samples
    @@ -266,8 +267,8 @@ This category contains terms that are generic in that they might apply to any ty dataGeneralizations Identifierhttp://rs.tdwg.org/dwc/terms/dataGeneralizations DefinitionActions 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. - Comments - ExamplesCoordinates generalized from original GPS coordinates to the nearest half degree grid cell + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. + ExamplesCoordinates generalized from original GPS coordinates to the nearest half degree grid cell.
    • {"heightInMeters":1.5}
    • {"tragusLengthInMeters":0.014, "weightInGrams":120}
    • {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}
    • {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}
    • {"aspectHeading":277, "slopeInDegrees":6}
    • {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    + Examples
    • {"heightInMeters":1.5}
    • {"targusLengthInMeters":0.014, "weightInGrams":120}
    • {"natureOfID":"expert identification", "identificationEvidence":"cytochrome B sequence"}
    • {"relativeHumidity":28, "airTemperatureInCelsius":22, "sampleSizeInKilograms":10}
    • {"aspectHeading":277, "slopeInDegrees":6}
    • {"iucnStatus":"vulnerable", "taxonDistribution":"Neuquén, Argentina"}
    @@ -299,7 +300,9 @@ This category contains terms that are generic in that they might apply to any ty sex lifeStage reproductiveCondition + caste behavior + vitality establishmentMeans degreeOfEstablishment pathway @@ -320,7 +323,7 @@ This category contains terms that are generic in that they might apply to any ty Occurrence Class Identifierhttp://rs.tdwg.org/dwc/terms/Occurrence - DefinitionAn existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time. + DefinitionAn existence of a dwc:Organism at a particular place at a particular time. Comments ExamplesA wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929. @@ -334,7 +337,7 @@ This category contains terms that are generic in that they might apply to any ty occurrenceID Identifierhttp://rs.tdwg.org/dwc/terms/occurrenceID - DefinitionAn identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique. + DefinitionAn identifier for the dwc:Occurrence (as opposed to a particular digital record of the dwc:Occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:occurrenceID globally unique. CommentsRecommended best practice is to use a persistent, globally unique identifier. Examples @@ -360,8 +363,8 @@ This category contains terms that are generic in that they might apply to any ty recordNumber Identifierhttp://rs.tdwg.org/dwc/terms/recordNumber - DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number. - Comments + DefinitionAn identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number. + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. ExamplesOPP 7101 @@ -373,8 +376,8 @@ This category contains terms that are generic in that they might apply to any ty recordedBy Identifierhttp://rs.tdwg.org/dwc/terms/recordedBy - DefinitionA list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original dwc:Occurrence. The primary collector or observer, especially one who applies a personal identifier (dwc:recordNumber), should be listed first. + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • José E. Crespo
    • Oliver P. Pearson | Anita K. Pearson (where the value in recordNumber OPP 7101 corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson)
    @@ -386,7 +389,7 @@ This category contains terms that are generic in that they might apply to any ty recordedByID Identifierhttp://rs.tdwg.org/dwc/terms/recordedByID - DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original Occurrence. + DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original dwc:Occurrence. CommentsRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space ( | ). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics. Examples @@ -399,7 +402,7 @@ This category contains terms that are generic in that they might apply to any ty individualCount Identifierhttp://rs.tdwg.org/dwc/terms/individualCount - DefinitionThe number of individuals present at the time of the Occurrence. + DefinitionThe number of individuals present at the time of the dwc:Occurrence. Comments Examples
    • 0
    • 1
    • 25
    @@ -412,9 +415,9 @@ This category contains terms that are generic in that they might apply to any ty organismQuantity Identifierhttp://rs.tdwg.org/dwc/terms/organismQuantity - DefinitionA number or enumeration value for the quantity of organisms. - CommentsAn organismQuantity must have a corresponding organismQuantityType. - Examples
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • r (organismQuantity) with Braun Blanquet Scale (organismQuantityType)
    • many (organismQuantity) with individuals (organismQuantityType)
    + DefinitionA number or enumeration value for the quantity of dwc:Organisms. + CommentsA dwc:organismQuantity must have a corresponding dwc:organismQuantityType. + Examples
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • many (organismQuantity) with individuals (organismQuantityType)
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • r (organismQuantity) with Braun Blanquet Scale (organismQuantityType)
    • many (organismQuantity) with individuals (organismQuantityType)
    + DefinitionThe type of quantification system used for the quantity of dwc:Organisms. + CommentsA dwc:organismQuantityType must have a corresponding dwc:organismQuantity. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. + Examples
    • 27 (organismQuantity) with individuals (organismQuantityType)
    • 12.5 (organismQuantity) with % biomass (organismQuantityType)
    • r (organismQuantity) with Braun-Blanquet Scale (organismQuantityType)
    • many (organismQuantity) with individuals (organismQuantityType)
    • female
    • male
    • hermaphrodite
    @@ -451,8 +454,8 @@ This category contains terms that are generic in that they might apply to any ty lifeStage Identifierhttp://rs.tdwg.org/dwc/terms/lifeStage - DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded. - CommentsRecommended best practice is to use a controlled vocabulary. + DefinitionThe age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • zygote
    • larva
    • juvenile
    • adult
    • seedling
    • flowering
    • fruiting
    @@ -464,11 +467,24 @@ This category contains terms that are generic in that they might apply to any ty reproductiveCondition Identifierhttp://rs.tdwg.org/dwc/terms/reproductiveCondition - DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence. - CommentsRecommended best practice is to use a controlled vocabulary. + DefinitionThe reproductive condition of the biological individual(s) represented in the dwc:Occurrence. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • non-reproductive
    • pregnant
    • in bloom
    • fruit-bearing
    + + + + + + + + + +
    caste
    Identifierhttp://rs.tdwg.org/dwc/terms/caste
    DefinitionCategorisation of individuals for eusocial species (including some mammals and arthropods).
    CommentsRecommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    • queen
    • male alate
    • intercaste
    • minor worker
    • soldier
    • ergatoid
    • roosting
    • foraging
    • running
    + + + + + + + + + +
    vitality
    Identifierhttp://rs.tdwg.org/dwc/terms/vitality
    DefinitionAn indication of whether a dwc:Organism was alive or dead at the time of collection or observation.
    CommentsRecommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of PreservedSpecimen, MaterialSample, or HumanObservation. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    • alive
    • dead
    • mixedLot
    • uncertain
    • notAssessed
    • native
    • nativeReintroduced
    • introduced
    • introducedAssistedColonisation
    • vagrant
    • uncertain
    @@ -503,8 +532,8 @@ This category contains terms that are generic in that they might apply to any ty degreeOfEstablishment Identifierhttp://rs.tdwg.org/dwc/terms/degreeOfEstablishment - DefinitionThe degree to which an Organism survives, reproduces, and expands its range at the given place and time. - CommentsRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 + DefinitionThe degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time. + CommentsRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • native
    • captive
    • cultivated
    • released
    • failing
    • casual
    • reproducing
    • established
    • colonising
    • invasive
    • widespreadInvasive
    @@ -516,8 +545,8 @@ This category contains terms that are generic in that they might apply to any ty pathway Identifierhttp://rs.tdwg.org/dwc/terms/pathway - DefinitionThe process by which an Organism came to be in a given place at a given time. - CommentsRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 + DefinitionThe process by which a dwc:Organism came to be in a given place at a given time. + CommentsRecommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • releasedForUse
    • otherEscape
    • transportContaminant
    • transportStowaway
    • corridor
    • unaided
    @@ -529,8 +558,8 @@ This category contains terms that are generic in that they might apply to any ty georeferenceVerificationStatus Identifierhttp://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus - DefinitionA categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence. - CommentsRecommended best practice is to use a controlled vocabulary. + DefinitionA 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. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • unable to georeference
    • requires georeference
    • requires verification
    • verified by data custodian
    • verified by contributor
    @@ -542,8 +571,8 @@ This category contains terms that are generic in that they might apply to any ty occurrenceStatus Identifierhttp://rs.tdwg.org/dwc/terms/occurrenceStatus - DefinitionA statement about the presence or absence of a Taxon at a Location. - CommentsFor Occurrences, the default vocabulary is recommended to consist of present and absent, but can be extended by implementers with good justification. + DefinitionA statement about the presence or absence of a dwc:Taxon at a dcterms:Location. + CommentsFor dwc:Occurrences, the default vocabulary is recommended to consist of present and absent, but can be extended by implementers with good justification. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • present
    • absent
    @@ -556,7 +585,7 @@ This category contains terms that are generic in that they might apply to any ty preparations Identifierhttp://rs.tdwg.org/dwc/terms/preparations DefinitionA list (concatenated and separated) of preparations and preservation methods for a specimen. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • fossil
    • cast
    • photograph
    • DNA extract
    • skin | skull | skeleton
    • whole animal (ETOH) | tissue (EDTA)
    @@ -568,8 +597,8 @@ This category contains terms that are generic in that they might apply to any ty disposition Identifierhttp://rs.tdwg.org/dwc/terms/disposition - DefinitionThe current state of a specimen with respect to the collection identified in collectionCode or collectionID. - CommentsRecommended best practice is to use a controlled vocabulary. + DefinitionThe current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • in collection
    • missing
    • voucher elsewhere
    • duplicates elsewhere
    @@ -581,7 +610,7 @@ This category contains terms that are generic in that they might apply to any ty associatedMedia Identifierhttp://rs.tdwg.org/dwc/terms/associatedMedia - DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence. + DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the dwc:Occurrence. Comments Exampleshttps://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964 @@ -594,8 +623,8 @@ This category contains terms that are generic in that they might apply to any ty associatedOccurrences Identifierhttp://rs.tdwg.org/dwc/terms/associatedOccurrences - DefinitionA list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence. - CommentsThis term can be used to provide a list of associations to other Occurrences. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of identifiers of other dwc:Occurrence records and their associations to this dwc:Occurrence. + CommentsThis term can be used to provide a list of associations to other dwc:Occurrences. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples @@ -607,8 +636,8 @@ This category contains terms that are generic in that they might apply to any ty associatedReferences Identifierhttp://rs.tdwg.org/dwc/terms/associatedReferences - DefinitionA list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to an Occurrence is to point to the definitive source representation of that Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to an Occurrence is to provide the preferred way to cite the Occurrence itself. + DefinitionA list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the dwc:Occurrence. + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to a dwc:Occurrence is to point to the definitive source representation of that dwc:Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to a dwc:Occurrence is to provide the preferred way to cite the dwc:Occurrence itself. Examples
    • http://www.sciencemag.org/cgi/content/abstract/322/5899/261
    • Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.
    • Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.
    @@ -620,7 +649,7 @@ This category contains terms that are generic in that they might apply to any ty associatedSequences Identifierhttp://rs.tdwg.org/dwc/terms/associatedSequences - DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence. + DefinitionA list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the dwc:Occurrence. Comments Examples @@ -633,8 +662,8 @@ This category contains terms that are generic in that they might apply to any ty associatedTaxa Identifierhttp://rs.tdwg.org/dwc/terms/associatedTaxa - DefinitionA list (concatenated and separated) of identifiers or names of taxa and the associations of this Occurrence to each of them. - CommentsThis term can be used to provide a list of associations to Taxa other than the one defined in the Occurrence. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between Taxa, only between specific Occurrences of an Organism with other Taxa. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of identifiers or names of dwc:Taxon records and the associations of this dwc:Occurrence to each of them. + CommentsThis term can be used to provide a list of associations to dwc:Taxon records other than the one defined in the dwc:Occurrence. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between dwc:Taxon records, only between specific dwc:Occurrences of a dwc:Organism with other dwc:Taxon records. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples
    • "host":"Quercus alba"
    • "host":"gbif.org/species/2879737"
    • "parasitoid of":"Cyclocephala signaticollis" | "predator of":"Apis mellifera"
    @@ -646,7 +675,7 @@ This category contains terms that are generic in that they might apply to any ty otherCatalogNumbers Identifierhttp://rs.tdwg.org/dwc/terms/otherCatalogNumbers - DefinitionA list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection. + DefinitionA list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same dwc:Occurrence, whether in the current or any other data set or collection. CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples
    • FMNH:Mammal:1234
    • NPS YELLO6778 | MBG 33424
    @@ -659,7 +688,7 @@ This category contains terms that are generic in that they might apply to any ty occurrenceRemarks Identifierhttp://rs.tdwg.org/dwc/terms/occurrenceRemarks - DefinitionComments or notes about the Occurrence. + DefinitionComments or notes about the dwc:Occurrence. Comments Examplesfound dead on road @@ -682,7 +711,7 @@ This category contains terms that are generic in that they might apply to any ty Organism Class Identifierhttp://rs.tdwg.org/dwc/terms/Organism DefinitionA particular organism or defined group of organisms considered to be taxonomically homogeneous. - CommentsInstances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class. + CommentsInstances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose dwc:Occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class. ExamplesA specific bird. A specific wolf pack. A specific instance of a bacterial culture. @@ -695,7 +724,7 @@ This category contains terms that are generic in that they might apply to any ty organismID Identifierhttp://rs.tdwg.org/dwc/terms/organismID - DefinitionAn identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set. + DefinitionAn identifier for the dwc:Organism instance (as opposed to a particular digital record of the dwc:Organism). May be a globally unique identifier or an identifier specific to the data set. Comments Exampleshttp://arctos.database.museum/guid/WNMU:Mamm:1249 @@ -708,7 +737,7 @@ This category contains terms that are generic in that they might apply to any ty organismName Identifierhttp://rs.tdwg.org/dwc/terms/organismName - DefinitionA textual name or label assigned to an Organism instance. + DefinitionA textual name or label assigned to a dwc:Organism instance. Comments Examples
    • Huberta
    • Boab Prison Tree
    • J pod
    @@ -721,8 +750,8 @@ This category contains terms that are generic in that they might apply to any ty organismScope Identifierhttp://rs.tdwg.org/dwc/terms/organismScope - DefinitionA description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. - CommentsRecommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. + DefinitionA description of the kind of dwc:Organism instance. Can be used to indicate whether the dwc:Organism instance represents a discrete organism or if it represents a particular type of aggregation. + CommentsRecommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of dwc:Taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples
    • multicellular organism
    • virus
    • clone
    • pack
    • colony
    @@ -734,8 +763,8 @@ This category contains terms that are generic in that they might apply to any ty associatedOrganisms Identifierhttp://rs.tdwg.org/dwc/terms/associatedOrganisms - DefinitionA list (concatenated and separated) of identifiers of other Organisms and the associations of this Organism to each of them. - CommentsThis term can be used to provide a list of associations to other Organisms. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of identifiers of other dwc:Organisms and the associations of this dwc:Organism to each of them. + CommentsThis term can be used to provide a list of associations to other dwc:Organisms. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples @@ -747,7 +776,7 @@ This category contains terms that are generic in that they might apply to any ty previousIdentifications Identifierhttp://rs.tdwg.org/dwc/terms/previousIdentifications - DefinitionA list (concatenated and separated) of previous assignments of names to the Organism. + DefinitionA list (concatenated and separated) of previous assignments of names to the dwc:Organism. CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples
    • Chalepidae
    • Pinus abies
    • Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology
    @@ -760,7 +789,7 @@ This category contains terms that are generic in that they might apply to any ty organismRemarks Identifierhttp://rs.tdwg.org/dwc/terms/organismRemarks - DefinitionComments or notes about the Organism instance. + DefinitionComments or notes about the dwc:Organism instance. Comments ExamplesOne of a litter of six @@ -771,6 +800,7 @@ This category contains terms that are generic in that they might apply to any ty @@ -791,11 +821,24 @@ This category contains terms that are generic in that they might apply to any ty - +
    materialSampleID
    Identifierhttp://rs.tdwg.org/dwc/terms/materialSampleID
    DefinitionAn identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.
    DefinitionAn identifier for the dwc:MaterialSample (as opposed to a particular digital record of the dwc:MaterialSample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:materialSampleID globally unique.
    CommentsRecommended best practice is to use a persistent, globally unique identifier.
    Examples06809dc5-f143-459a-be1a-6f03e63fc083
    + + + + + + + + + +
    verbatimLabel
    Identifierhttp://rs.tdwg.org/dwc/terms/verbatimLabel
    DefinitionA serialized encoding intended to represent the literal, i.e., character by character, textual content of a label affixed on, near, or explicitly associated with a material entity, free from interpretation, translation, or transliteration.
    CommentsThe content of this term should include no embellishments, prefixes, headers or other additions made to the text. Abbreviations must not be expanded and supposed misspellings must not be corrected. Lines or breakpoints between blocks of text that could be verified by seeing the original labels or images of them may be used. Examples of material entities include preserved specimens, fossil specimens, and material samples. Best practice is to use UTF-8 for all characters. Best practice is to add comment “verbatimLabel derived from human transcription” in dwc:occurrenceRemarks.
    ExamplesExamples can be found at https://dwc.tdwg.org/examples/verbatimLabel.
    ## Event @@ -803,6 +846,7 @@ This category contains terms that are generic in that they might apply to any ty
    eventID parentEventID + eventType fieldNumber eventDate eventTime @@ -839,7 +883,7 @@ This category contains terms that are generic in that they might apply to any ty eventID Identifierhttp://rs.tdwg.org/dwc/terms/eventID - DefinitionAn identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set. + DefinitionAn 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. Comments ExamplesINBO:VIS:Ev:00009375 @@ -852,11 +896,24 @@ This category contains terms that are generic in that they might apply to any ty parentEventID Identifierhttp://rs.tdwg.org/dwc/terms/parentEventID - DefinitionAn identifier for the broader Event that groups this and potentially other Events. + DefinitionAn identifier for the broader dwc:Event that groups this and potentially other dwc:Events. CommentsUse a globally unique identifier for a dwc:Event or an identifier for a dwc:Event that is specific to the data set. ExamplesA1 (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - A1:1, A1:2). + + + + + + + + + +
    eventType
    Identifierhttp://rs.tdwg.org/dwc/terms/eventType
    DefinitionThe nature of the dwc:Event.
    CommentsRecommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.
    Examples
    • Sample
    • Observation
    • Site Visit
    • Biotic Interaction
    • Bioblitz
    • Expedition
    • Survey
    • Project
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • 1809-02-12 (some time during 12 February 1809)
    • 1906-06 (some time in June 1906)
    • 1971 (some time in the year 1971)
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    @@ -891,8 +948,8 @@ This category contains terms that are generic in that they might apply to any ty eventTime Identifierhttp://rs.tdwg.org/dwc/terms/eventTime - DefinitionThe time or interval during which an Event occurred. - CommentsRecommended best practice is to use a date that conforms to ISO 8601-1:2019. + DefinitionThe time or interval during which a dwc:Event occurred. + CommentsRecommended best practice is to use a time of day that conforms to ISO 8601-1:2019. Examples
    • 14:07-0600 (2:07pm in the time zone six hours earlier than UTC)
    • 08:40:21Z (8:40:21am UTC)
    • 13:00:00Z/15:30:00Z (the interval between 1pm UTC and 3:30pm UTC)
    @@ -904,7 +961,7 @@ This category contains terms that are generic in that they might apply to any ty startDayOfYear Identifierhttp://rs.tdwg.org/dwc/terms/startDayOfYear - DefinitionThe earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). + DefinitionThe earliest 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). Comments Examples
    • 1 (1 January)
    • 366 (31 December)
    • 365 (30 December in a leap year, 31 December in a non-leap year)
    @@ -917,7 +974,7 @@ This category contains terms that are generic in that they might apply to any ty endDayOfYear Identifierhttp://rs.tdwg.org/dwc/terms/endDayOfYear - DefinitionThe latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). + DefinitionThe 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). Comments Examples
    • 1 (1 January)
    • 32 (1 February)
    • 366 (31 December)
    • 365 (30 December in a leap year, 31 December in a non-leap year)
    @@ -930,7 +987,7 @@ This category contains terms that are generic in that they might apply to any ty year Identifierhttp://rs.tdwg.org/dwc/terms/year - DefinitionThe four-digit year in which the Event occurred, according to the Common Era Calendar. + DefinitionThe four-digit year in which the dwc:Event occurred, according to the Common Era Calendar. Comments Examples
    • 1160
    • 2008
    @@ -943,7 +1000,7 @@ This category contains terms that are generic in that they might apply to any ty month Identifierhttp://rs.tdwg.org/dwc/terms/month - DefinitionThe integer month in which the Event occurred. + DefinitionThe integer month in which the dwc:Event occurred. Comments Examples
    • 1 (January)
    • 10 (October)
    @@ -956,7 +1013,7 @@ This category contains terms that are generic in that they might apply to any ty day Identifierhttp://rs.tdwg.org/dwc/terms/day - DefinitionThe integer day of the month on which the Event occurred. + DefinitionThe integer day of the month on which the dwc:Event occurred. Comments Examples
    • 9
    • 28
    @@ -969,7 +1026,7 @@ This category contains terms that are generic in that they might apply to any ty verbatimEventDate Identifierhttp://rs.tdwg.org/dwc/terms/verbatimEventDate - DefinitionThe verbatim original representation of the date and time information for an Event. + DefinitionThe verbatim original representation of the date and time information for a dwc:Event. Comments Examples
    • spring 1910
    • Marzo 2002
    • 1999-03-XX
    • 17IV1934
    @@ -982,8 +1039,8 @@ This category contains terms that are generic in that they might apply to any ty habitat Identifierhttp://rs.tdwg.org/dwc/terms/habitat - DefinitionA category or description of the habitat in which the Event occurred. - Comments + DefinitionA category or description of the habitat in which the dwc:Event occurred. + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • oak savanna
    • pre-cordilleran steppe
    @@ -995,8 +1052,8 @@ This category contains terms that are generic in that they might apply to any ty samplingProtocol Identifierhttp://rs.tdwg.org/dwc/terms/samplingProtocol - DefinitionThe names of, references to, or descriptions of the methods or protocols used during an Event. - CommentsRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionThe names of, references to, or descriptions of the methods or protocols used during a dwc:Event. + CommentsRecommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples @@ -1008,8 +1065,8 @@ This category contains terms that are generic in that they might apply to any ty sampleSizeValue Identifierhttp://rs.tdwg.org/dwc/terms/sampleSizeValue - DefinitionA numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event. - CommentsA sampleSizeValue must have a corresponding sampleSizeUnit. + DefinitionA numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event. + CommentsA dwc:sampleSizeValue must have a corresponding dwc:sampleSizeUnit. Examples5 (sampleSizeValue) with metre (sampleSizeUnit) @@ -1021,8 +1078,8 @@ This category contains terms that are generic in that they might apply to any ty sampleSizeUnit Identifierhttp://rs.tdwg.org/dwc/terms/sampleSizeUnit - DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event. - CommentsA sampleSizeUnit must have a corresponding sampleSizeValue, e.g., 5 for sampleSizeValue with metre for sampleSizeUnit. + DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event. + CommentsA dwc:sampleSizeUnit must have a corresponding dwc:sampleSizeValue, e.g., 5 for dwc:sampleSizeValue with m for dwc:sampleSizeUnit. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • minute
    • hour
    • day
    • metre
    • square metre
    • cubic metre
    @@ -1034,7 +1091,7 @@ This category contains terms that are generic in that they might apply to any ty samplingEffort Identifierhttp://rs.tdwg.org/dwc/terms/samplingEffort - DefinitionThe amount of effort expended during an Event. + DefinitionThe amount of effort expended during a dwc:Event. Comments Examples
    • 40 trap-nights
    • 10 observer-hours
    • 10 km by foot
    • 30 km by car
    @@ -1047,8 +1104,8 @@ This category contains terms that are generic in that they might apply to any ty fieldNotes Identifierhttp://rs.tdwg.org/dwc/terms/fieldNotes - DefinitionOne 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 Event. - Comments + DefinitionOne 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. + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. ExamplesNotes available in the Grinnell-Miller Library. @@ -1060,7 +1117,7 @@ This category contains terms that are generic in that they might apply to any ty eventRemarks Identifierhttp://rs.tdwg.org/dwc/terms/eventRemarks - DefinitionComments or notes about the Event. + DefinitionComments or notes about the dwc:Event. Comments ExamplesAfter the recent rains the river is nearly at flood stage. @@ -1134,7 +1191,7 @@ This category contains terms that are generic in that they might apply to any ty locationID Identifierhttp://rs.tdwg.org/dwc/terms/locationID - DefinitionAn identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set. + DefinitionAn identifier for the set of dcterms:Location information. May be a global unique identifier or an identifier specific to the data set. Comments Exampleshttps://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1 @@ -1147,7 +1204,7 @@ This category contains terms that are generic in that they might apply to any ty higherGeographyID Identifierhttp://rs.tdwg.org/dwc/terms/higherGeographyID - DefinitionAn identifier for the geographic region within which the Location occurred. + DefinitionAn identifier for the geographic region within which the dcterms:Location occurred. CommentsRecommended best practice is to use a persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Exampleshttp://vocab.getty.edu/tgn/1002002 (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina). @@ -1160,9 +1217,9 @@ This category contains terms that are generic in that they might apply to any ty higherGeography Identifierhttp://rs.tdwg.org/dwc/terms/higherGeography - DefinitionA list (concatenated and separated) of geographic names less specific than the information captured in the locality term. + DefinitionA list (concatenated and separated) of geographic names less specific than the information captured in the dwc:locality term. CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from least specific to most specific. - Examples
    • North Atlantic Ocean
    • South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos with accompanying values South America (continent) Argentina (country), Neuquén (stateProvince), and Los Lagos (county)
    + Examples
    • North Atlantic Ocean
    • South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos with accompanying values South America (continent) Argentina (country), Neuquén (first order division), and Los Lagos (second order division)
    • Africa
    • Antarctica
    • Asia
    • Europe
    • North America
    • Oceania
    • South America
    @@ -1186,7 +1243,7 @@ This category contains terms that are generic in that they might apply to any ty waterBody Identifierhttp://rs.tdwg.org/dwc/terms/waterBody - DefinitionThe name of the water body in which the Location occurs. + DefinitionThe name of the water body in which the dcterms:Location occurs. CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Examples
    • Indian Ocean
    • Baltic Sea
    • Hudson River
    • Lago Nahuel Huapi
    @@ -1199,7 +1256,7 @@ This category contains terms that are generic in that they might apply to any ty islandGroup Identifierhttp://rs.tdwg.org/dwc/terms/islandGroup - DefinitionThe name of the island group in which the Location occurs. + DefinitionThe name of the island group in which the dcterms:Location occurs. CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Examples
    • Alexander Archipelago
    • Archipiélago Diego Ramírez
    • Seychelles
    @@ -1212,7 +1269,7 @@ This category contains terms that are generic in that they might apply to any ty island Identifierhttp://rs.tdwg.org/dwc/terms/island - DefinitionThe name of the island on or near which the Location occurs. + DefinitionThe name of the island on or near which the dcterms:Location occurs. CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Examples
    • Nosy Be
    • Bikini Atoll
    • Vancouver
    • Viti Levu
    • Zanzibar
    @@ -1225,8 +1282,8 @@ This category contains terms that are generic in that they might apply to any ty country Identifierhttp://rs.tdwg.org/dwc/terms/country - DefinitionThe name of the country or major administrative unit in which the Location occurs. - CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the Location spans multiple entities at this administrative level or if the Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term higherGeography or in the term locality, or both. + DefinitionThe name of the country or major administrative unit in which the dcterms:Location occurs. + CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples
    • Denmark
    • Colombia
    • España
    @@ -1238,8 +1295,8 @@ This category contains terms that are generic in that they might apply to any ty countryCode Identifierhttp://rs.tdwg.org/dwc/terms/countryCode - DefinitionThe standard code for the country in which the Location occurs. - CommentsRecommended best practice is to use an ISO 3166-1-alpha-2 country code. + DefinitionThe standard code for the country in which the dcterms:Location occurs. + CommentsRecommended best practice is to use an ISO 3166-1-alpha-2 country code. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples
    • AR
    • SV
    @@ -1251,8 +1308,8 @@ This category contains terms that are generic in that they might apply to any ty stateProvince Identifierhttp://rs.tdwg.org/dwc/terms/stateProvince - DefinitionThe name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs. - CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. + DefinitionThe name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the dcterms:Location occurs. + CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples
    • Montana
    • Minas Gerais
    • Córdoba
    @@ -1264,8 +1321,8 @@ This category contains terms that are generic in that they might apply to any ty county Identifierhttp://rs.tdwg.org/dwc/terms/county - DefinitionThe full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs. - CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. + DefinitionThe full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the dcterms:Location occurs. + CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples
    • Missoula
    • Los Lagos
    • Mataró
    @@ -1277,8 +1334,8 @@ This category contains terms that are generic in that they might apply to any ty municipality Identifierhttp://rs.tdwg.org/dwc/terms/municipality - DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location. - CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. + DefinitionThe full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the dcterms:Location occurs. Do not use this term for a nearby named place that does not contain the actual dcterms:Location. + CommentsRecommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both. Examples
    • Holzminden
    • Araçatuba
    • Ga-Segonyana
    @@ -1291,7 +1348,7 @@ This category contains terms that are generic in that they might apply to any ty locality Identifierhttp://rs.tdwg.org/dwc/terms/locality DefinitionThe specific description of the place. - CommentsLess specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description. + CommentsLess specific geographic information can be provided in other geographic terms (dwc:higherGeography, dwc:continent, dwc:country, dwc:stateProvince, dwc:county, dwc:municipality, dwc:waterBody, dwc:island, dwc:islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description. Examples
    • Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)
    • Queets Rainforest, Olympic National Park
    @@ -1356,7 +1413,7 @@ This category contains terms that are generic in that they might apply to any ty verticalDatum Identifierhttp://rs.tdwg.org/dwc/terms/verticalDatum DefinitionThe vertical datum used as the reference upon which the values in the elevation terms are based. - CommentsRecommended best practice is to use a controlled vocabulary. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • EGM84
    • EGM96
    • EGM2008
    • PGM2000A
    • PGM2004
    • PGM2006
    • PGM2007
    • epsg:7030
    • unknown
    @@ -1433,8 +1490,8 @@ This category contains terms that are generic in that they might apply to any ty locationAccordingTo Identifierhttp://rs.tdwg.org/dwc/terms/locationAccordingTo - DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals. - Comments + DefinitionInformation about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals. + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • Getty Thesaurus of Geographic Names
    • GADM
    @@ -1446,7 +1503,7 @@ This category contains terms that are generic in that they might apply to any ty locationRemarks Identifierhttp://rs.tdwg.org/dwc/terms/locationRemarks - DefinitionComments or notes about the Location. + DefinitionComments or notes about the dcterms:Location. Comments Examplesunder water since 2005 @@ -1459,7 +1516,7 @@ This category contains terms that are generic in that they might apply to any ty decimalLatitude Identifierhttp://rs.tdwg.org/dwc/terms/decimalLatitude - DefinitionThe geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive. + DefinitionThe 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. Comments Examples-41.0983423 @@ -1472,7 +1529,7 @@ This category contains terms that are generic in that they might apply to any ty decimalLongitude Identifierhttp://rs.tdwg.org/dwc/terms/decimalLongitude - DefinitionThe geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive. + DefinitionThe 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. Comments Examples-121.1761111 @@ -1485,8 +1542,8 @@ This category contains terms that are generic in that they might apply to any ty geodeticDatum Identifierhttp://rs.tdwg.org/dwc/terms/geodeticDatum - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. - CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude are based. + CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • EPSG:4326
    • WGS84
    • NAD27
    • Campo Inchauspe
    • European 1950
    • Clarke 1866
    • unknown
    @@ -1498,9 +1555,9 @@ This category contains terms that are generic in that they might apply to any ty coordinateUncertaintyInMeters Identifierhttp://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters - DefinitionThe horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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. + DefinitionThe 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. Comments - Examples
    • 30 (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • 100 (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system)
    + Examples
    • 30 (reasonable lower limit on or after 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • 100 (reasonable lower limit before 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time)
    • 71 (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system)
    • 0.00001 (normal GPS limit for decimal degrees)
    • 0.000278 (nearest second)
    • 0.01667 (nearest minute)
    • 1.0 (nearest degree)
    @@ -1524,7 +1581,7 @@ This category contains terms that are generic in that they might apply to any ty pointRadiusSpatialFit Identifierhttp://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit - DefinitionThe ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1. + DefinitionThe ratio of the area of the point-radius (dwc:decimalLatitude, dwc:decimalLongitude, dwc:coordinateUncertaintyInMeters) 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 point-radius does not completely contain the original representation. The dwc:pointRadiusSpatialFit 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:pointRadiusSpatialFit is 1. CommentsDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853). Examples
    • 0
    • 1
    • 1.5708
    @@ -1537,7 +1594,7 @@ This category contains terms that are generic in that they might apply to any ty verbatimCoordinates Identifierhttp://rs.tdwg.org/dwc/terms/verbatimCoordinates - DefinitionThe verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. + DefinitionThe verbatim original spatial coordinates of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem. Comments Examples
    • 41 05 54S 121 05 34W
    • 17T 630000 4833400
    @@ -1550,7 +1607,7 @@ This category contains terms that are generic in that they might apply to any ty verbatimLatitude Identifierhttp://rs.tdwg.org/dwc/terms/verbatimLatitude - DefinitionThe verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. + DefinitionThe verbatim original latitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem. Comments Examples41 05 54.03S @@ -1563,7 +1620,7 @@ This category contains terms that are generic in that they might apply to any ty verbatimLongitude Identifierhttp://rs.tdwg.org/dwc/terms/verbatimLongitude - DefinitionThe verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem. + DefinitionThe verbatim original longitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem. Comments Examples121d 10' 34" W @@ -1576,8 +1633,8 @@ This category contains terms that are generic in that they might apply to any ty verbatimCoordinateSystem Identifierhttp://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem - DefinitionThe coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. - CommentsRecommended best practice is to use a controlled vocabulary. + DefinitionThe coordinate format for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location. + CommentsRecommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • decimal degrees
    • degrees decimal minutes
    • degrees minutes seconds
    • UTM
    @@ -1589,8 +1646,8 @@ This category contains terms that are generic in that they might apply to any ty verbatimSRS Identifierhttp://rs.tdwg.org/dwc/terms/verbatimSRS - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. - CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based. + CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • unknown
    • EPSG:4326
    • WGS84
    • NAD27
    • Campo Inchauspe
    • European 1950
    • Clarke 1866
    @@ -1602,8 +1659,8 @@ This category contains terms that are generic in that they might apply to any ty footprintWKT Identifierhttp://rs.tdwg.org/dwc/terms/footprintWKT - DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other. - Comments + DefinitionA 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. + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. ExamplesPOLYGON ((10 20, 11 20, 11 21, 10 21, 10 20)) (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21) @@ -1615,8 +1672,8 @@ This category contains terms that are generic in that they might apply to any ty footprintSRS Identifierhttp://rs.tdwg.org/dwc/terms/footprintSRS - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based. - CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based. + CommentsRecommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the dwc:decimalLatitude and dwc:decimalLongitude, nor of any verbatim coordinates - use the dwc:geodeticDatum and dwc:verbatimSRS instead. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • epsg:4326
    • GEOGCS["GCS_WGS_1984", DATUM["D_WGS_1984", SPHEROID["WGS_1984",6378137,298.257223563]], PRIMEM["Greenwich",0], UNIT["Degree",0.0174532925199433]] (WKT for the standard WGS84 Spatial Reference System EPSG:4326)
    @@ -1628,7 +1685,7 @@ This category contains terms that are generic in that they might apply to any ty footprintSpatialFit Identifierhttp://rs.tdwg.org/dwc/terms/footprintSpatialFit - DefinitionThe ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1. + DefinitionThe 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. CommentsDetailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853). Examples
    • 0
    • 1
    • 1.5708
    @@ -1641,8 +1698,8 @@ This category contains terms that are generic in that they might apply to any ty georeferencedBy Identifierhttp://rs.tdwg.org/dwc/terms/georeferencedBy - DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the dcterms:Location. + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • Brad Millen (ROM)
    • Kristina Yamamoto | Janet Fang
    @@ -1654,7 +1711,7 @@ This category contains terms that are generic in that they might apply to any ty georeferencedDate Identifierhttp://rs.tdwg.org/dwc/terms/georeferencedDate - DefinitionThe date on which the Location was georeferenced. + DefinitionThe date on which the dcterms:Location was georeferenced. CommentsRecommended best practice is to use a date that conforms to ISO 8601-1:2019. Examples
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • 1809-02-12 (some time during 12 February 1809)
    • 1906-06 (some time in June 1906)
    • 1971 (some time in the year 1971)
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    @@ -1668,7 +1725,7 @@ This category contains terms that are generic in that they might apply to any ty georeferenceProtocol Identifierhttp://rs.tdwg.org/dwc/terms/georeferenceProtocol DefinitionA description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties. - Comments + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. ExamplesGeoreferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128) @@ -1680,8 +1737,8 @@ This category contains terms that are generic in that they might apply to any ty georeferenceSources Identifierhttp://rs.tdwg.org/dwc/terms/georeferenceSources - DefinitionA list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA 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. + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples @@ -1693,7 +1750,7 @@ This category contains terms that are generic in that they might apply to any ty georeferenceRemarks Identifierhttp://rs.tdwg.org/dwc/terms/georeferenceRemarks - DefinitionNotes or comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in georeferenceProtocol. + DefinitionNotes 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. Comments ExamplesAssumed distance by road (Hwy. 101) @@ -1741,7 +1798,7 @@ This category contains terms that are generic in that they might apply to any ty geologicalContextID Identifierhttp://rs.tdwg.org/dwc/terms/geologicalContextID - DefinitionAn identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set. + DefinitionAn 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. Comments Exampleshttps://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9 @@ -1988,7 +2045,7 @@ This category contains terms that are generic in that they might apply to any ty Identification Class Identifierhttp://rs.tdwg.org/dwc/terms/Identification - DefinitionA taxonomic determination (e.g., the assignment to a taxon). + DefinitionA taxonomic determination (e.g., the assignment to a dwc:Taxon). Comments ExamplesA subspecies determination of an organism. @@ -2002,7 +2059,7 @@ This category contains terms that are generic in that they might apply to any ty identificationID Identifierhttp://rs.tdwg.org/dwc/terms/identificationID - DefinitionAn identifier for the 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. + DefinitionAn 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. Comments Examples9992 @@ -2016,8 +2073,8 @@ This category contains terms that are generic in that they might apply to any ty verbatimIdentification Identifierhttp://rs.tdwg.org/dwc/terms/verbatimIdentification DefinitionA string representing the taxonomic identification as it appeared in the original record. - CommentsThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it. - Examples
    • Peromyscus sp.
    • Ministrymon sp. nov. 1
    • Anser anser X Branta canadensis
    • Pachyporidae?
    + CommentsThis term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to dwc:scientificName (and dwc:identificationQualifier etc.), not instead of it. + Examples
    • Peromyscus sp.
    • Ministrymon sp. nov. 1
    • Anser anser × Branta canadensis
    • Pachyporidae?
    • Potentilla × pantotricha Soják
    • Aconitum pilipes × A. variegatum
    • Lepomis auritus x cyanellus
    • aff. agrifolia var. oxyadenia (for Quercus aff. agrifolia var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank)
    • cf. var. oxyadenia (for Quercus agrifolia cf. var. oxyadenia with accompanying values Quercus in genus, agrifolia in specificEpithet, oxyadenia in infraspecificEpithet, and var. in taxonRank)
    @@ -2042,7 +2099,7 @@ This category contains terms that are generic in that they might apply to any ty typeStatus Identifierhttp://rs.tdwg.org/dwc/terms/typeStatus DefinitionA list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388
    • holotype of Pinus abies | holotype of Picea abies
    @@ -2054,8 +2111,8 @@ This category contains terms that are generic in that they might apply to any ty identifiedBy Identifierhttp://rs.tdwg.org/dwc/terms/identifiedBy - DefinitionA list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject. - CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). + DefinitionA list (concatenated and separated) of names of people, groups, or organizations who assigned the dwc:Taxon to the subject. + CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • James L. Patton
    • Theodore Pappenfuss | Robert Macey
    @@ -2067,7 +2124,7 @@ This category contains terms that are generic in that they might apply to any ty identifiedByID Identifierhttp://rs.tdwg.org/dwc/terms/identifiedByID - DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the Taxon to the subject. + DefinitionA list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the dwc:Taxon to the subject. CommentsRecommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples @@ -2080,7 +2137,7 @@ This category contains terms that are generic in that they might apply to any ty dateIdentified Identifierhttp://rs.tdwg.org/dwc/terms/dateIdentified - DefinitionThe date on which the subject was determined as representing the Taxon. + DefinitionThe date on which the subject was determined as representing the dwc:Taxon. CommentsRecommended best practice is to use a date that conforms to ISO 8601-1:2019. Examples
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • 1809-02-12 (some time during 12 February 1809)
    • 1906-06 (some time in June 1906)
    • 1971 (some time in the year 1971)
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    @@ -2093,7 +2150,7 @@ This category contains terms that are generic in that they might apply to any ty identificationReferences Identifierhttp://rs.tdwg.org/dwc/terms/identificationReferences - DefinitionA list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification. + DefinitionA list (concatenated and separated) of references (publication, global unique identifier, URI) used in the dwc:Identification. CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ). Examples
    • Aves del Noroeste Patagonico. Christie et al. 2004.
    • Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.
    @@ -2107,8 +2164,8 @@ This category contains terms that are generic in that they might apply to any ty identificationVerificationStatus Identifierhttp://rs.tdwg.org/dwc/terms/identificationVerificationStatus DefinitionA categorical indicator of the extent to which the taxonomic identification has been verified to be correct. - CommentsRecommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD. - Examples0 ("unverified" in HISPID/ABCD) + CommentsRecommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. + Examples0 ("unverified" in HISPID/ABCD). @@ -2213,7 +2273,7 @@ This category contains terms that are generic in that they might apply to any ty acceptedNameUsageID Identifierhttp://rs.tdwg.org/dwc/terms/acceptedNameUsageID DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon. - CommentsThis term should be used for synonyms or misapplied names to refer to the taxonID of a Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive. + CommentsThis term should be used for synonyms or misapplied names to refer to the dwc:taxonID of a dwc:Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive. Examples
    • tsn:41107 (ITIS)
    • urn:lsid:ipni.org:names:320035-2 (IPNI)
    • 2704179 (GBIF)
    • 6W3C4 (COL)
    @@ -2225,8 +2285,8 @@ This category contains terms that are generic in that they might apply to any ty parentNameUsageID Identifierhttp://rs.tdwg.org/dwc/terms/parentNameUsageID - DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName. - CommentsThis term should be used for accepted names to refer to the taxonID of a Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive. + DefinitionAn identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the dwc:scientificName. + CommentsThis term should be used for accepted names to refer to the dwc:taxonID of a dwc:Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive. Examples
    • tsn:41074 (ITIS)
    • urn:lsid:ipni.org:names:30001404-2 (IPNI)
    • 2704173 (GBIF)
    • 6T8N (COL)
    @@ -2238,8 +2298,8 @@ This category contains terms that are generic in that they might apply to any ty originalNameUsageID Identifierhttp://rs.tdwg.org/dwc/terms/originalNameUsageID - DefinitionAn identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. - CommentsThis term should be used to refer to the taxonID of a Taxon record that represents the usage of the terminal element of the scientificName as originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive. + DefinitionAn identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. + CommentsThis term should be used to refer to the dwc:taxonID of a dwc:Taxon record that represents the usage of the terminal element of the dwc:scientificName as originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive. Examples
    • tsn:41107 (ITIS)
    • urn:lsid:ipni.org:names:320035-2 (IPNI)
    • 2704179 (GBIF)
    • 6W3C4 (COL)
    @@ -2251,7 +2311,7 @@ This category contains terms that are generic in that they might apply to any ty nameAccordingToID Identifierhttp://rs.tdwg.org/dwc/terms/nameAccordingToID - DefinitionAn identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo. + DefinitionAn identifier for the source in which the specific taxon concept circumscription is defined or implied. See dwc:nameAccordingTo. Comments Exampleshttps://doi.org/10.1016/S0269-915X(97)80026-2 @@ -2264,8 +2324,8 @@ This category contains terms that are generic in that they might apply to any ty namePublishedInID Identifierhttp://rs.tdwg.org/dwc/terms/namePublishedInID - DefinitionAn identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. - Comments + DefinitionAn identifier for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. + CommentsA citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedInID should be empty. Examples @@ -2277,7 +2337,7 @@ This category contains terms that are generic in that they might apply to any ty taxonConceptID Identifierhttp://rs.tdwg.org/dwc/terms/taxonConceptID - DefinitionAn identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon. + DefinitionAn identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a dwc:Taxon. Comments Examples8fa58e08-08de-4ac1-b69c-1235340b7001 @@ -2290,9 +2350,9 @@ This category contains terms that are generic in that they might apply to any ty scientificName Identifierhttp://rs.tdwg.org/dwc/terms/scientificName - DefinitionThe 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. - CommentsThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified. - 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)
    + DefinitionThe full scientific name, with authorship and date information if known. When forming part of a dwc: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 dwc:identificationQualifier term. + CommentsThis term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified. Names should be compliant to the most recent nomenclatural code. For example, names of hybrids for algae, fungi and plants should follow the rules of the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H.1, H.2 and H.3). Thus, use the multiplication sign × (Unicode U+00D7, HTML ×) to identify a hybrid, not x or X, if possible. + 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)
    • ×Agropogon littoralis (Sm.) C. E. Hubb.
    • Mentha ×smithiana R. A. Graham
    • Agrostis stolonifera L. × Polypogon monspeliensis (L.) Desf.
    • Rubiaceae
    • Gruiformes
    • Testudinae
    @@ -2329,8 +2389,8 @@ This category contains terms that are generic in that they might apply to any ty originalNameUsage Identifierhttp://rs.tdwg.org/dwc/terms/originalNameUsage - DefinitionThe taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names. - CommentsThe full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks. + DefinitionThe taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated dwc:nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the dwc:scientificName or the senior/earlier homonym for replaced names. + CommentsThe full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks. Examples
    • Pinus abies
    • Gasterosteus saltatrix Linnaeus 1768
    @@ -2343,7 +2403,7 @@ This category contains terms that are generic in that they might apply to any ty nameAccordingTo Identifierhttp://rs.tdwg.org/dwc/terms/nameAccordingTo DefinitionThe 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. - CommentsThis term provides context to the scientificName. Together with the scientificName, separated by sensu or sec., it forms the taxon concept label, which may be seen as having the same relationship to taxonConceptID as, for example, acceptedNameUsage has to acceptedNameUsageID. When not provided, in Taxon Core data sets the nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most PreservedSpecimen data sets, the Identification, in which case there is no further context. + CommentsThis term provides context to the dwc:scientificName. Together with the dwc:scientificName, separated by sensu or sec., it forms the taxon concept label, which may be seen as having the same relationship to dwc:taxonConceptID as, for example, dwc:acceptedNameUsage has to dwc:acceptedNameUsageID. When not provided, in Taxon Core data sets the dwc:nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, dwc:nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most dwc:PreservedSpecimen data sets, the dwc:Identification, in which case there is no further context. ExamplesFranz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236. (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013)) @@ -2355,8 +2415,8 @@ This category contains terms that are generic in that they might apply to any ty namePublishedIn Identifierhttp://rs.tdwg.org/dwc/terms/namePublishedIn - DefinitionA reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode. - Comments + DefinitionA reference for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. + CommentsA citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedIn should be empty. Examples
    • Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388
    • Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886
    @@ -2368,7 +2428,7 @@ This category contains terms that are generic in that they might apply to any ty namePublishedInYear Identifierhttp://rs.tdwg.org/dwc/terms/namePublishedInYear - DefinitionThe four-digit year in which the scientificName was published. + DefinitionThe four-digit year in which the dwc:scientificName was published. Comments Examples
    • 1915
    • 2008
    @@ -2381,7 +2441,7 @@ This category contains terms that are generic in that they might apply to any ty higherClassification Identifierhttp://rs.tdwg.org/dwc/terms/higherClassification - DefinitionA list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record. + DefinitionA list (concatenated and separated) of taxa names terminating at the rank immediately superior to the referenced dwc:Taxon. CommentsRecommended best practice is to separate the values in a list with space vertical bar space ( | ), with terms in order from the highest taxonomic rank to the lowest. Examples
    • Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus
    • Animalia
    • Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys
    @@ -2394,7 +2454,7 @@ This category contains terms that are generic in that they might apply to any ty kingdom Identifierhttp://rs.tdwg.org/dwc/terms/kingdom - DefinitionThe full scientific name of the kingdom in which the taxon is classified. + DefinitionThe full scientific name of the kingdom in which the dwc:Taxon is classified. Comments Examples
    • Animalia
    • Archaea
    • Bacteria
    • Chromista
    • Fungi
    • Plantae
    • Protozoa
    • Viruses
    @@ -2407,7 +2467,7 @@ This category contains terms that are generic in that they might apply to any ty phylum Identifierhttp://rs.tdwg.org/dwc/terms/phylum - DefinitionThe full scientific name of the phylum or division in which the taxon is classified. + DefinitionThe full scientific name of the phylum or division in which the dwc:Taxon is classified. Comments Examples
    • Chordata (phylum)
    • Bryophyta (division)
    @@ -2420,7 +2480,7 @@ This category contains terms that are generic in that they might apply to any ty class Identifierhttp://rs.tdwg.org/dwc/terms/class - DefinitionThe full scientific name of the class in which the taxon is classified. + DefinitionThe full scientific name of the class in which the dwc:Taxon is classified. Comments Examples
    • Mammalia
    • Hepaticopsida
    @@ -2433,11 +2493,24 @@ This category contains terms that are generic in that they might apply to any ty order Identifierhttp://rs.tdwg.org/dwc/terms/order - DefinitionThe full scientific name of the order in which the taxon is classified. + DefinitionThe full scientific name of the order in which the dwc:Taxon is classified. Comments Examples
    • Carnivora
    • Monocleales
    + + + + + + + + + +
    superfamily
    Identifierhttp://rs.tdwg.org/dwc/terms/superfamily
    DefinitionThe full scientific name of the family in which the dwc:Taxon is classified.
    CommentsA taxonomic category subordinate to an order and superior to a family. According to ICZN article 29.2, the suffix -oidea is used for a superfamily name.
    Examples
    • Achatinoidea
    • Cerithioidea
    • Helicoidea
    • Hypsibioidea
    • Valvatoidea
    • Zonitoidea
    • Felidae
    • Monocleaceae
    @@ -2459,11 +2532,37 @@ This category contains terms that are generic in that they might apply to any ty subfamily Identifierhttp://rs.tdwg.org/dwc/terms/subfamily - DefinitionThe full scientific name of the subfamily in which the taxon is classified. + DefinitionThe full scientific name of the subfamily in which the dwc:Taxon is classified. Comments Examples
    • Periptyctinae
    • Orchidoideae
    • Sphindociinae
    + + + + + + + + + +
    tribe
    Identifierhttp://rs.tdwg.org/dwc/terms/tribe
    DefinitionThe full scientific name of the tribe in which the dwc:Taxon is classified.
    Comments
    Examples
    • Ortaliini
    • Arethuseae
    + + + + + + + + + +
    subtribe
    Identifierhttp://rs.tdwg.org/dwc/terms/subtribe
    DefinitionThe full scientific name of the subtribe in which the dwc:Taxon is classified.
    Comments
    Examples
    • Plotinini
    • Typhaeini
    • Puma
    • Monoclea
    @@ -2485,8 +2584,8 @@ This category contains terms that are generic in that they might apply to any ty genericName Identifierhttp://rs.tdwg.org/dwc/terms/genericName - DefinitionThe genus part of the scientificName without authorship. - CommentsFor synonyms the accepted genus and the genus part of the name may be different. The term genericName should be used together with specificEpithet to form a binomial and with infraspecificEpithet to form a trinomial. The term genericName should only be used for combinations. Uninomials of generic rank do not have a genericName. + DefinitionThe genus part of the dwc:scientificName without authorship. + CommentsFor synonyms the accepted genus and the genus part of the name may be different. The term dwc:genericName should be used together with dwc:specificEpithet to form a binomial and with dwc:infraspecificEpithet to form a trinomial. The term dwc:genericName should only be used for combinations. Uninomials of generic rank do not have a dwc:genericName. ExamplesFelis (for scientificName Felis concolor, with accompanying values of Puma concolor in acceptedNameUsage and Puma in genus) @@ -2498,7 +2597,7 @@ This category contains terms that are generic in that they might apply to any ty subgenus Identifierhttp://rs.tdwg.org/dwc/terms/subgenus - DefinitionThe full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion. + DefinitionThe full scientific name of the subgenus in which the dwc:Taxon is classified. Values should include the genus to avoid homonym confusion. Comments Examples
    • Strobus
    • Amerigo
    • Pilosella
    @@ -2512,7 +2611,7 @@ This category contains terms that are generic in that they might apply to any ty infragenericEpithet Identifierhttp://rs.tdwg.org/dwc/terms/infragenericEpithet DefinitionThe infrageneric part of a binomial name at ranks above species but below genus. - CommentsThe term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca). + CommentsThe term dwc:infragenericEpithet should be used in conjunction with dwc:genericName, dwc:specificEpithet, dwc:infraspecificEpithet, dwc:taxonRank and dwc:scientificNameAuthorship to represent the individual elements of the complete dwc:scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., Vicia sect. Cracca). Examples
    • Abacetillus (for scientificName Abacetus (Abacetillus) ambiguus)
    • Cracca (for scientificName Vicia sect. Cracca)
    @@ -2524,7 +2623,7 @@ This category contains terms that are generic in that they might apply to any ty specificEpithet Identifierhttp://rs.tdwg.org/dwc/terms/specificEpithet - DefinitionThe name of the first or species epithet of the scientificName. + DefinitionThe name of the first or species epithet of the dwc:scientificName. Comments Examples
    • concolor
    • gottschei
    @@ -2537,9 +2636,9 @@ This category contains terms that are generic in that they might apply to any ty infraspecificEpithet Identifierhttp://rs.tdwg.org/dwc/terms/infraspecificEpithet - DefinitionThe name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation. - CommentsIn botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string "Indigofera charlieriana subsp. sessilis var. scaberrima" is scaberrima and the scientificName is Indigophera charlieriana var. scaberrima. - Examples
    • concolor (for scientificName Puma concolor concolor)
    • oxyadenia (for scientificName Quercus agrifolia var. oxyadenia)
    • laxa (for scientificName Cheilanthes hirta f. laxa)
    • scaberrima (for scientificName Indigofera charlieriana var. scaberrima)
    + DefinitionThe name of the lowest or terminal infraspecific epithet of the dwc:scientificName, excluding any rank designation. + CommentsIn botany, name strings in literature and identifications may have multiple infraspecific ranks. According to the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles 6.7 & Art. 24.1), valid names only have two epithets, with the lowest rank being the dwc:infraspecificEpithet. For example: the dwc:infraspecificEpithet in the string Indigofera charlieriana subsp. sessilis var. scaberrima is scaberrima and the dwc:scientificName is Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett. Use dwc:verbatimIdentification for the full name string used in a dwc:Identification. + Examples
    • concolor (for scientificName Puma concolor concolor (Linnaeus, 1771))
    • oxyadenia (for scientificName Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell)
    • laxa (for scientificName Cheilanthes hirta f. laxa (Kunze) W.Jacobsen & N.Jacobsen)
    • scaberrima (for scientificName Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett)
    • King Edward (for scientificName Solanum tuberosum 'King Edward' and taxonRank cultivar)
    • Mishmiense (for scientificName Rhododendron boothii Mishmiense Group and taxonRank cultivar group)
    • Atlantis (for scientificName Paphiopedilum Atlantis grex and taxonRank grex)
    @@ -2563,9 +2662,9 @@ This category contains terms that are generic in that they might apply to any ty taxonRank Identifierhttp://rs.tdwg.org/dwc/terms/taxonRank - DefinitionThe taxonomic rank of the most specific name in the scientificName. - CommentsRecommended best practice is to use a controlled vocabulary. - Examples
    • subspecies
    • varietas
    • forma
    • species
    • genus
    + DefinitionThe taxonomic rank of the most specific name in the dwc:scientificName. + CommentsRecommended best practice is to use a controlled vocabulary. The taxon ranks of algae, fungi and plants are defined in the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H3.2, H4.4 and H.3.1). + Examples
    • subspecies
    • varietas
    • forma
    • species
    • genus
    • nothogenus
    • nothospecies
    • nothosubspecies
    • Agamospecies
    • sub-lesus
    • prole
    • apomict
    • nothogrex
    • sp.
    • subsp.
    • var.
    @@ -2589,7 +2688,7 @@ This category contains terms that are generic in that they might apply to any ty scientificNameAuthorship Identifierhttp://rs.tdwg.org/dwc/terms/scientificNameAuthorship - DefinitionThe authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode. + DefinitionThe authorship information for the dwc:scientificName formatted according to the conventions of the applicable dwc:nomenclaturalCode. Comments Examples
    • (Torr.) J.T. Howell
    • (Martinovský) Tzvelev
    • (Györfi, 1952)
    @@ -2615,7 +2714,7 @@ This category contains terms that are generic in that they might apply to any ty nomenclaturalCode Identifierhttp://rs.tdwg.org/dwc/terms/nomenclaturalCode - DefinitionThe nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. + DefinitionThe nomenclatural code (or codes in the case of an ambiregnal name) under which the dwc:scientificName is constructed. CommentsRecommended best practice is to use a controlled vocabulary. Examples
    • ICN
    • ICZN
    • BC
    • ICNCP
    • BioCode
    @@ -2628,7 +2727,7 @@ This category contains terms that are generic in that they might apply to any ty taxonomicStatus Identifierhttp://rs.tdwg.org/dwc/terms/taxonomicStatus - DefinitionThe status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. + DefinitionThe status of the use of the dwc:scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a dwc:Taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. CommentsRecommended best practice is to use a controlled vocabulary. Examples
    • invalid
    • misapplied
    • homotypic synonym
    • accepted
    @@ -2665,6 +2764,7 @@ This category contains terms that are generic in that they might apply to any ty
    measurementID + parentMeasurementID measurementType measurementValue measurementAccuracy @@ -2680,7 +2780,7 @@ This category contains terms that are generic in that they might apply to any ty MeasurementOrFact Class Identifierhttp://rs.tdwg.org/dwc/terms/MeasurementOrFact DefinitionA measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource). - CommentsResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon. + CommentsResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon. ExamplesThe weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius. @@ -2693,11 +2793,24 @@ This category contains terms that are generic in that they might apply to any ty measurementID Identifierhttp://rs.tdwg.org/dwc/terms/measurementID - DefinitionAn identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set. + DefinitionAn identifier for the dwc:MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set. Comments Examples9c752d22-b09a-11e8-96f8-529269fb1459 + + + + + + + + + +
    parentMeasurementID
    Identifierhttp://rs.tdwg.org/dwc/terms/parentMeasurementID
    DefinitionAn identifier for a broader dwc:MeasurementOrFact that groups this and potentially other dwc:MeasurementOrFacts.
    CommentsMay be a globally unique identifier or an identifier specific to the data set.
    Examples
    • 9c752d22-b09a-11e8-96f8-529269fb1459
    • E1_E1_O1_M1
    • tail length
    • temperature
    • trap line length
    • survey area
    • trap type
    @@ -2720,7 +2833,7 @@ This category contains terms that are generic in that they might apply to any ty measurementValue Identifierhttp://rs.tdwg.org/dwc/terms/measurementValue DefinitionThe value of the measurement, fact, characteristic, or assertion. - Comments + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • 45
    • 20
    • 1
    • 14.5
    • UV-light
    @@ -2732,7 +2845,7 @@ This category contains terms that are generic in that they might apply to any ty measurementAccuracy Identifierhttp://rs.tdwg.org/dwc/terms/measurementAccuracy - DefinitionThe description of the potential error associated with the measurementValue. + DefinitionThe description of the potential error associated with the dwc:measurementValue. Comments Examples
    • 0.01
    • normal distribution with variation of 2 m
    @@ -2745,9 +2858,9 @@ This category contains terms that are generic in that they might apply to any ty measurementUnit Identifierhttp://rs.tdwg.org/dwc/terms/measurementUnit - DefinitionThe units associated with the measurementValue. - CommentsRecommended best practice is to use the International System of Units (SI). - Examples
    • mm
    • C
    • km
    • ha
    + DefinitionThe units associated with the dwc:measurementValue. + CommentsRecommended best practice is to use the International System of Units (SI). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. + Examples
    • m
    • g
    • l
    • °C
    • mm
    • km²
    • %
    • hh:mm:ss
    • Rob Guralnick
    • Peter Desmet | Stijn Van Hoey
    @@ -2771,7 +2884,7 @@ This category contains terms that are generic in that they might apply to any ty measurementDeterminedDate Identifierhttp://rs.tdwg.org/dwc/terms/measurementDeterminedDate - DefinitionThe date on which the MeasurementOrFact was made. + DefinitionThe date on which the dwc:MeasurementOrFact was made. CommentsRecommended best practice is to use a date that conforms to ISO 8601-1:2019. Examples
    • 1963-03-08T14:07-0600 (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC)
    • 2009-02-20T08:40Z (20 February 2009 8:40am UTC)
    • 2018-08-29T15:19 (3:19pm local time on 29 August 2018)
    • 1809-02-12 (some time during 12 February 1809)
    • 1906-06 (some time in June 1906)
    • 1971 (some time in the year 1971)
    • 2007-03-01T13:00:00Z/2008-05-11T15:30:00Z (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC)
    • 1900/1909 (some time during the interval between the beginning of the year 1900 and the end of the year 1909)
    • 2007-11-13/15 (some time in the interval between 13 November 2007 and 15 November 2007)
    @@ -2785,7 +2898,7 @@ This category contains terms that are generic in that they might apply to any ty measurementMethod Identifierhttp://rs.tdwg.org/dwc/terms/measurementMethod DefinitionA description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion. - Comments + CommentsThis term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value. Examples
    • minimum convex polygon around burrow entrances (for a home range area)
    • barometric altimeter (for an elevation)
    @@ -2797,7 +2910,7 @@ This category contains terms that are generic in that they might apply to any ty measurementRemarks Identifierhttp://rs.tdwg.org/dwc/terms/measurementRemarks - DefinitionComments or notes accompanying the MeasurementOrFact. + DefinitionComments or notes accompanying the dwc:MeasurementOrFact. Comments Examplestip of tail missing @@ -2822,7 +2935,7 @@ This category contains terms that are generic in that they might apply to any ty ResourceRelationship Class Identifierhttp://rs.tdwg.org/dwc/terms/ResourceRelationship DefinitionA relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another. - CommentsResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon. + CommentsResources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon. ExamplesAn instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample. @@ -2835,7 +2948,7 @@ This category contains terms that are generic in that they might apply to any ty resourceRelationshipID Identifierhttp://rs.tdwg.org/dwc/terms/resourceRelationshipID - DefinitionAn identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object). + DefinitionAn identifier for an instance of relationship between one resource (the subject) and another (dwc:relatedResource, the object). Comments Examples04b16710-b09c-11e8-96f8-529269fb1459 @@ -2861,7 +2974,7 @@ This category contains terms that are generic in that they might apply to any ty relationshipOfResourceID Identifierhttp://rs.tdwg.org/dwc/terms/relationshipOfResourceID - DefinitionAn identifier for the relationship type (predicate) that connects the subject identified by resourceID to its object identified by relatedResourceID. + DefinitionAn identifier for the relationship type (predicate) that connects the subject identified by dwc:resourceID to its object identified by dwc:relatedResourceID. CommentsRecommended best practice is to use the identifiers of the terms in a controlled vocabulary, such as the OBO Relation Ontology. Examples @@ -2887,9 +3000,9 @@ This category contains terms that are generic in that they might apply to any ty relationshipOfResource Identifierhttp://rs.tdwg.org/dwc/terms/relationshipOfResource - DefinitionThe relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID). + DefinitionThe relationship of the subject (identified by dwc:resourceID) to the object (identified by dwc:relatedResourceID). CommentsRecommended best practice is to use a controlled vocabulary. - Examples
    • same as
    • duplicate of
    • mother of
    • offspring of
    • sibling of
    • parasite of
    • host of
    • valid synonym of
    • located within
    • pollinator of members of taxon
    • pollinated specific plant
    • pollinated by members of taxon
    + Examples
    • same as
    • duplicate of
    • mother of
    • offspring of
    • sibling of
    • parasite of
    • host of
    • valid synonym of
    • located within
    • pollinator of members of taxon
    • pollinated specific plant
    • pollinated by members of taxon
    • on slab with
    @@ -3020,7 +3136,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ identifiedBy Identifierhttp://rs.tdwg.org/dwc/iri/identifiedBy - DefinitionA person, group, or organization who assigned the Taxon to the subject. + DefinitionA person, group, or organization who assigned the dwc:Taxon to the subject. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3032,7 +3148,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ recordedBy Identifierhttp://rs.tdwg.org/dwc/iri/recordedBy - DefinitionA person, group, or organization responsible for recording the original Occurrence. + DefinitionA person, group, or organization responsible for recording the original dwc:Occurrence. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3068,7 +3184,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ georeferencedBy Identifierhttp://rs.tdwg.org/dwc/iri/georeferencedBy - DefinitionA person, group, or organization who determined the georeference (spatial representation) for the Location. + DefinitionA person, group, or organization who determined the georeference (spatial representation) for the dcterms:Location. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3080,11 +3196,23 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ behavior Identifierhttp://rs.tdwg.org/dwc/iri/behavior - DefinitionA description of the behavior shown by the subject at the time the Occurrence was recorded. + DefinitionA description of the behavior shown by the subject at the time the dwc:Occurrence was recorded. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples + + + + + + + + + +
    caste
    Identifierhttp://rs.tdwg.org/dwc/iri/caste
    DefinitionCategorisation of individuals for eusocial species (including some mammals and arthropods).
    CommentsRecommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Examples
    @@ -3104,7 +3232,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ degreeOfEstablishment Identifierhttp://rs.tdwg.org/dwc/iri/degreeOfEstablishment - DefinitionThe degree to which an Organism survives, reproduces, and expands its range at the given place and time. + DefinitionThe degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time. CommentsRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3116,7 +3244,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ disposition Identifierhttp://rs.tdwg.org/dwc/iri/disposition - DefinitionThe current state of a specimen with respect to the collection identified in collectionCode or collectionID. + DefinitionThe current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3140,11 +3268,23 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ establishmentMeans Identifierhttp://rs.tdwg.org/dwc/iri/establishmentMeans - DefinitionThe process by which the biological individual(s) represented in the Occurrence became established at the location. + DefinitionStatement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans. CommentsRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples + + + + + + + + + +
    eventType
    Identifierhttp://rs.tdwg.org/dwc/iri/eventType
    DefinitionThe nature of the dwc:Event.
    CommentsRecommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Examples
    @@ -3152,7 +3292,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ fieldNotes Identifierhttp://rs.tdwg.org/dwc/iri/fieldNotes - DefinitionOne 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 Event. + DefinitionOne 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. CommentsThe subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes. Examples @@ -3164,7 +3304,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ fieldNumber Identifierhttp://rs.tdwg.org/dwc/iri/fieldNumber - DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the Event. + DefinitionAn identifier given to the event in the field. Often serves as a link between field notes and the dwc:Event. CommentsThe subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance. Examples @@ -3176,7 +3316,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ footprintSRS Identifierhttp://rs.tdwg.org/dwc/iri/footprintSRS - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3188,7 +3328,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ footprintWKT Identifierhttp://rs.tdwg.org/dwc/iri/footprintWKT - DefinitionA Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other. + DefinitionA 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. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3212,7 +3352,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ geodeticDatum Identifierhttp://rs.tdwg.org/dwc/iri/geodeticDatum - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude is based. CommentsRecommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value unknown. Exampleshttps://epsg.io/4326 @@ -3236,7 +3376,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ georeferenceSources Identifierhttp://rs.tdwg.org/dwc/iri/georeferenceSources - DefinitionA map, gazetteer, or other resource used to georeference the Location. + DefinitionA map, gazetteer, or other resource used to georeference the dcterms:Location. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3248,7 +3388,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ georeferenceVerificationStatus Identifierhttp://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus - DefinitionA categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence. + DefinitionA 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. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3260,7 +3400,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ habitat Identifierhttp://rs.tdwg.org/dwc/iri/habitat - DefinitionA category or description of the habitat in which the Event occurred. + DefinitionA category or description of the habitat in which the dwc:Event occurred. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3272,7 +3412,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ identificationQualifier Identifierhttp://rs.tdwg.org/dwc/iri/identificationQualifier - DefinitionA controlled value to express the determiner's doubts about the Identification. + DefinitionA controlled value to express the determiner's doubts about the dwc:Identification. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3332,7 +3472,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ lifeStage Identifierhttp://rs.tdwg.org/dwc/iri/lifeStage - DefinitionThe age class or life stage of the Organism(s) at the time the Occurrence was recorded. + DefinitionThe age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3344,7 +3484,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ locationAccordingTo Identifierhttp://rs.tdwg.org/dwc/iri/locationAccordingTo - DefinitionInformation about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals. + DefinitionInformation about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3356,7 +3496,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ measurementDeterminedBy Identifierhttp://rs.tdwg.org/dwc/iri/measurementDeterminedBy - DefinitionA person, group, or organization who determined the value of the MeasurementOrFact. + DefinitionA person, group, or organization who determined the value of the dwc:MeasurementOrFact. CommentsTerms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3392,8 +3532,8 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ measurementUnit Identifierhttp://rs.tdwg.org/dwc/iri/measurementUnit - DefinitionThe units associated with the measurementValue. - CommentsRecommended best practice is to use the International System of Units (SI). + DefinitionThe units associated with the dwc:measurementValue. + CommentsRecommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI. Examples @@ -3416,7 +3556,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ occurrenceStatus Identifierhttp://rs.tdwg.org/dwc/iri/occurrenceStatus - DefinitionA statement about the presence or absence of a Taxon at a Location. + DefinitionA statement about the presence or absence of a dwc:Taxon at a dcterms:Location. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3440,7 +3580,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ pathway Identifierhttp://rs.tdwg.org/dwc/iri/pathway - DefinitionThe process by which an Organism came to be in a given place at a given time. + DefinitionThe process by which a dwc:Organism came to be in a given place at a given time. CommentsRecommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3464,7 +3604,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ recordNumber Identifierhttp://rs.tdwg.org/dwc/iri/recordNumber - DefinitionAn identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number. + DefinitionAn identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number. CommentsThe subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes. Examples @@ -3476,7 +3616,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ reproductiveCondition Identifierhttp://rs.tdwg.org/dwc/iri/reproductiveCondition - DefinitionThe reproductive condition of the biological individual(s) represented in the Occurrence. + DefinitionThe reproductive condition of the biological individual(s) represented in the dwc:Occurrence. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3488,8 +3628,8 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ sampleSizeUnit Identifierhttp://rs.tdwg.org/dwc/iri/sampleSizeUnit - DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event. - CommentsA sampleSizeUnit must have a corresponding sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI. + DefinitionThe unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event. + CommentsA dwciri:sampleSizeUnit must have a corresponding dwc:sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI. Examples @@ -3500,8 +3640,8 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ samplingProtocol Identifierhttp://rs.tdwg.org/dwc/iri/samplingProtocol - DefinitionThe methods or protocols used during an Event, denoted by an IRI. - CommentsRecommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the Occurrence. + DefinitionThe methods or protocols used during a dwc:Event, denoted by an IRI. + CommentsRecommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary dwc:Event in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the dwc:Occurrence. Exampleshttps://doi.org/10.1111/j.1466-8238.2009.00467.x @@ -3512,7 +3652,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ sex Identifierhttp://rs.tdwg.org/dwc/iri/sex - DefinitionThe sex of the biological individual(s) represented in the Occurrence. + DefinitionThe sex of the biological individual(s) represented in the dwc:Occurrence. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3536,7 +3676,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ verbatimCoordinateSystem Identifierhttp://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem - DefinitionThe spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. + DefinitionThe spatial coordinate system for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location. CommentsRecommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Examples @@ -3548,7 +3688,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ verbatimSRS Identifierhttp://rs.tdwg.org/dwc/iri/verbatimSRS - DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. + DefinitionThe ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based. CommentsRecommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary IRI for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary IRI for the name or code of the ellipsoid, if known. Examples @@ -3565,6 +3705,18 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ Examples + + + + + + + + + +
    vitality
    Identifierhttp://rs.tdwg.org/dwc/iri/vitality
    DefinitionAn indication of whether a dwc:Organism was alive or dead at the time of collection or observation.
    CommentsRecommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of PreservedSpecimen, MaterialSample, or HumanObservation. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.
    Examples
    ## LivingSpecimen @@ -3628,7 +3780,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ MaterialCitation Class Identifierhttp://rs.tdwg.org/dwc/terms/MaterialCitation DefinitionA reference to or citation of one, a part of, or multiple specimens in scholarly publications. - CommentsThis class constitutes a new value for the controlled vocabulary in the recommendations for basisOfRecord. When importing Darwin Core Archives of literature-based datasets to GBIF, the basisOfRecord should be changed from Occurrence, PreservedSpecimen or Literature to MaterialCitation. + CommentsThis class constitutes a new value for the controlled vocabulary in the recommendations for basisOfRecord. When importing Darwin Core Archives of literature-based datasets to GBIF, the basisOfRecord should be changed from “Occurrence”, "PreservedSpecimen" or "Literature" to “MaterialCitation”. ExamplesA citation of a physical specimen from a scientific collection in a taxonomic treatment in a scientific publication. A citation of a group of physical specimens, such as paratypes in a taxonomic treatment in a scientific publication. An occurrence mentioned in a field note book. @@ -3646,7 +3798,7 @@ For more information on `UseWithIRI`, see [Section 2.5 of the RDF Guide](https:/ Identifierhttp://rs.tdwg.org/dwc/terms/HumanObservation DefinitionAn output of a human observation process. Comments - ExamplesEvidence of an Occurrence taken from field notes or literature. A record of an Occurrence without physical evidence nor evidence captured with a machine. + ExamplesEvidence of an Occurrence taken from field notes or literature. A record of an Occurrence without physical evidence nor evidence captured with a machine. diff --git a/docs/xml/tdwg_dwc_extensions.xsd b/docs/xml/tdwg_dwc_extensions.xsd index 3929d33..9ac865b 100644 --- a/docs/xml/tdwg_dwc_extensions.xsd +++ b/docs/xml/tdwg_dwc_extensions.xsd @@ -1,6 +1,6 @@ + diff --git a/docs/xml/tdwg_dwc_simple.xsd b/docs/xml/tdwg_dwc_simple.xsd index dcc7b64..adf3829 100644 --- a/docs/xml/tdwg_dwc_simple.xsd +++ b/docs/xml/tdwg_dwc_simple.xsd @@ -1,6 +1,6 @@ + + @@ -95,9 +97,11 @@ + + @@ -210,8 +214,11 @@ + + + diff --git a/docs/xml/tdwg_dwcterms.xsd b/docs/xml/tdwg_dwcterms.xsd index ce7ba12..7ee3788 100644 --- a/docs/xml/tdwg_dwcterms.xsd +++ b/docs/xml/tdwg_dwcterms.xsd @@ -132,9 +132,11 @@ + + - + @@ -159,9 +161,11 @@ + + - + @@ -199,6 +203,7 @@ + @@ -206,6 +211,7 @@ + @@ -225,6 +231,7 @@ + @@ -251,7 +258,7 @@ - + @@ -296,7 +303,7 @@ - + @@ -431,8 +438,11 @@ + + + @@ -469,8 +479,11 @@ + + + @@ -493,6 +506,7 @@ + @@ -503,6 +517,7 @@ + diff --git a/vocabulary/term_versions.csv b/vocabulary/term_versions.csv index 4e9f122..f2efe14 100644 --- a/vocabulary/term_versions.csv +++ b/vocabulary/term_versions.csv @@ -1,902 +1,1122 @@ -iri,term_localName,label,definition,comments,examples,organized_in,issued,status,replaces,rdf_type,term_iri,abcd_equivalence,flags -http://dublincore.org/usage/terms/history/#type-006,type,Type,The nature or genre of the resource.,Must be populated with a value from the DCMI type vocabulary (http://dublincore.org/documents/2010/10/11/dcmi-type-vocabulary/).,`StillImage`; `MovingImage`; `Sound`; `PhysicalObject`; `Event`; `Text`,http://purl.org/dc/elements/1.1/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#typeT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/elements/1.1/type,not in ABCD,simple -http://dublincore.org/usage/terms/history/#modified-003,modified,Date Modified,The most recent date-time on which the resource was changed.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/modified,not in ABCD,simple -http://dublincore.org/usage/terms/history/#language-007,language,Language,A language of the resource.,Recommended best practice is to use a controlled vocabulary such as RFC 5646.,`en` (for English); `es` (for Spanish),http://purl.org/dc/elements/1.1/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#languageT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/elements/1.1/language,not in ABCD,simple -http://dublincore.org/usage/terms/history/#license-002,license,License,A legal document giving official permission to do something with the resource.,,`http://creativecommons.org/publicdomain/zero/1.0/legalcode`; `http://creativecommons.org/licenses/by/4.0/legalcode`,http://purl.org/dc/terms/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#rightsT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/license,not in ABCD,simple -http://dublincore.org/usage/terms/history/#rightsHolder-002,rightsHolder,Rights Holder,A person or organization owning or managing rights over the resource.,,`The Regents of the University of California`,http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/rightsHolder,not in ABCD,simple -http://dublincore.org/usage/terms/history/#accessRights-002,accessRights,Access Rights,Information about who can access the resource or an indication of its security status.,"Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.",`not-for-profit use only` (string literal example); `https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images` (URI example),http://purl.org/dc/terms/,2008-01-14,recommended,http://rs.tdwg.org/dwc/terms/version/AccessConstraints-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/accessRights,not in ABCD,simple -http://dublincore.org/usage/terms/history/#bibliographicCitation-002,bibliographicCitation,Bibliographic Citation,A bibliographic reference for the resource as a statement indicating how this record should be cited (attributed) when used.,"From Dublin Core, ""Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible."" The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - ""how to cite this record"". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - ""where to find the as-close-to-original reference, if one is available.","`Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal.` (Occurrence example); `https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone` (Taxon example); `Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2` (Event example)",http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/bibliographicCitation,not in ABCD,simple -http://dublincore.org/usage/terms/history/#references-003,references,References,"A related resource that is referenced, cited, or otherwise pointed to by the described resource.","From Dublin Core, ""This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By."" The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g., Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.",`http://arctos.database.museum/guid/MVZ:Mamm:165861` (MaterialSample example); `https://www.catalogueoflife.org/data/taxon/32664` (Taxon example),http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/references,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/institutionID-2017-10-06,institutionID,Institution ID,An identifier for the institution having custody of the object(s) or information referred to in the record.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).",`http://biocol.org/urn:lsid:biocol.org:col:34777`; `http://grbio.org/cool/km06-gtbn`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/institutionID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionID,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple -http://rs.tdwg.org/dwc/terms/version/collectionID-2017-10-06,collectionID,Collection ID,An identifier for the collection or dataset from which the record was derived.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).",`http://biocol.org/urn:lsid:biocol.org:col:1001`; `http://grbio.org/cool/p5fp-c036`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/collectionID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID,simple -http://rs.tdwg.org/dwc/terms/version/datasetID-2017-10-06,datasetID,Dataset ID,An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.,,`b15d4952-7d20-46f1-8a3e-556a512b04c5`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/datasetID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID,simple -http://rs.tdwg.org/dwc/terms/version/institutionCode-2017-10-06,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,,`MVZ`; `FMNH`; `CLO`; `UCMP`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple -http://rs.tdwg.org/dwc/terms/version/collectionCode-2017-10-06,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.",,`Mammals`; `Hildebrandt`; `EBIRD`; `VP`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID,simple -http://rs.tdwg.org/dwc/terms/version/datasetName-2017-10-06,datasetName,Dataset Name,The name identifying the data set from which the record was derived.,,`Grinnell Resurvey Mammals`; `Lacey Ctenomys Recaptures`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/datasetName-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetName,DataSets/DataSet/Units/Unit/SourceID,simple -http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2017-10-06,ownerInstitutionCode,Owner Institution Code,The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.,,`NPS`; `APN`; `InBio`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/ownerInstitutionCode,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2021-07-15,basisOfRecord,Basis of Record,The specific nature of the data record.,Recommended best practice is to use the standard label of one of the Darwin Core classes.,`PreservedSpecimen`; `FossilSpecimen`; `LivingSpecimen`; `MaterialSample`; `Event`; `HumanObservation`; `MachineObservation`; `Taxon`; `Occurrence`; `MaterialCitation`,http://rs.tdwg.org/dwc/terms/,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis,simple -http://rs.tdwg.org/dwc/terms/version/informationWithheld-2017-10-06,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.",,`location information not given for endangered species`; `collector identities withheld | ask about tissue samples`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/informationWithheld-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld,simple -http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06,dataGeneralizations,Data Generalizations,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.,,`Coordinates generalized from original GPS coordinates to the nearest half degree grid cell`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.",Recommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.,"`{""heightInMeters"":1.5}`; `{""tragusLengthInMeters"":0.014, ""weightInGrams"":120}`; `{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}`; `{""relativeHumidity"":28, ""airTemperatureInCelsius"":22, ""sampleSizeInKilograms"":10}`; `{""aspectHeading"":277, ""slopeInDegrees"":6}`; `{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}`",http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension -http://rs.tdwg.org/dwc/terms/version/occurrenceID-2017-10-06,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.",`http://arctos.database.museum/guid/MSB:Mamm:233627`; `000866d2-c177-4648-a200-ead4007051b9`; `urn:catalog:UWBM:Bird:89776`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID,simple -http://rs.tdwg.org/dwc/terms/version/catalogNumber-2017-10-06,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,,`145732`; `145732a`; `2008.1334`; `R-4313`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/catalogNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID,simple -http://rs.tdwg.org/dwc/terms/version/recordNumber-2017-10-06,recordNumber,Record Number,"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.",,`OPP 7101`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/recordNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber,simple -http://rs.tdwg.org/dwc/terms/version/recordedBy-2017-10-06,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`José E. Crespo`; `Oliver P. Pearson | Anita K. Pearson` (where the value in recordNumber `OPP 7101` corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson),http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/recordedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText,simple -http://rs.tdwg.org/dwc/terms/version/recordedByID-2021-07-15,recordedByID,Recorded By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original Occurrence.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space (` | `). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.",`https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people),http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedByID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/individualCount-2021-07-15,individualCount,Individual Count,The number of individuals present at the time of the Occurrence.,,`0`; `1`; `25`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/individualCount-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue,simple -http://rs.tdwg.org/dwc/terms/version/organismQuantity-2021-07-15,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,An organismQuantity must have a corresponding organismQuantityType.,`27` (organismQuantity) with `individuals` (organismQuantityType); `12.5` (organismQuantity) with `% biomass` (organismQuantityType); `r` (organismQuantity) with `Braun Blanquet Scale` (organismQuantityType); `many` (organismQuantity) with `individuals` (organismQuantityType),http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/organismQuantity-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2017-10-06,organismQuantityType,Organism Quantity Type,The type of quantification system used for the quantity of organisms.,A dwc:organismQuantityType must have a corresponding dwc:organismQuantity.,`27` (organismQuantity) with `individuals` (organismQuantityType); `12.5` (organismQuantity) with `% biomass` (organismQuantityType); `r` (organismQuantity) with `Braun Blanquet Scale` (organismQuantityType); `many` (organismQuantity) with `individuals` (organismQuantityType),http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantityType,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/sex-2017-10-06,sex,Sex,The sex of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary.,`female`; `male`; `hermaphrodite`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/sex-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex,simple -http://rs.tdwg.org/dwc/terms/version/lifeStage-2021-07-15,lifeStage,Life Stage,The age class or life stage of the Organism(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary.,`zygote`; `larva`; `juvenile`; `adult`; `seedling`; `flowering`; `fruiting`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/lifeStage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage,simple -http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2017-10-06,reproductiveCondition,Reproductive Condition,The reproductive condition of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary.,`non-reproductive`; `pregnant`; `in bloom`; `fruit-bearing`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/reproductiveCondition,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/behavior-2017-10-06,behavior,Behavior,The behavior shown by the subject at the time the Occurrence was recorded.,,`roosting`; `foraging`; `running`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/behavior-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/behavior,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2021-03-29,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084",`native`; `nativeReintroduced`; `introduced`; `introducedAssistedColonisation`; `vagrant`; `uncertain`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,recommended,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple -http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2021-03-29,degreeOfEstablishment,Degree of Establishment,"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084",`native`; `captive`; `cultivated`; `released`; `failing`; `casual`; `reproducing`; `established`; `colonising`; `invasive`; `widespreadInvasive`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,recommended,http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/degreeOfEstablishment,,simple -http://rs.tdwg.org/dwc/terms/version/pathway-2021-03-29,pathway,Pathway,The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084",`releasedForUse`; `otherEscape`; `transportContaminant`; `transportStowaway`; `corridor`; `unaided`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,recommended,http://rs.tdwg.org/dwc/terms/version/pathway-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pathway,,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2021-07-15,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.,Recommended best practice is to use a controlled vocabulary.,`unable to georeference`; `requires georeference`; `requires verification`; `verified by data custodian`; `verified by contributor`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple -http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2021-07-15,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location.,"For Occurrences, the default vocabulary is recommended to consist of `present` and `absent`, but can be extended by implementers with good justification.",`present`; `absent`,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/preparations-2017-10-06,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`fossil`; `cast`; `photograph`; `DNA extract`; `skin | skull | skeleton`; `whole animal (ETOH) | tissue (EDTA)`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/preparations-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText,simple -http://rs.tdwg.org/dwc/terms/version/disposition-2017-10-06,disposition,Disposition,The current state of a specimen with respect to the collection identified in collectionCode or collectionID.,Recommended best practice is to use a controlled vocabulary.,`in collection`; `missing`; `voucher elsewhere`; `duplicates elsewhere`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/disposition-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition,simple -http://rs.tdwg.org/dwc/terms/version/associatedMedia-2020-08-12,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.",,`https://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964`,http://rs.tdwg.org/dwc/terms/Occurrence,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects,simple -http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2021-07-15,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,"This term can be used to provide a list of associations to other Occurrences. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""parasite collected from"":""https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760""`; `""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139""`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,simple -http://rs.tdwg.org/dwc/terms/version/associatedReferences-2021-07-15,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to an Occurrence is to point to the definitive source representation of that Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to an Occurrence is to provide the preferred way to cite the Occurrence itself.","`http://www.sciencemag.org/cgi/content/abstract/322/5899/261`; `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`; `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences,simple -http://rs.tdwg.org/dwc/terms/version/associatedSequences-2017-10-06,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.",,`http://www.ncbi.nlm.nih.gov/nuccore/U34853.1`; `http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/associatedSequences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant,simple -http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2021-07-15,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and the associations of this Occurrence to each of them.,"This term can be used to provide a list of associations to Taxa other than the one defined in the Occurrence. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between Taxa, only between specific Occurrences of an Organism with other Taxa. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""host"":""Quercus alba""`; `""host"":""gbif.org/species/2879737""`; `""parasitoid of"":""Cyclocephala signaticollis"" | ""predator of"":""Apis mellifera""`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa,simple -http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2017-10-06,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`FMNH:Mammal:1234`; `NPS YELLO6778 | MBG 33424`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText,simple -http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2017-10-06,occurrenceRemarks,Occurrence Remarks,Comments or notes about the Occurrence.,,`found dead on road`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceRemarks,DataSets/DataSet/Units/Unit/Notes,simple -http://rs.tdwg.org/dwc/terms/version/Organism-2018-09-06,Organism,Organism,A particular organism or defined group of organisms considered to be taxonomically homogeneous.,"Instances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.",A specific bird. A specific wolf pack. A specific instance of a bacterial culture.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Organism-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Organism,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/organismID-2017-10-06,organismID,Organism ID,An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.,,`http://arctos.database.museum/guid/WNMU:Mamm:1249`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/organismID-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/organismName-2017-10-06,organismName,Organism Name,A textual name or label assigned to an Organism instance.,,`Huberta`; `Boab Prison Tree`; `J pod`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/organismName-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismName,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/organismScope-2017-10-06,organismScope,Organism Scope,A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation.,"Recommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.",`multicellular organism`; `virus`; `clone`; `pack`; `colony`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/organismScope-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismScope,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2021-07-15,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and the associations of this Organism to each of them.,"This term can be used to provide a list of associations to other Organisms. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""sibling of"":""http://arctos.database.museum/guid/DMNS:Mamm:14171""`; `""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196208"" | ""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196523"" | ""sibling of"":""http://arctos.database.museum/guid/MSB:Mamm:142638""`",http://rs.tdwg.org/dwc/terms/Organism,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2017-10-06,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Organism.,Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Chalepidae`; `Pinus abies`; `Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false,simple -http://rs.tdwg.org/dwc/terms/version/organismRemarks-2017-10-06,organismRemarks,Organism Remarks,Comments or notes about the Organism instance.,,`One of a litter of six`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/organismRemarks-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismRemarks,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/MaterialSample-2018-09-06,MaterialSample,Material Sample,"A physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit,extension -http://rs.tdwg.org/dwc/terms/version/materialSampleID-2020-10-28,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.",`06809dc5-f143-459a-be1a-6f03e63fc083`,http://rs.tdwg.org/dwc/terms/MaterialSample,2020-10-28,recommended,http://rs.tdwg.org/dwc/terms/version/materialSampleID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/Event-2018-09-06,Event,Event,An action that occurs at some location during some time.,,A specimen collection process. A camera trap image capture. A marine trawl.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Event-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering,extension -http://rs.tdwg.org/dwc/terms/version/eventID-2017-10-06,eventID,Event ID,An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.,,`INBO:VIS:Ev:00009375`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/eventID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventID,DataSets/DataSet/Units/Unit/Gathering/Code,simple -http://rs.tdwg.org/dwc/terms/version/parentEventID-2017-10-06,parentEventID,Parent Event ID,An identifier for the broader Event that groups this and potentially other Events.,Use a globally unique identifier for a dwc:Event or an identifier for a dwc:Event that is specific to the data set.,"`A1` (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - `A1:1`, `A1:2`).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/parentEventID-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentEventID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/fieldNumber-2017-10-06,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,,`RV Sol 87-03-08`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code,simple -http://rs.tdwg.org/dwc/terms/version/eventDate-2020-08-12,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.",Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/eventDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple -http://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12,eventTime,Event Time,The time or interval during which an Event occurred.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC); `08:40:21Z` (8:40:21am UTC); `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC),http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/eventTime-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple -http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20,startDayOfYear,Start Day Of Year,"The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January); `366` (31 December); `365` (30 December in a leap year, 31 December in a non-leap year)",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple -http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20,endDayOfYear,End Day Of Year,"The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January); `32` (1 February); `366` (31 December); `365` (30 December in a leap year, 31 December in a non-leap year)",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple -http://rs.tdwg.org/dwc/terms/version/year-2017-10-06,year,Year,"The four-digit year in which the Event occurred, according to the Common Era Calendar.",,`1160`; `2008`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/year-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple -http://rs.tdwg.org/dwc/terms/version/month-2020-08-12,month,Month,The integer month in which the Event occurred.,,`1` (January); `10` (October),http://rs.tdwg.org/dwc/terms/Event,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/month-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple -http://rs.tdwg.org/dwc/terms/version/day-2017-10-06,day,Day,The integer day of the month on which the Event occurred.,,`9`; `28`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/day-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple -http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2017-10-06,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for an Event.,,`spring 1910`; `Marzo 2002`; `1999-03-XX`; `17IV1934`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText,simple -http://rs.tdwg.org/dwc/terms/version/habitat-2017-10-06,habitat,Habitat,A category or description of the habitat in which the Event occurred.,,`oak savanna`; `pre-cordilleran steppe`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/habitat-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/habitat,DataSets/DataSet/Units/Unit/Gathering/Biotope/Text,simple -http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2021-07-15,samplingProtocol,Sampling Protocol,"The names of, references to, or descriptions of the methods or protocols used during an Event.","Recommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`UV light trap`; `mist net`; `bottom trawl`; `ad hoc observation | point count`; `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`; `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf`",http://rs.tdwg.org/dwc/terms/Event,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method,simple -http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2017-10-06,sampleSizeValue,Sample Size Value,"A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.",A sampleSizeValue must have a corresponding sampleSizeUnit.,`5` (sampleSizeValue) with `metre` (sampleSizeUnit),http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeValue,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2017-10-06,sampleSizeUnit,Sample Size Unit,"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., `5` for sampleSizeValue with `metre` for sampleSizeUnit.",`minute`; `hour`; `day`; `metre`; `square metre`; `cubic metre`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeUnit,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/samplingEffort-2017-10-06,samplingEffort,Sampling Effort,The amount of effort expended during an Event.,,`40 trap-nights`; `10 observer-hours`; `10 km by foot`; `30 km by car`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/samplingEffort-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingEffort,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/fieldNotes-2017-10-06,fieldNotes,Field Notes,"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 Event.",,`Notes available in the Grinnell-Miller Library.`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/fieldNotes-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes,simple -http://rs.tdwg.org/dwc/terms/version/eventRemarks-2017-10-06,eventRemarks,Event Remarks,Comments or notes about the Event.,,`After the recent rains the river is nearly at flood stage.`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/eventRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventRemarks,DataSets/DataSet/Units/Unit/Gathering/Notes,simple -http://dublincore.org/usage/terms/history/#Location-001,Location,Location,A spatial region or named place.,,"The municipality of San Carlos de Bariloche, Río Negro, Argentina. The place defined by a georeference.",http://purl.org/dc/terms/,2008-01-14,recommended,http://rs.tdwg.org/dwc/dwctype/version/Location-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://purl.org/dc/terms/Location,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/locationID-2017-10-06,locationID,Location ID,An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.,,`https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/locationID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2017-10-06,higherGeographyID,Higher Geography ID,An identifier for the geographic region within which the Location occurred.,Recommended best practice is to use a persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`http://vocab.getty.edu/tgn/1002002` (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina).",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeographyID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/higherGeography-2017-10-06,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from least specific to most specific.","`North Atlantic Ocean`; `South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos` with accompanying values `South America` (continent) `Argentina` (country), `Neuquén` (stateProvince), and `Los Lagos` (county)",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/higherGeography-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName},simple -http://rs.tdwg.org/dwc/terms/version/continent-2017-10-06,continent,Continent,The name of the continent in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Africa`; `Antarctica`; `Asia`; `Europe`; `North America`; `Oceania`; `South America`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/continent-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent,simple -http://rs.tdwg.org/dwc/terms/version/waterBody-2017-10-06,waterBody,Water Body,The name of the water body in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Indian Ocean`; `Baltic Sea`; `Hudson River`; `Lago Nahuel Huapi`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/waterBody-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/waterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body,simple -http://rs.tdwg.org/dwc/terms/version/islandGroup-2017-10-06,islandGroup,Island Group,The name of the island group in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Alexander Archipelago`; `Archipiélago Diego Ramírez`; `Seychelles`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/islandGroup-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/islandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group,simple -http://rs.tdwg.org/dwc/terms/version/island-2017-10-06,island,Island,The name of the island on or near which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Nosy Be`; `Bikini Atoll`; `Vancouver`; `Viti Levu`; `Zanzibar`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/island-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island,simple -http://rs.tdwg.org/dwc/terms/version/country-2021-07-15,country,Country,The name of the country or major administrative unit in which the Location occurs.,"Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the Location spans multiple entities at this administrative level or if the Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term higherGeography or in the term locality, or both.",`Denmark`; `Colombia`; `España`,http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/country-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name,simple -http://rs.tdwg.org/dwc/terms/version/countryCode-2017-10-06,countryCode,Country Code,The standard code for the country in which the Location occurs.,Recommended best practice is to use an ISO 3166-1-alpha-2 country code.,`AR`; `SV`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/countryCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/countryCode,DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code,simple -http://rs.tdwg.org/dwc/terms/version/stateProvince-2017-10-06,stateProvince,State Province,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Montana`; `Minas Gerais`; `Córdoba`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/stateProvince-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.),simple -http://rs.tdwg.org/dwc/terms/version/county-2017-10-06,county,County,"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Missoula`; `Los Lagos`; `Mataró`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/county-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/county,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County,simple -http://rs.tdwg.org/dwc/terms/version/municipality-2017-10-06,municipality,Municipality,"The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Holzminden`; `Araçatuba`; `Ga-Segonyana`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/municipality-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/municipality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple -http://rs.tdwg.org/dwc/terms/version/locality-2021-07-15,locality,Locality,The specific description of the place.,"Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.","`Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`; `Queets Rainforest, Olympic National Park`",http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/locality-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple -http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2021-07-15,verbatimLocality,Verbatim Locality,The original textual description of the place.,,`25 km NNE Bariloche por R. Nac. 237`,http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/LocalityText,simple -http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2017-10-06,minimumElevationInMeters,Minimum Elevation In Meters,"The lower limit of the range of elevation (altitude, usually above sea level), in meters.",,`-100`; `802`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue,simple -http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2017-10-06,maximumElevationInMeters,Maximum Elevation In Meters,"The upper limit of the range of elevation (altitude, usually above sea level), in meters.",,`-205`; `1236`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue,simple -http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2017-10-06,verbatimElevation,Verbatim Elevation,"The original description of the elevation (altitude, usually above sea level) of the Location.",,`100-200 m`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText,simple -http://rs.tdwg.org/dwc/terms/version/verticalDatum-2021-07-15,verticalDatum,Vertical Datum,The vertical datum used as the reference upon which the values in the elevation terms are based.,Recommended best practice is to use a controlled vocabulary.,`EGM84`; `EGM96`; `EGM2008`; `PGM2000A`; `PGM2004`; `PGM2006`; `PGM2007`; `epsg:7030`; `unknown`,http://purl.org/dc/terms/Location,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verticalDatum,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2017-10-06,minimumDepthInMeters,Minimum Depth In Meters,"The lesser depth of a range of depth below the local surface, in meters.",,`0`; `100`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue,simple -http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2017-10-06,maximumDepthInMeters,Maximum Depth In Meters,"The greater depth of a range of depth below the local surface, in meters.",,`0`; `200`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue,simple -http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2017-10-06,verbatimDepth,Verbatim Depth,The original description of the depth below the local surface.,,`100-200 m`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText,simple -http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2017-10-06,minimumDistanceAboveSurfaceInMeters,Minimum Distance Above Surface In Meters,"The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface); `4.2` (above the surface); For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue,simple -http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2017-10-06,maximumDistanceAboveSurfaceInMeters,Maximum Distance Above Surface In Meters,"The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface); `4.2` (above the surface); For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,simple -http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2017-10-06,locationAccordingTo,Location According To,"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.",,`Getty Thesaurus of Geographic Names`; `GADM`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAccordingTo,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/locationRemarks-2017-10-06,locationRemarks,Location Remarks,Comments or notes about the Location.,,`under water since 2005`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/locationRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail,simple -http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2017-10-06,decimalLatitude,Decimal Latitude,"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.",,`-41.0983423`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal,simple -http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2017-10-06,decimalLongitude,Decimal Longitude,"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.",,`-121.1761111`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal,simple -http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2017-10-06,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.",`EPSG:4326`; `WGS84`; `NAD27`; `Campo Inchauspe`; `European 1950`; `Clarke 1866`; `unknown`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum,simple -http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2021-07-15,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.",,`30` (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time); `100` (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time); `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system),http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple -http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2017-10-06,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.,,`0.00001` (normal GPS limit for decimal degrees); `0.000278` (nearest second); `0.01667` (nearest minute); `1.0` (nearest degree),http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement,simple -http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).",`0`; `1`; `1.5708`,http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple -http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2017-10-06,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,`41 05 54S 121 05 34W`; `17T 630000 4833400`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText},simple -http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2017-10-06,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,`41 05 54.03S`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude,simple -http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2017-10-06,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,"`121d 10' 34"" W`",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude,simple -http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20,verbatimCoordinateSystem,Verbatim Coordinate System,The coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,`decimal degrees`; `degrees decimal minutes`; `degrees minutes seconds`; `UTM`,http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple -http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2017-10-06,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.",`unknown`; `EPSG:4326`; `WGS84`; `NAD27`; `Campo Inchauspe`; `European 1950`; `Clarke 1866`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/footprintWKT-2017-10-06,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.",,"`POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))` (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21)",http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b),simple -http://rs.tdwg.org/dwc/terms/version/footprintSRS-2021-07-15,footprintSRS,Footprint SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead.","`epsg:4326`; `GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326)",http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).",`0`; `1`; `1.5708`,http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit,simple -http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2017-10-06,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`Brad Millen (ROM)`; `Kristina Yamamoto | Janet Fang`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2020-08-12,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://purl.org/dc/terms/Location,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)`",http://purl.org/dc/terms/Location,2020-08-20,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2020-10-28,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`https://www.geonames.org/`; `USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth`; `GeoLocate`,http://purl.org/dc/terms/Location,2020-10-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2017-10-06,georeferenceRemarks,Georeference Remarks,"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 georeferenceProtocol.",,`Assumed distance by road (Hwy. 101)`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks,simple -http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2018-09-06,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",,A lithostratigraphic layer.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy,extension -http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2017-10-06,geologicalContextID,Geological Context ID,"An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.",,`https://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geologicalContextID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2017-10-06,earliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.",,`Phanerozoic`; `Proterozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2017-10-06,latestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.",,`Phanerozoic`; `Proterozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2017-10-06,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,,`Cenozoic`; `Mesozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2017-10-06,latestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,,`Cenozoic`; `Mesozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2017-10-06,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,,`Neogene`; `Tertiary`; `Quaternary`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2017-10-06,latestPeriodOrHighestSystem,Latest Period Or Highest System,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.,,`Neogene`; `Tertiary`; `Quaternary`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2017-10-06,earliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,,`Holocene`; `Pleistocene`; `Ibexian Series`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2017-10-06,latestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,,`Holocene`; `Pleistocene`; `Ibexian Series`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2017-10-06,earliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,,`Atlantic`; `Boreal`; `Skullrockian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2017-10-06,latestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,,`Atlantic`; `Boreal`; `Skullrockian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2017-10-06,lowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,`Maastrichtian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2017-10-06,highestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,`Blancan`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2017-10-06,lithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,`Pleistocene-Weichselien`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms,simple -http://rs.tdwg.org/dwc/terms/version/group-2017-10-06,group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,`Bathurst`; `Lower Wealden`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/group-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/group,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/formation-2017-10-06,formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,,`Notch Peak Formation`; `House Limestone`; `Fillmore Formation`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/formation-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/formation,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/member-2017-10-06,member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,,`Lava Dam Member`; `Hellnmaria Member`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/member-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/member,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/bed-2017-10-06,bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,`Harlem coal`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/bed-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/bed,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/Identification-2018-09-06,Identification,Identification,"A taxonomic determination (e.g., the assignment to a taxon).",,A subspecies determination of an organism.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Identification-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification,extension -http://rs.tdwg.org/dwc/terms/version/identificationID-2017-10-06,identificationID,Identification ID,An identifier for the 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.,,`9992`,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identificationID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2021-07-15,verbatimIdentification,Verbatim Identification,A string representing the taxonomic identification as it appeared in the original record.,"This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to scientificName (and identificationQualifier etc.), not instead of it.",`Peromyscus sp.`; `Ministrymon sp. nov. 1`; `Anser anser X Branta canadensis`; `Pachyporidae?`,http://rs.tdwg.org/dwc/terms/Identification,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimIdentification,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2017-10-06,identificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to express the determiner's doubts about the Identification.",,"`aff. agrifolia var. oxyadenia` (for `Quercus aff. agrifolia var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank); `cf. var. oxyadenia` (for `Quercus agrifolia cf. var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank)",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier,simple -http://rs.tdwg.org/dwc/terms/version/typeStatus-2017-10-06,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`; `holotype of Pinus abies | holotype of Picea abies`",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/typeStatus-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText,simple -http://rs.tdwg.org/dwc/terms/version/identifiedBy-2017-10-06,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`James L. Patton`; `Theodore Pappenfuss | Robert Macey`,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText,simple -http://rs.tdwg.org/dwc/terms/version/identifiedByID-2021-07-15,identifiedByID,Identified By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the Taxon to the subject.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).",`https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people),http://rs.tdwg.org/dwc/terms/Identification,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedByID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/dateIdentified-2020-08-12,dateIdentified,Date Identified,The date on which the subject was determined as representing the Taxon.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/Identification,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText,simple -http://rs.tdwg.org/dwc/terms/version/identificationReferences-2017-10-06,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Aves del Noroeste Patagonico. Christie et al. 2004.`; `Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.`",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identificationReferences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References,simple -http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2017-10-06,identificationVerificationStatus,Identification Verification Status,A categorical indicator of the extent to which the taxonomic identification has been verified to be correct.,Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.,"`0` (""unverified"" in HISPID/ABCD)",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationVerificationStatus,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2017-10-06,identificationRemarks,Identification Remarks,Comments or notes about the Identification.,,`Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.`,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationRemarks,DataSets/DataSet/Units/Unit/Identifications/Identification/Notes,simple -http://rs.tdwg.org/dwc/terms/version/Taxon-2018-09-06,Taxon,Taxon,A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.,,The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Taxon-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/taxonID-2017-10-06,taxonID,Taxon ID,An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`; `32567`; `https://www.gbif.org/species/212`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/scientificNameID-2017-10-06,scientificNameID,Scientific Name ID,An identifier for the nomenclatural (not taxonomic) details of a scientific name.,,`urn:lsid:ipni.org:names:37829-1:1.3`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2021-07-15,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,This term should be used for synonyms or misapplied names to refer to the taxonID of a Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.,`tsn:41107` (ITIS); `urn:lsid:ipni.org:names:320035-2` (IPNI); `2704179` (GBIF); `6W3C4` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2021-07-15,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",This term should be used for accepted names to refer to the taxonID of a Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.,`tsn:41074` (ITIS); `urn:lsid:ipni.org:names:30001404-2` (IPNI); `2704173` (GBIF); `6T8N` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2021-07-15,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,"This term should be used to refer to the taxonID of a Taxon record that represents the usage of the terminal element of the scientificName as originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.",`tsn:41107` (ITIS); `urn:lsid:ipni.org:names:320035-2` (IPNI); `2704179` (GBIF); `6W3C4` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2017-10-06,nameAccordingToID,Name According To ID,An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.,,`https://doi.org/10.1016/S0269-915X(97)80026-2`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingToID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2020-08-12,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,,http://rs.tdwg.org/dwc/terms/Taxon,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2017-10-06,taxonConceptID,Taxon Concept ID,An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/scientificName-2021-07-15,scientificName,Scientific Name,"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.","This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified.","`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)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/scientificName-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString,simple -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2021-07-15,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.","The full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided scientificName is considered by the reference indicated in the accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to an Organism or Occurrence, this term should be used in cases where a content provider regards the provided scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed organism), and the name asserted by the content provider to be taxonomically accepted.",`Tamias minimus` (valid name for `Eutamias minimus`),http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2017-10-06,parentNameUsage,Parent Name Usage,"The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",,`Rubiaceae`; `Gruiformes`; `Testudinae`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsage,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName,simple -http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2021-07-15,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.","The full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.",`Pinus abies`; `Gasterosteus saltatrix Linnaeus 1768`,http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2021-07-15,nameAccordingTo,Name According To,"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.","This term provides context to the scientificName. Together with the scientificName, separated by `sensu` or `sec.`, it forms the taxon concept label, which may be seen as having the same relationship to taxonConceptID as, for example, acceptedNameUsage has to acceptedNameUsageID. When not provided, in Taxon Core data sets the nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most PreservedSpecimen data sets, the Identification, in which case there is no further context.","`Franz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236.` (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013))",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2017-10-06,namePublishedIn,Name Published In,A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,"`Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`; `Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation,simple -http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2017-10-06,namePublishedInYear,Name Published In Year,The four-digit year in which the scientificName was published.,,`1915`; `2008`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInYear,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/higherClassification-2017-10-06,higherClassification,Higher Classification,A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from the highest taxonomic rank to the lowest.",`Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus`; `Animalia`; `Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/higherClassification-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/kingdom-2017-10-06,kingdom,Kingdom,The full scientific name of the kingdom in which the taxon is classified.,,`Animalia`; `Archaea`; `Bacteria`; `Chromista`; `Fungi`; `Plantae`; `Protozoa`; `Viruses`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/kingdom-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum,simple -http://rs.tdwg.org/dwc/terms/version/phylum-2017-10-06,phylum,Phylum,The full scientific name of the phylum or division in which the taxon is classified.,,`Chordata` (phylum); `Bryophyta` (division),http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/phylum-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum,simple -http://rs.tdwg.org/dwc/terms/version/class-2017-10-06,class,Class,The full scientific name of the class in which the taxon is classified.,,`Mammalia`; `Hepaticopsida`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/class-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis,simple -http://rs.tdwg.org/dwc/terms/version/order-2017-10-06,order,Order,The full scientific name of the order in which the taxon is classified.,,`Carnivora`; `Monocleales`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/order-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo,simple -http://rs.tdwg.org/dwc/terms/version/family-2017-10-06,family,Family,The full scientific name of the family in which the taxon is classified.,,`Felidae`; `Monocleaceae`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/family-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia,simple -http://rs.tdwg.org/dwc/terms/version/subfamily-2021-07-15,subfamily,Subfamily,The full scientific name of the subfamily in which the taxon is classified.,,`Periptyctinae`; `Orchidoideae`; `Sphindociinae`,http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subfamily,"DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName if DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonRank == ""subfamilia""",simple -http://rs.tdwg.org/dwc/terms/version/genus-2017-10-06,genus,Genus,The full scientific name of the genus in which the taxon is classified.,,`Puma`; `Monoclea`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/genus-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial},simple -http://rs.tdwg.org/dwc/terms/version/genericName-2021-07-15,genericName,Generic Name,The genus part of the scientificName without authorship.,For synonyms the accepted genus and the genus part of the name may be different. The term genericName should be used together with specificEpithet to form a binomial and with infraspecificEpithet to form a trinomial. The term genericName should only be used for combinations. Uninomials of generic rank do not have a genericName.,"`Felis` (for scientificName `Felis concolor`, with accompanying values of `Puma concolor` in acceptedNameUsage and `Puma` in genus)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genericName,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/subgenus-2017-10-06,subgenus,Subgenus,The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.,,`Strobus`; `Amerigo`; `Pilosella`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/subgenus-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus,simple -http://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2021-07-15,infragenericEpithet,Infrageneric Epithet,The infrageneric part of a binomial name at ranks above species but below genus.,"The term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., `Vicia sect. Cracca`).","`Abacetillus` (for scientificName `Abacetus (Abacetillus) ambiguus`); `Cracca` (for scientificName `Vicia sect. Cracca`)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infragenericEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Bacterial/Subgenus (for bacterial names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus (for zoological names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet (for botanical names),simple -http://rs.tdwg.org/dwc/terms/version/specificEpithet-2017-10-06,specificEpithet,Specific Epithet,The name of the first or species epithet of the scientificName.,,`concolor`; `gottschei`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/specificEpithet-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet},simple -http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2021-07-15,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.","In botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string ""Indigofera charlieriana subsp. sessilis var. scaberrima"" is `scaberrima` and the scientificName is `Indigophera charlieriana var. scaberrima`.","`concolor` (for scientificName `Puma concolor concolor`); `oxyadenia` (for scientificName `Quercus agrifolia var. oxyadenia`); `laxa` (for scientificName `Cheilanthes hirta f. laxa`); `scaberrima` (for scientificName `Indigofera charlieriana var. scaberrima`)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet,simple -http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2021-07-15,cultivarEpithet,Cultivar Epithet,"Part of the name of a cultivar, cultivar group or grex that follows the scientific name.","According to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the cultivarEpithet should exclude any quotes. The term taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in scientificName as well.","`King Edward` (for scientificName `Solanum tuberosum 'King Edward'` and taxonRank `cultivar`); `Mishmiense` (for scientificName `Rhododendron boothii Mishmiense Group` and taxonRank `cultivar group`); `Atlantis` (for scientificName `Paphiopedilum Atlantis grex` and taxonRank `grex`)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/cultivarEpithet,http://rs.tdwg.org/abcd/terms/cultivarName or http://rs.tdwg.org/abcd/terms/cultivarGroupName or http://rs.tdwg.org/abcd/terms/breed (ABCD 3.0),simple -http://rs.tdwg.org/dwc/terms/version/taxonRank-2017-10-06,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName.,Recommended best practice is to use a controlled vocabulary.,`subspecies`; `varietas`; `forma`; `species`; `genus`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank,simple -http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2017-10-06,verbatimTaxonRank,Verbatim Taxon Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,,`Agamospecies`; `sub-lesus`; `prole`; `apomict`; `nothogrex`; `sp.`; `subsp.`; `var.`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimTaxonRank,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2017-10-06,scientificNameAuthorship,Scientific Name Authorship,The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.,,"`(Torr.) J.T. Howell`; `(Martinovský) Tzvelev`; `(Györfi, 1952)`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameAuthorship,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear},simple -http://rs.tdwg.org/dwc/terms/version/vernacularName-2017-10-06,vernacularName,Vernacular Name,A common or vernacular name.,,`Andean Condor`; `Condor Andino`; `American Eagle`; `Gänsegeier`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/vernacularName-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vernacularName,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2017-10-06,nomenclaturalCode,Nomenclatural Code,The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed.,Recommended best practice is to use a controlled vocabulary.,`ICN`; `ICZN`; `BC`; `ICNCP`; `BioCode`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code,simple -http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2017-10-06,taxonomicStatus,Taxonomic Status,"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.",Recommended best practice is to use a controlled vocabulary.,`invalid`; `misapplied`; `homotypic synonym`; `accepted`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonomicStatus,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2017-10-06,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,,`nom. ambig.`; `nom. illeg.`; `nom. subnud.`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte,simple -http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2017-10-06,taxonRemarks,Taxon Remarks,Comments or notes about the taxon or name.,,`this name is a misspelling in common use`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2018-09-06,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",The weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts,extension -http://rs.tdwg.org/dwc/terms/version/measurementID-2018-09-06,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,`9c752d22-b09a-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/measurementType-2018-09-06,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary.,`tail length`; `temperature`; `trap line length`; `survey area`; `trap type`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementType-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter,extension -http://rs.tdwg.org/dwc/terms/version/measurementValue-2018-09-06,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.",,`45`; `20`; `1`; `14.5`; `UV-light`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementValue-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,extension -http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2018-09-06,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,,`0.01`; `normal distribution with variation of 2 m`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy,extension -http://rs.tdwg.org/dwc/terms/version/measurementUnit-2018-09-06,measurementUnit,Measurement Unit,The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,`mm`; `C`; `km`; `ha`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementUnit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement,extension -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2018-09-06,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`Rob Guralnick`; `Peter Desmet | Stijn Van Hoey`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy,extension -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2020-08-12,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime,extension -http://rs.tdwg.org/dwc/terms/version/measurementMethod-2018-09-06,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.",,`minimum convex polygon around burrow entrances` (for a home range area); `barometric altimeter` (for an elevation),http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementMethod-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method,extension -http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2018-09-06,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,,`tip of tail missing`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2018-09-06,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",An instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations,extension -http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2018-09-06,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,`04b16710-b09c-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/resourceID-2018-09-06,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,`f809b9e0-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/resourceID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2021-07-15,relationshipOfResourceID,Relationship Of Resource ID,An identifier for the relationship type (predicate) that connects the subject identified by resourceID to its object identified by relatedResourceID.,"Recommended best practice is to use the identifiers of the terms in a controlled vocabulary, such as the OBO Relation Ontology.","`http://purl.obolibrary.org/obo/RO_0002456` (for the relation `pollinated by`); `http://purl.obolibrary.org/obo/RO_0002455` (for the relation `pollinates`); `https://www.inaturalist.org/observation_fields/879` (for the relation `eaten by`)",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResourceID,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2018-09-06,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,`dc609808-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,extension -http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2021-07-15,relationshipOfResource,Relationship Of Resource,The relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID).,Recommended best practice is to use a controlled vocabulary.,`same as`; `duplicate of`; `mother of`; `offspring of`; `sibling of`; `parasite of`; `host of`; `valid synonym of`; `located within`; `pollinator of members of taxon`; `pollinated specific plant`; `pollinated by members of taxon`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType,extension -http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2018-09-06,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.",,`Julie Woodruff`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2020-08-12,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/ResourceRelationship,2020-08-12,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2018-09-06,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,,`mother and offspring collected from the same nest`; `pollinator captured in the act`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments,extension -http://dublincore.org/usage/terms/history/#languageT-001,language,Language,A language of the resource.,Recommended best practice is to use an IRI from the Library of Congress ISO 639-2 scheme http://id.loc.gov/vocabulary/iso639-2,,http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/language,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/inDescribedPlace-2015-03-27,inDescribedPlace,In Described Place,Use to link a dcterms:Location instance subject to the lowest level standardized hierarchically-described resource.,"Recommended best practice is to use an IRI from a controlled registry. A ""convenience property"" that replaces Darwin Core literal-value terms related to locations. See Section 2.7.5 of the Darwin Core RDF Guide for details.",`http://vocab.getty.edu/tgn/1019987`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inDescribedPlace,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/identifiedBy-2015-03-27,identifiedBy,Identified By (IRI),"A person, group, or organization who assigned the Taxon to the subject.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identifiedBy,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/recordedBy-2015-03-27,recordedBy,Recorded By (IRI),"A person, group, or organization responsible for recording the original Occurrence.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordedBy,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/toTaxon-2015-03-27,toTaxon,To Taxon,"Use to link a dwc:Identification instance subject to a taxonomic entity such as a taxon, taxon concept, or taxon name use.","A ""convenience property"" that replaces Darwin Core literal-value terms related to taxonomic entities. See Section 2.7.4 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/toTaxon,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/inCollection-2015-03-27,inCollection,In Collection,Use to link any subject resource that is part of a collection to the collection containing the resource.,"Recommended best practice is to use an IRI from a controlled registry. A ""convenience property"" that replaces literal-value terms related to collections and institutions. See Section 2.7.3 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inCollection,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/georeferencedBy-2015-03-27,georeferencedBy,Georeferenced By (IRI),"A person, group, or organization who determined the georeference (spatial representation) for the Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferencedBy,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/behavior-2015-03-27,behavior,Behavior (IRI),A description of the behavior shown by the subject at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/behavior,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/dataGeneralizations-2015-03-27,dataGeneralizations,Data Generalizations (IRI),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.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/dataGeneralizations,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2021-03-29,degreeOfEstablishment,Degree of Establishment (IRI),"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcdoe/values/d003`; `http://rs.tdwg.org/dwcdoe/values/d005`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,recommended,http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/degreeOfEstablishment,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/disposition-2015-03-27,disposition,Disposition (IRI),The current state of a specimen with respect to the collection identified in collectionCode or collectionID.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/disposition,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/earliestGeochronologicalEra-2015-03-27,earliestGeochronologicalEra,Earliest Geochronological Era,Use to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the earliest possible geological time period from which the cataloged item was collected.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/earliestGeochronologicalEra,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2021-03-29,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcem/values/e001`; `http://rs.tdwg.org/dwcem/values/e005`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,recommended,http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/fieldNotes-2015-03-27,fieldNotes,Field Notes (IRI),"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 Event.",The subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNotes,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/fieldNumber-2015-03-27,fieldNumber,Field Number (IRI),An identifier given to the event in the field. Often serves as a link between field notes and the Event.,The subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNumber,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/footprintSRS-2021-07-15,footprintSRS,Footprint SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,http://rs.tdwg.org/dwc/iri/version/footprintSRS-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintSRS,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/footprintWKT-2015-03-27,footprintWKT,Footprint WKT (IRI),"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintWKT,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/fromLithostratigraphicUnit-2015-03-27,fromLithostratigraphicUnit,From Lithostratigraphic Unit,Use to link a dwc:GeologicalContext instance to an IRI-identified lithostratigraphic unit at the lowest possible level in a hierarchy.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.7 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fromLithostratigraphicUnit,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/geodeticDatum-2015-03-27,geodeticDatum,Geodetic Datum (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.",`https://epsg.io/4326`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/geodeticDatum,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/georeferenceProtocol-2015-03-27,georeferenceProtocol,Georeference Protocol (IRI),"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceProtocol,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/georeferenceSources-2015-03-27,georeferenceSources,Georeference Sources (IRI),"A map, gazetteer, or other resource used to georeference the Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceSources,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2021-07-15,georeferenceVerificationStatus,Georeference Verification Status (IRI),A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/habitat-2015-03-27,habitat,Habitat (IRI),A category or description of the habitat in which the Event occurred.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/habitat,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/identificationQualifier-2015-03-27,identificationQualifier,Identification Qualifier (IRI),A controlled value to express the determiner's doubts about the Identification.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identificationQualifier,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/identificationVerificationStatus-2015-03-27,identificationVerificationStatus,Identification Verification Status (IRI),A categorical indicator of the extent to which the taxonomic identification has been verified to be correct.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identificationVerificationStatus,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/inDataset-2015-03-27,inDataset,In Dataset,Use to link a subject dataset record to the dataset which contains it.,A string literal name of the dataset can be provided using the term dwc:datasetName. See the Darwin Core RDF Guide for details.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inDataset,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/informationWithheld-2015-03-27,informationWithheld,Information Withheld (IRI),"Additional information that exists, but that has not been shared in the given record.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/informationWithheld,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/latestGeochronologicalEra-2015-03-27,latestGeochronologicalEra,Latest Geochronological Era,Use to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the latest possible geological time period from which the cataloged item was collected.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/latestGeochronologicalEra,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/lifeStage-2021-07-15,lifeStage,Life Stage (IRI),The age class or life stage of the Organism(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,http://rs.tdwg.org/dwc/iri/version/lifeStage-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/lifeStage,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2015-03-27,locationAccordingTo,Location According To (IRI),"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/locationAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2015-03-27,measurementDeterminedBy,Measurement Determined By (IRI),"A person, group, or organization who determined the value of the MeasurementOrFact.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementDeterminedBy,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/measurementMethod-2015-03-27,measurementMethod,Measurement Method (IRI),"The method or protocol used to determine the measurement, fact, characteristic, or assertion.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementMethod,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/measurementType-2015-03-27,measurementType,Measurement Type (IRI),"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementType,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/measurementUnit-2015-03-27,measurementUnit,Measurement Unit (IRI),The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementUnit,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/measurementValue-2021-07-15,measurementValue,Measurement Value (IRI),"The value of the measurement, fact, characteristic, or assertion.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,`http://vocab.nerc.ac.uk/collection/L22/current/TOOL0960/`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementValue,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2015-03-27,occurrenceStatus,Occurrence Status (IRI),A statement about the presence or absence of a Taxon at a Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/occurrenceStatus,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/organismQuantityType-2015-03-27,organismQuantityType,Organism Quantity Type (IRI),The type of quantification system used for the quantity of organisms.,A dwc:organismQuantityType must have a corresponding dwc:organismQuantity.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/organismQuantityType,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/pathway-2021-03-29,pathway,Pathway (IRI),The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcpw/values/p002`; `http://rs.tdwg.org/dwcpw/values/p046`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,recommended,http://rs.tdwg.org/dwc/iri/version/pathway-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/pathway,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/preparations-2015-03-27,preparations,Preparations (IRI),A preparation or preservation method for a specimen.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/preparations,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/recordNumber-2015-03-27,recordNumber,Record Number (IRI),"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.",The subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordNumber,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2015-03-27,reproductiveCondition,Reproductive Condition (IRI),The reproductive condition of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/reproductiveCondition,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2015-03-27,sampleSizeUnit,Sampling Size Unit (IRI),"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sampleSizeUnit,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2021-07-15,samplingProtocol,Sampling Protocol (IRI),"The methods or protocols used during an Event, denoted by an IRI.","Recommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the Occurrence.",`https://doi.org/10.1111/j.1466-8238.2009.00467.x`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/samplingProtocol,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/sex-2015-03-27,sex,Sex (IRI),The sex of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sex,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/typeStatus-2015-03-27,typeStatus,Type Status (IRI),"A nomenclatural type (type status, typified scientific name, publication) applied to the subject.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/typeStatus,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2015-03-27,verbatimCoordinateSystem,Verbatim Coordinate System (IRI),The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2015-03-27,verbatimSRS,Verbatim SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary IRI for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary IRI for the name or code of the ellipsoid, if known.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimSRS,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/verticalDatum-2021-07-15,verticalDatum,Vertical Datum (IRI),The vertical datum used as the reference upon which the values in the elevation terms are based.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verticalDatum,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2018-09-06,LivingSpecimen,Living Specimen,A specimen that is alive.,,A living plant in a botanical garden. A living animal in a zoo.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen,extension -http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2018-09-06,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,A plant on an herbarium sheet. A cataloged lot of fish in a jar.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen,extension -http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2018-09-06,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,A body fossil. A coprolite. A gastrolith. An ichnofossil. A piece of a petrified tree.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen,extension -http://rs.tdwg.org/dwc/terms/version/MaterialCitation-2021-07-15,MaterialCitation,Material Citation,"A reference to or citation of one, a part of, or multiple specimens in scholarly publications.","This class constitutes a new value for the controlled vocabulary in the recommendations for basisOfRecord. When importing Darwin Core Archives of literature-based datasets to GBIF, the basisOfRecord should be changed from `Occurrence`, `PreservedSpecimen` or `Literature` to `MaterialCitation`.","A citation of a physical specimen from a scientific collection in a taxonomic treatment in a scientific publication. A citation of a group of physical specimens, such as paratypes in a taxonomic treatment in a scientific publication. An occurrence mentioned in a field note book.",,2021-07-15,recommended,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialCitation,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/HumanObservation-2018-09-06,HumanObservation,Human Observation,An output of a human observation process.,,Evidence of an Occurrence taken from field notes or literature. A record of an Occurrence without physical evidence nor evidence captured with a machine.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/HumanObservation-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation,extension -http://rs.tdwg.org/dwc/terms/version/MachineObservation-2018-09-06,MachineObservation,Machine Observation,An output of a machine observation process.,,A photograph. A video. An audio recording. A remote sensing image. A Occurrence record based on telemetry.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/MachineObservation-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation,extension -http://digir.net/schema/conceptual/darwin/2003/1.0/version/AgeClass-2003-06-17,AgeClass,Age Class,"The age class, reproductive stage, life stage of the biological individual (e.g., juvenile, adult, eft, nymph, etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/AgeClass,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-13,BasisOfRecord,Basis of Record,"An abbreviation indicating whether the record represents an observation (O), living organism (L), specimen (S), germplasm/seed (G), etc.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-17,BasisOfRecord,Basis of Record,"A description indicating whether the record represents an observation, tissue sample, living organism, voucher specimen, germplasm/seed, genetic information, etc.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-13,BoundingBox,Bounding Box,"This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the Latitude and Longitude columns by the data provider",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-17,BoundingBox,Bounding Box,"This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the DecimalLatitude and DecimalLongitude columns by the data provider.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumber-2003-06-13,CatalogNumber,Catalog Number,"A unique alphanumeric value which identifies an individual record within the collection. It is recommended that this value provides a key by which the actual specimen can be identified. If the specimen has several items such as various types of preparation, this value should identify the individual component of the specimen",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,CatalogNumberNumeric,Catalog Number Numeric,"The CatalogNumber as a numeric value, if applicable. Allows searching on numeric ranges of CatalogNumbers.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberNumeric,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberText-2003-06-17,CatalogNumberText,Catalog Number Text,An alphanumeric value which identifies an individual cataloged item within the collection. It is recommended that this value provides a key by which the individual cataloged item can be identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberText,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-13,Class,Class,The class name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Class,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-17,Class,Class,The phylogenetic class to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Class,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-13,CollectionCode,Collection Code,A unique alphanumeric value which identifies the collection within the institution,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-17,CollectionCode,Collection Code,A unique alphanumeric value that identifies the collection within the institution in which the item is cataloged. This attribute must contain no spaces.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-13,Collector,Collector,The name(s) of the collector(s) responsible for collection the specimen or taking the observation,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Collector,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-17,Collector,Collector,The name(s) of the collector(s) of the original data for the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Collector,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-13,CollectorNumber,Collector Number,"An identifying ""number"" (really a string) applied to specimens (in some disciplines) at the time of collection. Establishes a links different parts/preparations of a single specimen and between field notes and the specimen.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-17,CollectorNumber,Collector Number,An identifying string applied to the cataloged item at the time of collection. Serves as a link between field notes and the cataloged items.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-13,ContinentOcean,Continent Ocean,The continent or ocean from which a specimen was collected.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,ContinentOcean,Continent Ocean,"The full, unabbreviated name of the continent or ocean from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,CoordinatePrecision,Coordinate Precision,"An estimate of how tightly the collecting locality was specified; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinatePrecision,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinateUncertaintyInMeters-2003-06-17,CoordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The upper limit of the distance (in meters) from the given latitude and longitude describing a circle within which the whole of the described locality must lie. Use NULL where the uncertainty is unknown, cannot be estimated, or is not applicable.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinateUncertaintyInMeters,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-13,Country,Country,The country or major political unit from which the specimen was collected. ISO 3166-1 (http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/db_en.html) values should be used. Full country names are currently in use. A future recommendation is to use ISO3166-1 two letter codes or the full name when searching,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Country,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-17,Country,Country,"The full, unabbreviated name of the country or major political unit from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Country,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-13,County,County,"The county (or shire, or next political region smaller than State / Province) from which the specimen was collected",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/County,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-17,County,County,"The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/County,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-13,DateLastModified,Date Last Modified,"ISO 8601 compliant stamp indicating the date and time in UTC(GMT) when the record was last modified. Example: the instant ""November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be represented as ""1994-11-05T13:15:30Z"" (see W3C Note on Date and Time Formats - http://www.w3.org/TR/NOTE-datetime). (What to do when this date-time is unknown? Use Date-Time first ""published""?)",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-17,DateLastModified,Date Last Modified,"ISO 8601 date and time in UTC(GMT) when the record was last modified. Example: ""November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be ""1994-11-05T13:15:30Z"" (see http://www.w3.org/TR/NOTE-datetime).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-13,DayCollected,Day Collected,The day of the month the specimen was collected from the field. Possible value ranges from 01..31 inclusive,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17,DayCollected,Day Collected,The two digit day of the month in the Common Era calendar during which the cataloged item was collected from the field.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-13,DayIdentified,Day Identified,The day portion of the date when the Collection Item was identified; as two digits [01..31].,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-17,DayIdentified,Day Identified,The two digit day of the month in the Common Era calendar during which the cataloged item was identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLatitude-2003-06-17,DecimalLatitude,Decimal Latitude,"The latitude of the location from which the cataloged item was collected, expressed in decimal degrees.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Latitude-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLatitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLongitude-2003-06-17,DecimalLongitude,Decimal Longitude,"The longitude of the location from which the cataloged item was collected, expressed in decimal degrees.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Longitude-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLongitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-13,Family,Family,The family name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Family,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-17,Family,Family,The phylogenetic family to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Family,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNotes-2003-06-17,FieldNotes,Field Notes,"A reference to, or flag marking the existence of notes taken in the field for the cataloged item.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNotes,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-13,FieldNumber,Field Number,"A ""number"" (really a string) created at collection time to identify all material that resulted from a collecting event.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-17,FieldNumber,Field Number,An identifying string applied to a set of material that resulted from a single collecting event.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/GenBankNum-2003-06-17,GenBankNum,Gen Bank Num,GenBank Accession number.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/GenBankNum,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-13,Genus,Genus,The genus name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Genus,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-17,Genus,Genus,The phylogenetic genus to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Genus,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/GeorefMethod-2003-06-17,GeorefMethod,Georef Method,A reference to the methods used for determining the coordinates and uncertainties.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/GeorefMethod,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherGeography-2003-06-17,HigherGeography,Higher Geography,"The combination of all geographic elements less specific than locality. ""Like"" query operations on this element will search for a substring in any of the higher geography attributes.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HigherGeography,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherTaxon-2003-06-17,HigherTaxon,Higher Taxon,"The combination of names of taxonomic ranks less specific than Genus. ""Like"" query operations on this element will search for a substring in any of the higher taxon attributes.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HigherTaxon,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/HorizontalDatum-2003-06-17,HorizontalDatum,Horizontal Datum,The horizontal geodetic datum to which the DecimalLatitude and DecimalLongitude refer.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HorizontalDatum,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentificationModifier-2003-06-17,IdentificationModifier,Identification Modifier,"Additional information documenting the taxonomic determination of the cataloged item (e.g., ""cf."", ""aff."", ""subspecies in question"", etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentificationModifier,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-13,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the currently accepted Scientific Name to the Cataloged Item.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-17,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the currently accepted ScientificName to the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-13,IndividualCount,Individual Count,The number of individuals present in the lot or container. Not an estimate of abundance or density at the collecting locality.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-17,IndividualCount,Individual Count,The number of individuals present in the lot or container referred to by the catalog number. Not an estimate of abundance or density at the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-13,InstitutionCode,Institution Code,"A ""standard"" code identifier that identifies the institution to which the collection belongs. No global registry exists for assigning institutional codes. Use the code that is ""standard"" in your discipline.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-17,InstitutionCode,Institution Code,"A code that identifies the institution to which the cataloged item belongs. No global registry exists for institutional codes; use the code that is ""standard"" in your discipline. This attribute must contain no spaces.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Island-2003-06-17,Island,Island,"The full, unabbreviated name of the island from which the cataloged item was collected.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Island,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/IslandGroup-2003-06-17,IslandGroup,Island Group,"The full, unabbreviated name of the island group from which the cataloged item was collected.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IslandGroup,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-13,JulianDay,Julian Day,"The ordinal day of the year; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.)",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-17,JulianDay,Julian Day,"The ordinal day of the year (i.e., the number of days since December 31 of the previous year; January 1 is Julian Day 1) on which the cataloged item was collected. May be derived from the YearCollected, MonthCollected, and DayCollected by the provider.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-13,Kingdom,Kingdom,The kingdom to which the organism belongs,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-17,Kingdom,Kingdom,The phylogenetic kingdom to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Latitude-2003-06-13,Latitude,Latitude,The latitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Latitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/LatLongComments-2003-06-17,LatLongComments,Lat Long Comments,Comments about the LatLong determination.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/LatLongComments,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-13,Locality,Locality,"The locality description (place name plus optionally a displacement from the place name) from which the specimen was collected. Where a displacement from a location is provided, it should be in un-projected units of measurement",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Locality,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-17,Locality,Locality,"The description of the locality from which the cataloged item was collected, sans geographic information provided in other geographic fields.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Locality,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Longitude-2003-06-13,Longitude,Longitude,The longitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Longitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepth-2003-06-13,MaximumDepth,Maximum Depth,"The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepth,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepthInMeters-2003-06-17,MaximumDepthInMeters,Maximum Depth In Meters,"The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepth-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepthInMeters,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevation-2003-06-13,MaximumElevation,Maximum Elevation,The maximum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevation,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevationInMeters-2003-06-17,MaximumElevationInMeters,Maximum Elevation In Meters,The maximum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevation-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevationInMeters,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepth-2003-06-13,MinimumDepth,Minimum Depth,"The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepth,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepthInMeters-2003-06-17,MinimumDepthInMeters,Minimum Depth In Meters,"The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepth-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepthInMeters,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevation-2003-06-13,MinimumElevation,Minimum Elevation,The minimum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevation,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevationInMeters-2003-06-17,MinimumElevationInMeters,Minimum Elevation In Meters,The minimum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevation-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevationInMeters,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-13,MonthCollected,Month Collected,The month of year the specimen was collected from the field. Possible values range from 01...12 inclusive,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17,MonthCollected,Month Collected,The two digit month of year in the Common Era calendar during which the cataloged item was collected from the field.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-13,MonthIdentified,Month Identified,The month portion of the date when the Collection Item was identified; as two digits [01..12].,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-17,MonthIdentified,Month Identified,The two digit month in the Common Era calendar during which the cataloged item was identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Notes-2003-06-13,Notes,Notes,Free text notes attached to the specimen record,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Notes,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-13,Order,Order,The order name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Order,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-17,Order,Order,The phylogenetic order to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Order,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/OriginalCoordinateSystem-2003-06-17,OriginalCoordinateSystem,Original Coordinate System,"The name of the system in which the original geographic coordinates were recorded (e.g., ""decimal degrees"", ""degrees minutes seconds"", ""UTM"", etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/OriginalCoordinateSystem,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/OtherCatalogNumbers-2003-06-17,OtherCatalogNumbers,Other Catalog Numbers,A list of previous or alternative fully qualified catalog numbers of the cataloged item whether in the current collection or in any other.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreviousCatalogNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/OtherCatalogNumbers,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-13,Phylum,Phylum,The phylum (or division) to which the organism belongs,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-17,Phylum,Phylum,The phylogenetic phylum (or division) to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Preparations-2003-06-17,Preparations,Preparations,"A concatenated list of preparations and preservation methods (skin, skull, skeleton, whole animal (ETOH), slide, etc.) for the cataloged item.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreparationType-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Preparations,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreparationType-2003-06-13,PreparationType,Preparation Type,"The type of preparation (skin. slide, etc). Probably best to add this as a record element rather than access point. Should be a list of preparations for a single collection record.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/PreparationType,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreviousCatalogNumber-2003-06-13,PreviousCatalogNumber,Previous Catalog Number,"The previous (fully qualified) catalog number of the Cataloged Item if the item earlier identified by another Catalog Number, either in the current catalog or another Institution / catalog. A fully qualified Catalog Number is preceded by Institution Code and Collection Code, with a space separating the each subelement. Referencing a previous Catalog Number does not imply that a record for the referenced item is or is not present in the corresponding catalog, or even that the referenced catalog still exists. This access point is intended to provide a way to retrieve this record by previously used identifier, which may used in the literature. In future versions of this schema this attribute should be set-valued.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/PreviousCatalogNumber,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogedItems-2003-06-17,RelatedCatalogedItems,Related Cataloged Items,"The fully qualified identifier (Institution Code + "" "" + Collection Code + "" "" + Catalog Number) of the related Cataloged Item, preceded by the nature of the relationship (e.g., (sibling of) MVZ Mamm 1234).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogItem-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogedItems,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogItem-2003-06-13,RelatedCatalogItem,Related Cataloged Item,"The fully qualified identifier of a related Catalog Item (a reference to another specimen); Institution Code, Collection Code, and Catalog Number of the related Cataloged Item, where a space separates the three subelements.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogItem,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelationshipType-2003-06-13,RelationshipType,Relationship Type,"A named or coded valued that identifies the kind relationship between this Collection Item and the referenced Collection Item. Named values include: ""parasite of"", ""epiphyte on"", ""progeny of"", etc. In future versions of this schema this attribute should be set-valued.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelationshipType,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Remarks-2003-06-17,Remarks,Remarks,Free text comments accompanying the cataloged item record.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Notes-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Remarks,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-13,ScientificName,Scientific Name,"The full name of lowest level taxon the Cataloged Item can be identified as a member of; includes genus name, specific epithet, and subspecific epithet (zool.) or infraspecific rank abbreviation, and infraspecific epithet (bot.) Use name of suprageneric taxon (e.g., family name) if Cataloged Item cannot be identified to genus, species, or infraspecific taxon.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-17,ScientificName,Scientific Name,"The full name of lowest level taxon to which the cataloged item can be identified (e.g., genus name, specific epithet, subspecific epithet, etc.).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-13,ScientificNameAuthor,Scientific Name Author,The author of a scientific name. Author string as applied to the accepted name. Can be more than one author (concatenated string). Should be formatted according to the conventions of the applicable taxonomic discipline.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-17,ScientificNameAuthor,Scientific Name Author,The author of the ScientificName. Can be more than one author in a concatenated string. Should be formatted according to the conventions of the applicable taxonomic discipline.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-13,Sex,Sex,The sex of a specimen. The domain should be a controlled set of terms (codes) based on community consensus. Proposed values: M=Male; F=Female; H=Hermaphrodite; I=Indeterminate (examined but could not be determined; U=Unkown (not examined); T=Transitional (between sexes; useful for sequential hermaphrodites),,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Sex,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-17,Sex,Sex,"The sex of a cataloged item (e.g., male, female, hermaphrodite, gynandromorph, not recorded, indeterminate, transitional - between sexes, for sequential hermaphrodites).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Sex,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-13,Species,Species,The specific epithet of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Species,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-17,Species,Species,The phylogenetic specific epithet of the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Species,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-13,StateProvince,State Province,"The state, province or region (i.e. next political region smaller than Country) from which the specimen was collected. There is some suggestion to use the values described in ISO 3166-2 (http://www.iso.ch/cate/d8349.html), however these values are in a continual state of flux and it appears unlikely that an appropriate mechanism (by ISO) will be in place to manage these changes. Hence it is recommended that where possible, the full, unabbreviated name should be used for storing information. The server should optionally handle abbreviations as an access point. Note: this is a recurring theme (country and state) abbreviations. Check the existence of an attribute type to deal with abbreviations from the bib-1 profile",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-17,StateProvince,State Province,"The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-13,Subspecies,Subspecies,The sub-specific epithet of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-17,Subspecies,Subspecies,The phylogenetic subspecific epithet of the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeCollected-2003-06-17,TimeCollected,Time Collected,"The time of day the cataloged item was collected, expressed as decimal hours from midnight, local time (e.g., 12.0 = noon, 13.5 = 1:30pm).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeOfDay-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TimeCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeOfDay-2003-06-13,TimeOfDay,Time of Day,"The time of day a specimen was collected expressed as decimal hours from midnight local time (e.g. 12.0 = mid day, 13.5 = 1:30pm)",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TimeOfDay,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/Tissues-2003-06-17,Tissues,Tissues,"A concatenated list of tissues and preservation methods (whole (frozen), liver (EDTA), etc.) for the cataloged item.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Tissues,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-13,TypeStatus,Type Status,"Indicates the kind of nomenclatural type that a specimen represents. (This is incomplete because type status actually describes the relationship between a name and a specimen [or ternary relatiohnship between a specimen, name, and publication].) In particular, the type status may not apply to the name listed in the scientific name, i.e., current identification. In rare cases, a single specimen may be the type of more than one name.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-17,TypeStatus,Type Status,"A list of one or more nomenclatural types that the cataloged item represents (e.g., ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388."").",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimCollectingDate-2003-06-17,VerbatimCollectingDate,Verbatim Collecting Date,The verbatim original representation of the date information for the collecting event.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimCollectingDate,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimDepth-2003-06-17,VerbatimDepth,Verbatim Depth,A text representation of the Depth in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimDepth,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimElevation-2003-06-17,VerbatimElevation,Verbatim Elevation,A text representation of the Elevation in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimElevation,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLatitude-2003-06-17,VerbatimLatitude,Verbatim Latitude,A text representation of the Latitude data in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLatitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLongitude-2003-06-17,VerbatimLongitude,Verbatim Longitude,A text representation of the Longitude data in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLongitude,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-13,YearCollected,Year Collected,"The year (expressed as an integer) in which the specimen was collected. The full year should be expressed (e.g. 1972 must be expressed as ""1972"" not ""72""). Must always be a four digit integer [-9999..9999]",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,YearCollected,Year Collected,The four digit year in the Common Era calendar in which the cataloged item was collected.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-13,YearIdentified,Year Identified,"The year portion of the date when the Collection Item was identified; as four digits [-9999..9999], e.g., 1906, 2002.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified,, -http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-17,YearIdentified,Year Identified,The four digit year in the Common Era calendar in which the cataloged item was identified as having the ScientificName.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Bed-2005-07-03,Bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Bed,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestAgeOrLowestStage-2005-07-03,EarliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestAgeOrLowestStage,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEonOrLowestEonothem-2005-07-03,EarliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.",,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEonOrLowestEonothem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEpochOrLowestSeries-2005-07-03,EarliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEpochOrLowestSeries,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEraOrLowestErathem-2005-07-03,EarliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEraOrLowestErathem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestPeriodOrLowestSystem-2005-07-03,EarliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestPeriodOrLowestSystem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Formation-2005-07-03,Formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Formation,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Group-2005-07-03,Group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Group,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/HighestBiostratigraphicZone-2005-07-03,HighestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/HighestBiostratigraphicZone,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestAgeOrHighestStage-2005-07-03,LatestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestAgeOrHighestStage,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEonOrHighestEonothem-2005-07-03,LatestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.",,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEonOrHighestEonothem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEpochOrHighestSeries-2005-07-03,LatestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEpochOrHighestSeries,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEraOrHighestErathem-2005-07-03,LatestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEraOrHighestErathem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestPeriodOrHighestSystem-2005-07-03,LatestPeriodOrHighestSystem,Latest Period Or Highest System,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestPeriodOrHighestSystem,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LithostratigraphicTerms-2005-07-03,LithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LithostratigraphicTerms,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LowestBiostratigraphicZone-2005-07-03,LowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LowestBiostratigraphicZone,, -http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Member-2005-07-03,Member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Member,, -http://dublincore.org/usage/terms/history/#rightsT-001,rights,Rights,Information about rights held in and over the resource.,"Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.",,http://purl.org/dc/terms/,2008-01-14,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/rights,not in ABCD, -http://dublincore.org/usage/terms/history/#typeT-001,type,Type,The nature or genre of the resource.,"To provide a string literal value for type, use dc:type rather than this term. In accordance with the Darwin Core RDF guide, rdf:type should be used instead of this term to indicate an IRI value for type.",,http://purl.org/dc/terms/,2008-01-14,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/type,not in ABCD, -http://gensc.org/ns/mixs/version/source_mat_id-2011-01-26,source_mat_id,source material identifiers,"A unique identifier assigned to a material sample (as defined by http://rs.tdwg.org/dwc/terms/MaterialSampleID, and as opposed to a particular digital record of a material sample) used for extracting nucleic acids, and subsequent sequencing. The identifier can refer either to the original material collected or to any derived sub-samples. The INSDC qualifiers /specimen_voucher, /bio_material, or /culture_collection provide additional context and suggested syntax for this identifier for data submitted to INSDC databases.",,,,2011-01-26,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://gensc.org/ns/mixs/source_mat_id,, -http://rs.tdwg.org/dwc/curatorial/version/CatalogNumberNumeric-2007-04-17,CatalogNumberNumeric,Catalog Number Numeric,"The CatalogNumber as a numeric value, if applicable. This element allows searching on numeric ranges of CatalogNumbers. Example: 145732.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/CatalogNumberNumeric,DataSets/DataSet/Units/Unit/UnitIDNumeric, -http://rs.tdwg.org/dwc/curatorial/version/CollectorNumber-2007-04-17,CollectorNumber,Collector Number,An identifying string applied to the object or observation at the time of collection. Serves as a link between field notes and the object or observation.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/CollectorNumber,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, -http://rs.tdwg.org/dwc/curatorial/version/DateIdentified-2007-04-17,DateIdentified,Date Identified,The date-time in the Common Era calendar in which the object or observation was identified as being a member of the taxon given in the ScientificName.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/DateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, -http://rs.tdwg.org/dwc/curatorial/version/Disposition-2007-04-17,Disposition,Disposition,"The current disposition of the cataloged item. Examples: ""in collection"", ""missing"", ""voucher elsewhere"", ""duplicates elsewhere"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/Disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition, -http://rs.tdwg.org/dwc/curatorial/version/FieldNotes-2007-04-17,FieldNotes,Field Notes,"One of a) a flag indicating the existence of, b) a reference to (such as a URL or literature citation), or c) the actual free text content of notes taken in the field about the specimen or observation.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNotes-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/FieldNotes,DataSets/DataSet/Units/Unit/FieldNotes, -http://rs.tdwg.org/dwc/curatorial/version/FieldNumber-2007-04-17,FieldNumber,Field Number,An identifying string applied to a set of objects or observations resulting from a single collecting event.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/FieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code, -http://rs.tdwg.org/dwc/curatorial/version/GenBankNumber-2007-04-17,GenBankNumber,Gen Bank Number,GenBank Accession number(s) associated with the biological individual(s) referred to by the cataloged object.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/GenBankNum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/GenBankNumber,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, -http://rs.tdwg.org/dwc/curatorial/version/IdentifiedBy-2007-04-17,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the ScientificName to the object or observation. Example: James L. Patton.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/IdentifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, -http://rs.tdwg.org/dwc/curatorial/version/IndividualCount-2007-04-17,IndividualCount,Individual Count,The number of individuals present in the lot or container. Not to be used for observations.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/IndividualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/curatorial/version/OtherCatalogNumbers-2007-04-17,OtherCatalogNumbers,Other Catalog Numbers,"A list of previous or alternative fully qualified catalog numbers for the same object or observation, whether in the current collection or in any other.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/OtherCatalogNumbers-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/OtherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, -http://rs.tdwg.org/dwc/curatorial/version/Preparations-2007-04-17,Preparations,Preparations,"A concatenated list of preparations and preservation methods for the object. Examples: ""skin"", ""skull"", ""skeleton"", ""whole animal (ETOH)"", ""tissue (EDTA)"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Preparations-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/Preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, -http://rs.tdwg.org/dwc/curatorial/version/RelatedCatalogedItems-2007-04-17,RelatedCatalogedItems,Related Cataloged Items,"One or more GlobalUniqueIdentifiers (cf. http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GlobalUniqueIdentifier ) of related objects or observations, optionally preceded by the nature of the relationship. Examples: ""(sibling of) URN:catalog:MVZ:Mammal:1234"", ""(endoparasite of) URN:catalog:FMNH:Bird:41321"", ""(sheet 2 of 2) URN:WTU:VascularPlants:353087"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogedItems-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/RelatedCatalogedItems,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, -http://rs.tdwg.org/dwc/curatorial/version/TypeStatus-2007-04-17,TypeStatus,Type Status,"A list of one or more nomenclatural types (including type status and typified taxonomic name) represented by the object. Example: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/TypeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, -http://rs.tdwg.org/dwc/curatorial/version/VerbatimCollectingDate-2007-04-17,VerbatimCollectingDate,Verbatim Collecting Date,"The verbatim original representation of the date (and time) information for the collecting event. Example: ""spring 1910"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimCollectingDate-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimCollectingDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText, -http://rs.tdwg.org/dwc/curatorial/version/VerbatimDepth-2007-04-17,VerbatimDepth,Verbatim Depth,"A text representation of the depth in its original format in the source database. Example: ""100 to 200 ft below sea level"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimDepth-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText, -http://rs.tdwg.org/dwc/curatorial/version/VerbatimElevation-2007-04-17,VerbatimElevation,Verbatim Elevation,"A text representation of the altitude in its original format in the source database. Example: ""1000+- meters"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimElevation-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText, -http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,Attributes,Attributes,"List of additional measurements or characteristics (concatenated and separated) for which there is no existing semantic element, but which the data provider nevertheless feels the desire to share. Examples: ""Tragus length: 14mm; Weight: 120g"", ""Height: 1-1.5 meters tall; flowers yellow; uncommon"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Attributes,DataSets/DataSet/Units/Unit/MeasurementsOrFacts, -http://rs.tdwg.org/dwc/dwcore/version/AuthorYearOfScientificName-2007-04-17,AuthorYearOfScientificName,Author Year of Scientific Name,"The author of the ScientificName and the year of publication, if known. More than one author can be listed in a concatenated string. Should be formatted with parentheses and year according to the conventions of the applicable NomenclaturalCode.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/AuthorYearOfScientificName,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}, -http://rs.tdwg.org/dwc/dwcore/version/BasisOfRecord-2007-04-17,BasisOfRecord,Basis of Record,"A descriptive term indicating whether the record represents an object or observation. Examples: PreservedSpecimen- A physical object representing one or more organisms, part of organism, or artifact of an organism. synonyms: voucher, collection, lot. FossilSpecimen- A physical object representing one or more fossil organisms, part of fossil organism, or artifact of a fossil organism. LivingSpecimen- An organism removed from its natural occurrence and now living in captivity or cultivation. HumanObservation- A report by a known observer that an organism was present at the place and time. MachineObservation- A report by a monitoring device that an organism was present at the place and time. StillImage- An photograph, drawing, painting. MovingImage- A sequence of still images taken at regular intervals and intended to be played back as a moving image; may include sound. SoundRecording- An audio recording. OtherSpecimen- Any type of specimen not covered by any of the categories above.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/BasisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, -http://rs.tdwg.org/dwc/dwcore/version/CatalogNumber-2007-04-17,CatalogNumber,Catalog Number,"The alphanumeric value identifying a record within the collection. It is highly recommended that each record be uniquely identified within a collection by this value. It is also recommended that each record be uniquely identified in a global context by the combination of InstitutionCode, CollectionCode and CatalogNumber.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberText-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CatalogNumber,DataSets/DataSet/Units/Unit/UnitID, -http://rs.tdwg.org/dwc/dwcore/version/Class-2007-04-17,Class,Class,The name of the class in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, -http://rs.tdwg.org/dwc/dwcore/version/CollectingMethod-2007-04-17,CollectingMethod,Collection Method,"The name of, reference to, or brief description of the method or protocol under which the collecting event occurred. Examples: ""UV light trap"", ""mist net"", ""bottom trawl"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CollectingMethod,DataSets/DataSet/Units/Unit/Gathering/Method, -http://rs.tdwg.org/dwc/dwcore/version/CollectionCode-2007-04-17,CollectionCode,Collection Code,The code (or acronym) identifying the collection within the institution in which the organism record is cataloged.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CollectionCode,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/dwcore/version/Collector-2007-04-17,Collector,Collector,"The name(s) (concatenated and separated) of collectors or observers. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching collector names. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first. Example: ""Oliver P. Pearson, Anita K. Pearson"" where the value in CollectorNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Collector,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, -http://rs.tdwg.org/dwc/dwcore/version/Continent-2007-04-17,Continent,Continent,"The full, unabbreviated name of the continent on which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent, -http://rs.tdwg.org/dwc/dwcore/version/Country-2007-04-17,Country,Country,"The full, unabbreviated name of the country or major political unit in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Country,DataSets/DataSet/Units/Unit/Gathering/Country/Name, -http://rs.tdwg.org/dwc/dwcore/version/County-2007-04-17,County,County,"The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/County,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County, -http://rs.tdwg.org/dwc/dwcore/version/DateLastModified-2007-04-17,DateLastModified,Date Last Modified,"The last date-time of publication when any of the data for the record were modified from the previous publication of that record. When publishing a record for the first time, use the publication date-time. Returns values as ISO 8601 date and time. (cf. http://www.w3.org/TR/xmlschema-2/#isoformats and http://www.iso.org/iso/en/prods-services/popstds/dateandtime.html Example: November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be ""1994-11-05T13:15:30Z""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/DateLastModified,DataSets/DataSet/Units/Unit/DateLastEdited, -http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,DayOfYear,Day of Year,"The ordinal day of the year on which the object or observation was collected (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). If the EarliestDateCollected and LatestDateCollected do not occur on the same day, do not populate DayOfYear.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/DayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin, -http://rs.tdwg.org/dwc/dwcore/version/EarliestDateCollected-2007-04-17,EarliestDateCollected,Earliest Date Collected,"The earliest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/EarliestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/dwcore/version/Family-2007-04-17,Family,Family,The name of the family in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, -http://rs.tdwg.org/dwc/dwcore/version/Genus-2007-04-17,Genus,Genus,The name of the genus in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, -http://rs.tdwg.org/dwc/dwcore/version/GlobalUniqueIdentifier-2007-04-17,GlobalUniqueIdentifier,Global Unique Identifier,"A Uniform Resource Name (URN) as a unique identifier for the specimen or observation record. In the absence of a persistent global unique identifier, construct one in the form: ""[InstitutionCode]:[CollectionCode]: [CatalogNumber]"" Examples: 1) urn:lsid:nhm.ku.edu:Herps:32 2) ""FMNH:Mammal:145732""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/GlobalUniqueIdentifier,DataSets/DataSet/Units/Unit/UnitGUID, -http://rs.tdwg.org/dwc/dwcore/version/HigherGeography-2007-04-17,HigherGeography,Higher Geography,"The names (concatenated and separated) of geographic elements less specific than the information in the Locality element. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching geographic names. This can be useful if it is unclear in which element a name might be found, and in cases where there is no other appropriate geographic element. Example: ""South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and Los Lagos in County.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherGeography-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/HigherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, -http://rs.tdwg.org/dwc/dwcore/version/HigherTaxon-2007-04-17,HigherTaxon,Higher Taxon,"The names of taxonomic ranks less specific than SpecificEpithet concatenated and separated. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching higher taxon names. This element may contain the list of scientific names of all of the supra-specific taxa in the classification used to identify (determine) the specimen or observation. Example: ""Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherTaxon-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/HigherTaxon,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, -http://rs.tdwg.org/dwc/dwcore/version/IdentificationQualifier-2007-04-17,IdentificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to qualify the identification of the organism when doubts have arisen as to its taxonomic identity (determination). Examples: 1) For the determination ""Quercus aff. agrifolia var. oxyadenia"", IdentificationQualifier would be ""aff. agrifolia var. oxyadenia"" with accompanying values ""Quercus"" in Genus, ""agrifolia"" in SpecificEpithet, ""oxyadenia"" in InfraspecificEpithet, and ""var."" in InfraspecificRank. 2) For the determination ""Quercus agrifolia cf. var. oxyadenia"", IdentificationQualifier would be ""cf. var. oxyadenia "" with accompanying values ""Quercus"" in Genus, ""agrifolia"" in SpecificEpithet, ""oxyadenia"" in InfraspecificEpithet, and ""var."" in InfraspecificRank.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentificationModifier-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/IdentificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier, -http://rs.tdwg.org/dwc/dwcore/version/ImageURL-2007-04-17,ImageURL,Image URL,A Universal Resource Locator reference to digital images associated with the specimen or observation.,,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ImageURL,DataSets/DataSet/Units/Unit/MultimediaObjects, -http://rs.tdwg.org/dwc/dwcore/version/InformationWithheld-2007-04-17,InformationWithheld,Information Withheld,"Brief descriptions of additional information that may exist, but that has not been made public. Information about obtaining the withheld information should be sought from the administrative contact identified in the provider resource metadata (curator, collection manager). Examples: ""specific locality information given only to nearest county"", ""ask about tissue samples"", ""georeferences given only to nearest degree"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InformationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld, -http://rs.tdwg.org/dwc/dwcore/version/InfraspecificEpithet-2007-04-17,InfraspecificEpithet,Infraspecific Epithet,The infraspecific epithet of the scientific name applied to the organism.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InfraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, -http://rs.tdwg.org/dwc/dwcore/version/InfraspecificRank-2007-04-17,InfraspecificRank,Infraspecific Rank,"The infraspecific rank (subspecies, variety, forma) of the InfraspecificEpithet. Examples: ""subsp."", ""var."", ""forma"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InfraspecificRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, -http://rs.tdwg.org/dwc/dwcore/version/InstitutionCode-2007-04-17,InstitutionCode,Institution Code,"The code (or acronym) identifying the institution administering the collection in which the organism record is cataloged. No global registry exists for institutional codes; use the code that is ""standard"" at your institution or in your discipline.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InstitutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, -http://rs.tdwg.org/dwc/dwcore/version/Island-2007-04-17,Island,Island,"The full, unabbreviated name of the island on which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Island-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island, -http://rs.tdwg.org/dwc/dwcore/version/IslandGroup-2007-04-17,IslandGroup,Island Group,"The full, unabbreviated name of the island group in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IslandGroup-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/IslandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group, -http://rs.tdwg.org/dwc/dwcore/version/Kingdom-2007-04-17,Kingdom,Kingdom,The name of the kingdom in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, -http://rs.tdwg.org/dwc/dwcore/version/LatestDateCollected-2007-04-17,LatestDateCollected,Latest Date Collected,"The latest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/LatestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, -http://rs.tdwg.org/dwc/dwcore/version/LifeStage-2007-04-17,LifeStage,Life Stage,"The age class or life stage of the biological individual represented by the catalogued object or observation. Examples: ""adult"", ""mature"", ""juvenile"", ""eft"", ""nymph"", ""seedling"", ""seed"", ""egg""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/AgeClass-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/LifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage", -http://rs.tdwg.org/dwc/dwcore/version/Locality-2007-04-17,Locality,Locality,"The specific natural language description of the place where the organism was collected or observed. This element need not contain less specific geographic information provided in other geographic elements (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). Though coordinate information can be contained in this concept, these data will be usable analytically only when shared through the concepts of the Geospatial Extension.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Locality,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, -http://rs.tdwg.org/dwc/dwcore/version/MaximumDepthInMeters-2007-04-17,MaximumDepthInMeters,Maximum Depth In Meters,The maximum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 10 (for a depth of up to 10m). 100 (for a depth between 50m and 100m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepthInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MaximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/dwcore/version/MaximumElevationInMeters-2007-04-17,MaximumElevationInMeters,Maximum Elevation In Meters,The maximum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: Examples: 125 (for an elevation of 100 +- 25 meters). 200 (for an elevation between 100m and 200m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevationInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MaximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/dwcore/version/MinimumDepthInMeters-2007-04-17,MinimumDepthInMeters,Minimum Depth In Meters,The minimum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 0 (for a depth of up to 10m). 50 (for a depth between 50m and 100m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepthInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MinimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/dwcore/version/MinimumElevationInMeters-2007-04-17,MinimumElevationInMeters,Minimum Elevation In Meters,The minimum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: 75 (for an elevation of 100 +- 25 meters). 100 (for an elevation between 100m and 200m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevationInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MinimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/dwcore/version/NomenclaturalCode-2007-04-17,NomenclaturalCode,Nomenclatural Code,"The nomenclatural code under which the ScientificName is constructed. Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/NomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, -http://rs.tdwg.org/dwc/dwcore/version/Order-2007-04-17,Order,Order,The name of the order in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, -http://rs.tdwg.org/dwc/dwcore/version/Phylum-2007-04-17,Phylum,Phylum,The name of the phylum (or division) in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, -http://rs.tdwg.org/dwc/dwcore/version/RelatedInformation-2007-04-17,RelatedInformation,Related Information,"Free text references to information not delivered via the conceptual schema, including URLs to specimen details, publications, bibliographic references, etc.",,,,2007-04-17,deprecated,http://www.iobis.org/obis/version/RecordURL-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/RelatedInformation,DataSets/DataSet/Units/Unit/RecordURI, -http://rs.tdwg.org/dwc/dwcore/version/Remarks-2007-04-17,Remarks,Remarks,Free text comments accompanying the object or observation record.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Remarks-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Remarks,DataSets/DataSet/Units/Unit/Notes, -http://rs.tdwg.org/dwc/dwcore/version/ScientificName-2007-04-17,ScientificName,Scientific Name,"The full name of the lowest level taxon to which the organism has been identified in the most recent accepted determination, specified as precisely as possible, including name-author, year or authorship, sensu or sec. (according to or following) author, and indication of uncertainty. Conceptually equivalent to a full taxonomic identification as given by the identifier (verbatim). Does not include the identifier name or date of identification. Examples: ""Coleoptera"" (an Order), ""Vespertilionidae"" (a Family), ""Manis"" (a Genus), ""Ctenomys sociabilis"" (Genus + SpecificEpithet), ""Ambystoma tigrinum diaboli"" (Genus + SpecificEpithet + SubspecificEpithet), ""Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell"" (Genus + SpecificEpithet + InfraspecificRank + InfraspecificEpithet + AuthorYearOfScientificName).",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ScientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, -http://rs.tdwg.org/dwc/dwcore/version/Sex-2007-04-17,Sex,Sex,"The sex of the biological individual represented by the cataloged object or observation. Examples: ""male"", ""female"", ""hermaphrodite"", ""gynandromorph"", ""monoecious"", ""dioecious"", ""not recorded"", ""indeterminate"", ""transitional"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Sex,DataSets/DataSet/Units/Unit/Sex, -http://rs.tdwg.org/dwc/dwcore/version/SpecificEpithet-2007-04-17,SpecificEpithet,Specific Epithet,The specific epithet of the scientific name applied to the organism.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/SpecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}, -http://rs.tdwg.org/dwc/dwcore/version/StateProvince-2007-04-17,StateProvince,State Province,"The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/StateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.), -http://rs.tdwg.org/dwc/dwcore/version/ValidDistributionFlag-2007-04-17,ValidDistributionFlag,Valid Distribution Flag,"A flag (""true"" or ""false"") that indicates whether the locality information represents a valid distribution occurrence for a specimen. Specimens taken from captivity and showing the captive location should use the value ""false"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ValidDistributionFlag,DataSets/DataSet/Units/Unit/Gathering/ValidDistributionFlag, -http://rs.tdwg.org/dwc/dwcore/version/WaterBody-2007-04-17,WaterBody,Water Body,"The full, unabbreviated name of the body of water in or over which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/WaterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body, -http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2008-11-19,FossilSpecimen,Fossil Specimen,A resource describing a fossilized specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/FossilSpecimen,RecordBasisEnum/FossileSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2011-10-16,FossilSpecimen,Fossil Specimen,A resource describing a fossilized specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/FossilSpecimen,RecordBasisEnum/FossileSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2008-11-19,HumanObservation,Human Observation,A resource describing an observation made by one or more people.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/HumanObservation,RecordBasisEnum/HumanObservation, -http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2011-10-16,HumanObservation,Human Observation,A resource describing an observation made by one or more people.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/HumanObservation,RecordBasisEnum/HumanObservation, -http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2008-11-19,LivingSpecimen,Living Specimen,A resource describing a living specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/LivingSpecimen,RecordBasisEnum/LivingSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2011-10-16,LivingSpecimen,Living Specimen,A resource describing a living specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/LivingSpecimen,RecordBasisEnum/LivingSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/Location-2009-04-24,Location,Location,A resource describing an instance of the Location class.,,,,2009-04-24,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Location,not in ABCD, -http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2008-11-19,MachineObservation,Machine Observation,A resource describing an observation made by a machine.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MachineObservation,RecordBasisEnum/MachineObservation, -http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2011-10-16,MachineObservation,Machine Observation,A resource describing an observation made by a machine.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MachineObservation,RecordBasisEnum/MachineObservation, -http://rs.tdwg.org/dwc/dwctype/version/MaterialSample-2013-06-24,MaterialSample,Material Sample,"A resource describing the physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,,,2013-06-24,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MaterialSample,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/dwctype/version/NomenclaturalChecklist-2009-01-23,NomenclaturalChecklist,Nomenclatural Checklist,A resource describing a nomenclatural checklist.,,,,2009-01-23,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/NomenclaturalChecklist,not in ABCD, -http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2009-04-24,Occurrence,Occurrence,A resource describing an instance of the Occurrence class.,,,,2009-04-24,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Occurrence,not in ABCD, -http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2011-10-16,Occurrence,Occurrence,A resource describing an instance of the Occurrence class.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Occurrence,not in ABCD, -http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2008-11-19,PreservedSpecimen,Preserved Specimen,A resource describing a preserved specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2011-10-16,PreservedSpecimen,Preserved Specimen,A resource describing a preserved specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, -http://rs.tdwg.org/dwc/dwctype/version/Taxon-2009-01-23,Taxon,Taxon,A resource describing an instance of the Taxon class.,,,,2009-01-23,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Taxon,not in ABCD, -http://rs.tdwg.org/dwc/geospatial/version/CoordinateUncertaintyInMeters-2007-04-17,CoordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the described locality lies. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Describes the point-radius representation of the location, along with DecimalLatitude, DecimalLongitude, and GeodeticDatum. Zero is not a valid value for this element.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinateUncertaintyInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/CoordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters, -http://rs.tdwg.org/dwc/geospatial/version/DecimalLatitude-2007-04-17,DecimalLatitude,Decimal Latitude,"The latitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are North of the Equator, negative values are South of the Equator. Describes the point-radius representation of the location, along with DecimalLongitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -41.0983423",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLatitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/DecimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal, -http://rs.tdwg.org/dwc/geospatial/version/DecimalLongitude-2007-04-17,DecimalLongitude,Decimal Longitude,"The longitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are East of the Greenwich Meridian, negative values are West of the Greenwich Meridian. Describes the point-radius representation of the location, along with DecimalLatitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -71.0943235",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLongitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/DecimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal, -http://rs.tdwg.org/dwc/geospatial/version/FootprintSpatialFit-2007-04-17,FootprintSpatialFit,Footprint Spatial Fit,"A measure of how well the geometry expressed in the footprint match the original spatial representation, as a ratio of the area of the footprint given to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The FootprintSpatialFit is undefined if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the FootprintSpatialFit is 1. Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/FootprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b), -http://rs.tdwg.org/dwc/geospatial/version/FootprintWKT-2007-04-17,FootprintWKT,Footprint WKT,"A Well-Known Text (WKT; see http://en.wikipedia.org/wiki/Well-known_text) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The same place may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for the same occurrence. Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/FootprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b), -http://rs.tdwg.org/dwc/geospatial/version/GeodeticDatum-2007-04-17,GeodeticDatum,Geodetic Datum,"The geodetic datum to which the latitude and longitude refer. If not known, use ""not recorded"". This concept should be vocabulary-controlled. Example: ""WGS84""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HorizontalDatum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum, -http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceProtocol-2007-04-17,GeoreferenceProtocol,Georeference Protocol,"A reference to the methods used for determining the coordinates and uncertainties. Example: ""http://manisnet.org/GeorefGuide.html"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/GeorefMethod-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod, -http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceRemarks-2007-04-17,GeoreferenceRemarks,Georeference Remarks,"Comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in GeoreferenceProtocol.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/LatLongComments-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks, -http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceSources-2007-04-17,GeoreferenceSources,Georeference Sources,"A list of maps, gazetteers or other resources used to georeference the locality. The content of this concept is meant to be specific enough to allow anyone in the future to use the same resource to georeference the same locality. Examples: ""USGS 1:24000 Florence Montana Quad"", ""Terrametrics 2008 on Google Earth""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, -http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceVerificationStatus-2007-04-17,GeoreferenceVerificationStatus,Georeference Verification Status,"A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. This element should be vocabulary-controlled. Examples: ""requires verification"", ""verified by collector"", ""verified by curator"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus, -http://rs.tdwg.org/dwc/geospatial/version/PointRadiusSpatialFit-2007-04-17,PointRadiusSpatialFit,Point Radius Spatial Fit,"A measure of how well the circle defined by the coordinates and uncertainty match the original spatial representation, as a ratio of the area of the circle to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The PointRadiusSpatialFit is undefined if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the PointRadiusSpatialFit is 1. Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/PointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit, -http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinates-2007-04-17,VerbatimCoordinates,Verbatim Coordinates,"A text representation of the coordinate data (Latitude/ Longitude, UTM, TRS, etc.) from its original source if it cannot be separated into its component parts. Example: ""470999 1234300"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}, -http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinateSystem-2007-04-17,VerbatimCoordinateSystem,Verbatim Coordinate System,"The name of the system in which the verbatim geographic coordinates were recorded. Examples: ""decimal degrees"", ""degrees minutes seconds"", ""degrees decimal minutes"", ""UTM""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/OriginalCoordinateSystem-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem, -http://rs.tdwg.org/dwc/geospatial/version/VerbatimLatitude-2007-04-17,VerbatimLatitude,Verbatim Latitude,"A text representation of the Latitude part of the coordinate data from its original source. Example: 47d09'99""N",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLatitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude, -http://rs.tdwg.org/dwc/geospatial/version/VerbatimLongitude-2007-04-17,VerbatimLongitude,Verbatim Longitude,A text representation of the Longitude part of the coordinate data from its original source. Example: -122.43254,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLongitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude, -http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2020-10-13,degreeOfEstablishment,Degree of Establishment (IRI),"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcdoe/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcdoe/values/d003`, `http://rs.tdwg.org/dwcdoe/values/d005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/degreeOfEstablishment,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2015-03-27,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2020-10-13,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,"Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcem/values/e001`, `http://rs.tdwg.org/dwcem/values/e005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/footprintSRS-2015-03-27,footprintSRS,Footprint SRS (IRI),"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintSRS,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2015-03-27,georeferenceVerificationStatus,Georeference Verification Status (IRI),A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/lifeStage-2015-03-27,lifeStage,Life Stage (IRI),The age class or life stage of the biological individual(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/lifeStage,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/pathway-2020-10-13,pathway,Pathway (IRI),The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcpw/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcpw/values/p002`, `http://rs.tdwg.org/dwcpw/values/p046`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/pathway,not in ABCD, -http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2015-03-27,samplingProtocol,Sampling Protocol (IRI),The method or protocol used during an Event.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/samplingProtocol,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2009-09-21,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.","Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedScientificName-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2017-10-06,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.",,`Tamias minimus` (valid name for Eutamias minimus).,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2009-09-21,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2017-10-06,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/acceptedScientificName-2009-07-06,acceptedScientificName,Accepted Scientific Name,The currently valid (zoological) or accepted (botanical) name for the scientificName.,"Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedScientificName,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedScientificNameID-2009-07-06,acceptedScientificNameID,Accepted Scientific Name ID,A unique identifier for the acceptedScientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedScientificNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/AcceptedTaxon-2008-11-19,AcceptedTaxon,Accepted Taxon,The currently valid (zoological) or accepted (botanical) name for the ScientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AcceptedTaxon,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/AcceptedTaxonID-2009-01-21,AcceptedTaxonID,Accepted Taxon ID,A global unique identifier for the parent to the AcceptedTaxon.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AcceptedTaxonID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedTaxonID-2009-08-24,acceptedTaxonID,Accepted Taxon ID,An identifier for the name of the currently valid (zoological) or accepted (botanical) taxon. See acceptedTaxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedScientificNameID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedTaxonName-2009-04-24,acceptedTaxonName,Accepted Taxon Name,The currently valid (zoological) or accepted (botanical) name for the scientificName.,"Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/AcceptedTaxon-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonName,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/acceptedTaxonNameID-2009-04-24,acceptedTaxonNameID,Accepted Taxon Name ID,A unique identifier for the acceptedTaxonName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/AcceptedTaxonID-2009-01-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/AccessConstraints-2008-11-19,AccessConstraints,Access Constraints,A description of constraints on the use of the data as shared or access to further data that is not shared.,"Example: ""not-for-profit use only"".",,http://rs.tdwg.org/dwc/terms/Sample,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AccessConstraints,DataSets/DataSet/Units/Unit/IPRStatements, -http://rs.tdwg.org/dwc/terms/version/accordingTo-2009-01-21,accordingTo,According To,Abstract term to attribute information to a source.,,,,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/accordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/accuracy-2009-01-21,accuracy,Accuracy,Abstract term to capture error information about a measurement or fact.,,,,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/accuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/associatedMedia-2009-04-24,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.","Example: ""http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/ImageURL-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects, -http://rs.tdwg.org/dwc/terms/version/associatedMedia-2014-10-23,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG"", ""http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects, -http://rs.tdwg.org/dwc/terms/version/associatedMedia-2017-10-06,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.",,"`http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG`, `http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects,simple -http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2009-04-24,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,"Example: ""sibling of FMNH:Mammal:1234; sibling of FMNH:Mammal:1235""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/RelatedCatalogedItems-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, -http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2014-10-23,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,The recommended best practice is to separate the values with a vertical bar (' | ').,,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, -http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2017-10-06,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,,`http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,simple -http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2014-10-23,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""sibling of MXA-232"", ""mother of MXA-231 | mother of MXA-232""",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2017-10-06,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.,,"`""sibling of"":""DMNS:Mamm http://arctos.database.museum/guid/DMNS:Mamm:14171""`, `""parent of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:196208"" | ""parent of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:196523"" | ""sibling of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:142638""`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/associatedReferences-2009-04-24,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","Examples: ""http://www.sciencemag.org/cgi/content/abstract/322/5899/261"", ""Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences, -http://rs.tdwg.org/dwc/terms/version/associatedReferences-2014-10-23,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://www.sciencemag.org/cgi/content/abstract/322/5899/261"", ""Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767."", ""Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources."".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences, -http://rs.tdwg.org/dwc/terms/version/associatedReferences-2017-10-06,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.",,"`http://www.sciencemag.org/cgi/content/abstract/322/5899/261`, `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`, `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences,simple -http://rs.tdwg.org/dwc/terms/version/associatedSequences-2009-04-24,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.","Example: ""GenBank: U34853.1""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/GenBankNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, -http://rs.tdwg.org/dwc/terms/version/associatedSequences-2014-10-23,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://www.ncbi.nlm.nih.gov/nuccore/U34853.1"", ""http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedSequences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, -http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2009-04-24,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,"Example: ""host: Quercus alba""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa, -http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2014-10-23,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,"The recommended best practice is to separate the values with a vertical bar (' | '), and to separate the relationship from the taxon with a colon (':'). Examples: ""host: Quercus alba"", ""parasitoid of:Cyclocephala signaticollis | predator of Apis mellifera"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa, -http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2017-10-06,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,,"`""host"":""Quercus alba""`, `""parasitoid of"":""Cyclocephala signaticollis"" | ""predator of"":""Apis mellifera""`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa,simple -http://rs.tdwg.org/dwc/terms/version/basionym-2009-04-24,basionym,Basionym,The basionym (botany) or basonym (bacteriology) of the scientificName.,"Example: ""Pinus abies""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basionym,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/basionymID-2009-04-24,basionymID,Basionym ID,A unique identifier for the basionym (botany) or basonym (bacteriology) of the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basionymID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-04-24,basisOfRecord,Basis of Record,The specific nature of the data record - a subtype of the dcterms:type. Recommended best practice is to use a controlled vocabulary such as the Darwin Core Type Vocabulary (http://rs.tdwg.org/dwc/terms/type-vocabulary/index.htm).,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/BasisOfRecord-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-09-11,basisOfRecord,Basis of Record,The specific nature of the data record - a subtype of the dcterms:type. Recommended best practice is to use a controlled vocabulary.,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-12-07,basisOfRecord,Basis of Record,The specific nature of the data record. Recommended best practice is to use a controlled vocabulary such as the Darwin Core Type Vocabulary (http://rs.tdwg.org/dwc/terms/type-vocabulary/index.htm).,"Examples: ""PreservedSpecimen"", ""FossilSpecimen"", ""LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-12-07,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2014-10-23,basisOfRecord,Basis of Record,The specific nature of the data record.,"Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: ""PreservedSpecimen"", ""FossilSpecimen"", ""LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-12-07,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, -http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2017-10-06,basisOfRecord,Basis of Record,The specific nature of the data record.,Recommended best practice is to use the standard label of one of the Darwin Core classes.,"`PreservedSpecimen`, `FossilSpecimen`, `LivingSpecimen`, `MaterialSample`, `Event`, `HumanObservation`, `MachineObservation`, `Taxon`, `Occurrence`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis,simple -http://rs.tdwg.org/dwc/terms/version/bed-2009-04-24,bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Bed-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/bed,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/behavior-2009-04-24,behavior,Behavior,A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.,"Examples: ""roosting"", ""foraging"", ""running""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/behavior,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/binomial-2008-11-19,binomial,Binomial,The combination of genus and first (species) epithet of the scientificName.,"Example: ""Ctenomys sociabilis""",,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/binomial,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString, -http://rs.tdwg.org/dwc/terms/version/catalogNumber-2009-04-24,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,"Examples: ""2008.1334"", ""145732a"", ""145732""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CatalogNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID, -http://rs.tdwg.org/dwc/terms/version/CatalogNumberNumeric-2008-11-19,CatalogNumberNumeric,Catalog Number Numeric,"The numeric value of the catalogNumber, used to facilitate numerical sorting and searching by ranges.",,,http://rs.tdwg.org/dwc/terms/Occurrence,2008-11-19,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric,DataSets/DataSet/Units/Unit/UnitIDNumeric, -http://rs.tdwg.org/dwc/terms/version/class-2009-04-24,class,Class,The name of the class in which the scientificName is classified.,"Example: ""Mammalia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Class-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, -http://rs.tdwg.org/dwc/terms/version/class-2009-08-24,class,Class,The full scientific name of the class in which the taxon is classified.,"Examples: ""Mammalia"", ""Hepaticopsida""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/class-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, -http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-04-24,collectionCode,Collection Code,The name (or acronym) identifying the collection or data set from which the record was derived.,"Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CollectionCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-08-24,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.","Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-09-11,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.","Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/collectionID-2009-04-24,collectionID,Collection ID,"An identifier for the collection or dataset from which the record was derived. For physical specimens, the recommended best practice is to use the identifier in a collections registry such as the Biodiversity Collections Index (http://www.biodiversitycollectionsindex.org/).","Example: ""urn:lsid:biocol.org:col:34818""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/collectionID-2009-09-11,collectionID,Collection ID,An identifier for the collection or dataset from which the record was derived.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: ""http://biocol.org/urn:lsid:biocol.org:col:1001"", ""http://grbio.org/cool/p5fp-c036"".",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/collectionID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/continent-2009-04-24,continent,Continent,The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Africa"", ""Antarctica"", ""Asia"", ""Europe"", ""North America"", ""Oceania"", ""South America""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Continent-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent, -http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2009-04-24,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.,"Examples: ""0.00001"" (normal GPS limit for decimal degrees), ""0.000278"" (nearest second), ""0.01667"" (nearest minute), ""1.0"" (nearest degree)",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement, -http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2009-04-24,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.","Examples: ""30"" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time), ""71"" (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/CoordinateUncertaintyInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters, -http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2017-10-06,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.",,`30` (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time). `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple -http://rs.tdwg.org/dwc/terms/version/country-2009-04-24,country,Country,The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Denmark"", ""Colombia"", ""España""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Country-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name, -http://rs.tdwg.org/dwc/terms/version/country-2017-10-06,country,Country,The name of the country or major administrative unit in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Denmark`, `Colombia`, `España`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/country-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name,simple -http://rs.tdwg.org/dwc/terms/version/countryCode-2009-04-24,countryCode,Country Code,The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.,"Examples: ""AR"" for Argentina, ""SV"" for El Salvador",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/countryCode,DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code, -http://rs.tdwg.org/dwc/terms/version/county-2009-04-24,county,County,"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.","Examples: ""Missoula"", ""Los Lagos"", ""Mataró""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/County-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/county,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County, -http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2009-04-24,dataGeneralizations,Data Generalizations,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.,"Example: ""Coordinates generalized from original GPS coordinates to the nearest half degree grid cell""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/Generalizations-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/Dataset-2008-11-19,Dataset,Dataset,The category of information pertaining to a logical set of records.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Dataset,DataSets/DataSet, -http://rs.tdwg.org/dwc/terms/version/datasetID-2009-04-24,datasetID,Dataset ID,An identifier for the data set. May be a global unique identifier or an identifier specific to a collection or institution.,,,http://rs.tdwg.org/dwc/terms/Dataset,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID, -http://rs.tdwg.org/dwc/terms/version/datasetID-2009-09-11,datasetID,Dataset ID,An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.,,,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/datasetID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID, -http://rs.tdwg.org/dwc/terms/version/datasetName-2009-09-11,datasetName,Dataset Name,The name identifying the data set from which the record was derived.,"Examples: ""Grinnell Resurvey Mammals"", ""Lacey Ctenomys Recaptures""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetName,DataSets/DataSet/Units/Unit/SourceID, -http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-04-24,dateIdentified,Date Identified,"The date on which the subject was identified as representing the taxon given in the scientificName. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/DateIdentified-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, -http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-08-24,dateIdentified,Date Identified,"The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Identification,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, -http://rs.tdwg.org/dwc/terms/version/dateIdentified-2017-10-06,dateIdentified,Date Identified,The date on which the subject was identified as representing the Taxon.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText,simple -http://rs.tdwg.org/dwc/terms/version/day-2009-04-24,day,Day,The integer day of the month on which the Event occurred.,"Examples: ""9"", ""28""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2009-04-24,decimalLatitude,Decimal Latitude,"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.","Example: ""-41.0983423""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/DecimalLatitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal, -http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2009-04-24,decimalLongitude,Decimal Longitude,"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.","Example: ""-121.1761111""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/DecimalLongitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal, -http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2020-10-13,degreeOfEstablishment,Degree of Establishment,"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcdoe/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `captive`, `cultivated`, `released`, `failing`, `casual`, `reproducing`, `established`, `colonising`, `invasive`, `widespreadInvasive`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/degreeOfEstablishment,,simple -http://rs.tdwg.org/dwc/terms/version/disposition-2009-04-24,disposition,Disposition,The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary.,"Examples: ""in collection"", ""missing"", ""voucher elsewhere"", ""duplicates elsewhere""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/Disposition-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition, -http://rs.tdwg.org/dwc/terms/version/DwCType-2008-11-19,DwCType,Darwin Core Type,"The set of classes specified by the Darwin Core Type Vocabulary, used to categorize the nature or genre of the resource.",,,,2008-11-19,deprecated,,http://purl.org/dc/dcam/VocabularyEncodingScheme,http://rs.tdwg.org/dwc/terms/DwCType,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2009-04-24,dynamicProperties,Dynamic Properties,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content such as key-value pairs.","Examples: ""tragusLengthInMeters=0.014; weightInGrams=120"", ""heightInMeters=1.5"", ""natureOfID=expert identification; identificationEvidence=cytochrome B sequence"", ""relativeHumidity=28; airTemperatureInC=22; sampleSizeInKilograms=10"", ""aspectHeading=277; slopeInDegrees=6"", ""iucnStatus=vulnerable; taxonDistribution=Neuquen, Argentina""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2014-10-23,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.","The recommended best practice is to use a key:value encoding schema such as JSON. Examples: ""{""heightInMeters"":1.5}"", ""{""tragusLengthInMeters"":0.014, ""weightInGrams"":120}"", ""{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}"", ""{""relativeHumidity"":28, ""airTemperatureInCelcius"":22, ""sampleSizeInKilograms"":10}"", ""{""aspectHeading"":277, ""slopeInDegrees"":6}"", ""{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}"".",,http://rs.tdwg.org/dwc/terms/all,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2009-04-24,earliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,"Examples: ""Atlantic"", ""Boreal"", ""Skullrockian""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestAgeOrLowestStage-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/EarliestDateCollected-2008-11-19,EarliestDateCollected,Earliest Date Collected,"The earliest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://rs.tdwg.org/dwc/dwcore/version/EarliestDateCollected-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EarliestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2009-04-24,earliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.","Examples: ""Phanerozoic"", ""Proterozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEonOrLowestEonothem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2009-04-24,earliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,"Examples: ""Holocene"", ""Pleistocene"", ""Ibexian Series""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEpochOrLowestSeries-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2009-04-24,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,"Examples: ""Cenozoic"", ""Mesozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEraOrLowestErathem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2009-04-24,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,"Examples: ""Neogene"", ""Tertiary"", ""Quaternary""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestPeriodOrLowestSystem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd, -http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple -http://rs.tdwg.org/dwc/terms/version/EndTimeOfDay-2008-11-19,EndTimeOfDay,End Time of Day,"The time of day when the event ended, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/EndTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EndTimeOfDay,DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd, -http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2009-04-24,establishmentMeans,Establishment Means,The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""native"", ""introduced"", ""naturalised"", ""invasive"", ""managed""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans, -http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2017-10-06,establishmentMeans,Establishment Means,The process by which the biological individual(s) represented in the Occurrence became established at the location.,Recommended best practice is to use a controlled vocabulary.,"`native`, `introduced`, `naturalised`, `invasive`, `managed`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple -http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-13,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, uncertain`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple -http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-28,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, `uncertain`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-28,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple -http://rs.tdwg.org/dwc/terms/version/Event-2009-04-29,Event,Event,The category of information pertaining to an event (an action that occurs at a place and during a period of time).,,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingEvent-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering, -http://rs.tdwg.org/dwc/terms/version/Event-2014-10-23,Event,Event,An action that occurs at some location during some time.,Examples: A specimen collection process. A machine observation.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Event-2009-04-29,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering, -http://rs.tdwg.org/dwc/terms/version/EventAttribute-2008-11-19,EventAttribute,Event Attribute,Container class for information about attributes related to a given sampling event.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/EventAttribute,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/EventAttributeAccuracy-2009-01-18,EventAttributeAccuracy,Event Attribute Accuracy,The description of the error associated with the EventAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeAccuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedBy-2009-01-23,EventAttributeDeterminedBy,Event Attribute Determined By,The agent responsible for having determined the value of the measurement or characteristic of the sampling event.,"Example: ""Robert Hijmans""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedBy,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedDate-2009-01-23,EventAttributeDeterminedDate,Event Attribute Determined Date,The date on which the the measurement or characteristic of the sampling event was made.,"Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/EventAttributeID-2008-11-19,EventAttributeID,Event Attribute ID,An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/EventAttributeRemarks-2008-11-19,EventAttributeRemarks,Event Attribute Remarks,Comments or notes accompanying the measurement or characteristic of the sampling event.,"Example: ""temperature taken at 15:00""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/eventAttributes-2009-04-24,eventAttributes,Event Attributes,A list (concatenated and separated) of additional measurements or characteristics of the Event.,"Example: ""Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventAttributes,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19,EventAttributeType,Event Attribute Type,The nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.,"Example: ""Temperature""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeType,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/EventAttributeUnit-2008-11-19,EventAttributeUnit,Event Attribute Unit,The units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.,"Example: ""C""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/EventAttributeValue-2008-11-19,EventAttributeValue,Event Attribute,The value of the measurement or characteristic of the sampling event.,"Example: ""22""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeValue,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/eventDate-2009-04-24,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EarliestDateCollected-2008-11-19|http://rs.tdwg.org/dwc/terms/version/LatestDateCollected-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/terms/version/eventDate-2017-10-06,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.",Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple -http://rs.tdwg.org/dwc/terms/version/eventID-2009-04-24,eventID,Event ID,An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingEventID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventID,DataSets/DataSet/Units/Unit/Gathering/Code, -http://rs.tdwg.org/dwc/terms/version/EventMeasurement-2008-11-19,EventMeasurement,Event Measurement,The category of information pertaining to measurements associated with an event.,,,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/EventMeasurement,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementAccuracy-2009-04-24,eventMeasurementAccuracy,Event Measurement Accuracy,The description of the error associated with the EventAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeAccuracy-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementAccuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedBy-2009-04-24,eventMeasurementDeterminedBy,Event Measurement Determined By,The agent responsible for having determined the value of the measurement or characteristic of the event.,"Example: ""Robert Hijmans""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedBy-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedBy,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedDate-2009-04-24,eventMeasurementDeterminedDate,Event Measurement Determined Date,"The date on which the the measurement or characteristic of the event was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedDate-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedDate,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementID-2009-04-24,eventMeasurementID,Event Measurement ID,An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementRemarks-2009-04-24,eventMeasurementRemarks,Event Measurement Remarks,Comments or notes accompanying the measurement or characteristic of the event.,"Example: ""temperature taken at 15:00""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementType-2009-04-24,eventMeasurementType,Event Measurement Type,The nature of the measurement or characteristic of the event. Recommended best practice is to use a controlled vocabulary.,"Example: ""temperature""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementType,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementUnit-2009-04-24,eventMeasurementUnit,Event Measurement Unit,The units for the value of the measurement or characteristic of the event. Recommended best practice is to use International System of Units (SI) units.,"Example: ""C""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeUnit-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/eventMeasurementValue-2009-04-24,eventMeasurementValue,Event Measurement Value,The value of the measurement or characteristic of the event.,"Example: ""22""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeValue-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementValue,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/eventRemarks-2009-04-24,eventRemarks,Event Remarks,Comments or notes about the Event.,"Example: ""after the recent rains the river is nearly at flood stage""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventRemarks,DataSets/DataSet/Units/Unit/Gathering/Notes, -http://rs.tdwg.org/dwc/terms/version/eventTime-2009-04-24,eventTime,Event Time,"The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""14:07-0600"" is 2:07pm in the time zone six hours earlier than UTC, ""08:40:21Z"" is 8:40:21am UTC, ""13:00:00Z/15:30:00Z"" is the interval between 1pm UTC and 3:30pm UTC.",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EndTimeOfDay-2008-11-19|http://rs.tdwg.org/dwc/terms/version/StartTimeOfDay-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, -http://rs.tdwg.org/dwc/terms/version/eventTime-2017-10-06,eventTime,Event Time,The time or interval during which an Event occurred.,Recommended best practice is to use a time that conforms to ISO 8601:2004(E).,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC). `08:40:21Z` (8:40:21am UTC). `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventTime-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple -http://rs.tdwg.org/dwc/terms/version/family-2009-04-24,family,Family,The name of the family in which the scientificName is classified.,"Example: ""Ctenomyidae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Family-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, -http://rs.tdwg.org/dwc/terms/version/family-2009-08-24,family,Family,The full scientific name of the family in which the taxon is classified.,"Examples: ""Felidae"", ""Monocleaceae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/family-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, -http://rs.tdwg.org/dwc/terms/version/fieldNotes-2009-04-24,fieldNotes,Field Notes,"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 Event.","Example: ""notes available in Grinnell-Miller Library""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNotes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes, -http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,"Example: ""RV Sol 87-03-08""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code, -http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b), -http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b),simple -http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.","Example: The WKT for the standard WGS84 SRS (EPSG:4326) is ""GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]"" without the enclosing quotes.",,http://purl.org/dc/terms/Location,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/footprintSRS-2018-09-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.","Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintWKT-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b), -http://rs.tdwg.org/dwc/terms/version/formation-2009-04-24,formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,"Examples: ""Notch Peak Fromation"", ""House Limestone"", ""Fillmore Formation""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Formation-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/formation,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2014-10-23,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen, -http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2017-10-06,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen, -http://rs.tdwg.org/dwc/terms/version/Generalizations-2008-11-19,Generalizations,Generalizations,Actions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.,"Examples: ""Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"", ""locality information given only to nearest county"".",,http://rs.tdwg.org/dwc/terms/all,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/Generalizations,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/genus-2009-04-24,genus,Genus,The name of the genus in which the scientificName is classified.,"Example: ""Quercus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Genus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, -http://rs.tdwg.org/dwc/terms/version/genus-2009-08-24,genus,Genus,The full scientific name of the genus in which the taxon is classified.,"Examples: ""Puma"", ""Monoclea""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/genus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, -http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2009-04-24,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value ""unknown"".","Examples: ""EPSG:4326"", ""WGS84"", ""NAD27"", ""Campo Inchauspe"", ""European 1950"", ""Clarke 1866""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeodeticDatum-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum, -http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2009-07-06,GeologicalContext,Geological Context,"The category of information pertaining to a location within a geological context, such as stratigraphy.",,,,2009-07-06,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, -http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2014-10-23,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",Example: A lithostratigraphic layer.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2009-07-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, -http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2017-10-06,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",,A lithostratigraphic layer.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, -http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2009-07-06,geologicalContextID,Geological Context ID,"An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.",,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geologicalContextID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2009-04-24,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.","Examples: ""Kristina Yamamoto (MVZ); Janet Fang (MVZ)"", ""Brad Millen (ROM)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Brad Millen (ROM)"", ""Kristina Yamamoto (MVZ) | Janet Fang (MVZ)"".",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,georeferencedDate,Georeferenced Date,"The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://purl.org/dc/terms/Location,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.","Examples: ""Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility."", ""MaNIS/HerpNet/ORNIS Georeferencing Guidelines"", ""Georeferencing Quick Reference Guide""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceProtocol-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod, -http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.`, `MaNIS/HerpNet/ORNIS Georeferencing Guidelines`, `Georeferencing Quick Reference Guide`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,georeferenceRemarks,Georeference Remarks,"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 georeferenceProtocol.","Example: ""assumed distance by road (Hwy. 101)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceRemarks-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks, -http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","Examples: ""USGS 1:24000 Florence Montana Quad; Terrametrics 2008 on Google Earth""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceSources-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, -http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""GeoLocate"", ""USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth"".",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, -http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2017-10-06,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`https://www.geonames.org/`, `USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth`, `GeoLocate`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple -http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2009-04-24,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary.,"Examples: ""requires verification"", ""verified by collector"", ""verified by curator"".",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceVerificationStatus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus, -http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2017-10-06,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description.,Recommended best practice is to use a controlled vocabulary.,"`requires verification`, `verified by collector`, `verified by curator`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple -http://rs.tdwg.org/dwc/terms/version/group-2009-04-24,group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Group-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/group,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/habitat-2009-04-24,habitat,Habitat,A category or description of the habitat in which the Event occurred.,"Examples: ""oak savanna"", ""pre-cordilleran steppe""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/habitat,DataSets/DataSet/Units/Unit/Gathering/Biotope/Text, -http://rs.tdwg.org/dwc/terms/version/higherClassification-2009-08-24,higherClassification,Higher Classification,"A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record. Recommended best practice is to order the list starting with the highest rank and separating the names for each rank with a semi-colon ("";"").","Example: ""Animalia;Chordata;Vertebrata;Mammalia;Theria;Eutheria;Rodentia;Hystricognatha;Hystricognathi;Ctenomyidae;Ctenomyini;Ctenomys""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/higherTaxonName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/higherClassification-2014-10-23,higherClassification,Higher Classification,A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.,"The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from the highest taxonomic rank to the lowest. Examples: ""Animalia"", ""Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys"".",,http://rs.tdwg.org/dwc/terms/Taxon,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/higherClassification-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/higherGeography-2009-04-24,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"Example: ""South America; Argentina; Patagonia; Parque Nacional Nahuel Huapi; Neuquén; Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and Los Lagos in County.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/HigherGeography-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, -http://rs.tdwg.org/dwc/terms/version/higherGeography-2014-10-23,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from least specific to most specific. Examples: ""North Atlantic Ocean"", ""South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and ""Los Lagos"" in County.",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/higherGeography-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, -http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2009-04-24,higherGeographyID,Higher Geography ID,An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Example: ""TGN: 1002002"" for Prov. Tierra del Fuego, Argentina",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeographyID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/HigherTaxon-2009-01-21,HigherTaxon,Higher Taxon,A list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.,"Example: ""Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/HigherTaxon,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, -http://rs.tdwg.org/dwc/terms/version/higherTaxonconceptID-2009-04-24,higherTaxonconceptID,Higher Taxon Concept ID,A unique identifier for the taxon concept less specific than that given in the taxonConceptID.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonconceptID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/HigherTaxonID-2009-01-21,HigherTaxonID,Higher Taxon ID,A global unique identifier for the parent to the taxon.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/HigherTaxonID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/higherTaxonName-2009-04-24,higherTaxonName,Higher Taxon Name,A list (concatenated and separated) of the names for the taxonomic ranks less specific than that given in the scientificName.,"Example: ""Animalia; Chordata; Vertebrata; Mammalia; Theria; Eutheria; Rodentia; Hystricognatha; Hystricognathi; Ctenomyidae; Ctenomyini; Ctenomys""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/HigherTaxon-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, -http://rs.tdwg.org/dwc/terms/version/higherTaxonNameID-2009-04-24,higherTaxonNameID,Higher Taxon Name ID,A unique identifier for the name of the next higher rank than the scientificName in a taxonomic classification. See higherTaxonName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/HigherTaxonID-2009-01-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2009-04-24,highestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/HighestBiostratigraphicZone-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/HumanObservation-2014-10-23,HumanObservation,Human Observation,An output of a human observation process.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation, -http://rs.tdwg.org/dwc/terms/version/HumanObservation-2017-10-06,HumanObservation,Human Observation,An output of a human observation process.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/HumanObservation-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation, -http://rs.tdwg.org/dwc/terms/version/Identification-2008-11-19,Identification,Identification,The category of information pertaining to taxonomic determinations (the assignment of a scientific name).,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification, -http://rs.tdwg.org/dwc/terms/version/Identification-2014-10-23,Identification,Identification,"A taxonomic determination (e.g., the assignment to a taxon).",Example: A subspecies determination of an organism.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Identification-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification, -http://rs.tdwg.org/dwc/terms/version/identificationAttributes-2009-04-24,identificationAttributes,Identification Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Identification.","Example: ""natureOfID=expert identification; identificationEvidence=cytochrome B sequence""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationAttributes,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/identificationID-2009-04-24,identificationID,Identification ID,An identifier for the 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.,,,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2009-04-24,identificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to express the determiner's doubts about the Identification.","Examples: 1) For the determination ""Quercus aff. agrifolia var. oxyadenia"", identificationQualifier would be ""aff. agrifolia var. oxyadenia"" with accompanying values ""Quercus"" in genus, ""agrifolia"" in specificEpithet, ""oxyadenia"" in infraspecificEpithet, and ""var."" in rank. 2) For the determination ""Quercus agrifolia cf. var. oxyadenia"", identificationQualifier would be ""cf. var. oxyadenia "" with accompanying values ""Quercus"" in genus, ""agrifolia"" in specificEpithet, ""oxyadenia"" in infraspecificEpithet, and ""var."" in rank.",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/IdentificationQualifier-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier, -http://rs.tdwg.org/dwc/terms/version/identificationReferences-2009-04-24,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.","Example: ""Aves del Noroeste Patagonico. Christie et al. 2004.""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References, -http://rs.tdwg.org/dwc/terms/version/identificationReferences-2014-10-23,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Aves del Noroeste Patagonico. Christie et al. 2004."", ""Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49."".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/identificationReferences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References, -http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2009-04-24,identificationRemarks,Identification Remarks,Comments or notes about the Identification.,"Example: ""Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationRemarks,DataSets/DataSet/Units/Unit/Identifications/Identification/Notes, -http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2011-10-16,identificationVerificationStatus,Identification Verification Status,A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.,"Examples: ""0"", ""4""",,http://rs.tdwg.org/dwc/terms/Identification,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationVerificationStatus,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-04-24,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the scientificName.","Example: ""James L. Patton"", ""Theodore Pappenfuss; Robert Macey""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/IdentifiedBy-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, -http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-08-24,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.","Examples: ""James L. Patton"", ""Theodore Pappenfuss; Robert Macey""",,http://rs.tdwg.org/dwc/terms/Identification,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, -http://rs.tdwg.org/dwc/terms/version/identifiedBy-2014-10-23,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""James L. Patton"", ""Theodore Pappenfuss | Robert Macey"".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, -http://rs.tdwg.org/dwc/terms/version/individualCount-2009-04-24,individualCount,Individual Count,The number of individuals represented present at the time of the Occurrence.,"Examples: ""1"", ""25""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/IndividualCount-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/terms/version/individualCount-2017-10-06,individualCount,Individual Count,The number of individuals represented present at the time of the Occurrence.,,"`0`, `1`, `25`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/individualCount-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue,simple -http://rs.tdwg.org/dwc/terms/version/individualID-2009-04-24,individualID,Individual ID,An identifier for an individual or named group of individual organisms represented in the Occurrence. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.,"Examples: ""U.amer. 44"", ""Smedley"", ""Orca J 23""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualID,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/DataSet/Units/Unit/SpecimenUnit/Accessions/AccessionNumber, -http://rs.tdwg.org/dwc/terms/version/informationWithheld-2009-04-24,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.","Examples: ""location information not given for endangered species"", ""collector identities withheld"", ""ask about tissue samples""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InformationWithheld-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld, -http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-04-24,infraspecificEpithet,Infraspecific Epithet,The name of the second or subspecies epithet of the scientificName.,"Example: ""oxyadenia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InfraspecificEpithet-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, -http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-08-24,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.","Examples: ""concolor"", ""oxyadenia"", ""sayi""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, -http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2017-10-06,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.",,"`concolor`, `oxyadenia`, `sayi`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet},simple -http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-04-24,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InstitutionCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, -http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-08-24,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO"", ""University of California Museum of Paleontology (UCMP)""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, -http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-09-11,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO"", ""University of California Museum of Paleontology (UCMP)""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, -http://rs.tdwg.org/dwc/terms/version/institutionID-2009-09-11,institutionID,Institution ID,An identifier for the institution having custody of the object(s) or information referred to in the record.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: ""http://biocol.org/urn:lsid:biocol.org:col:34777"", ""http://grbio.org/cool/km06-gtbn"".",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionID,DataSets/DataSet/Units/Unit/SourceInstitutionID, -http://rs.tdwg.org/dwc/terms/version/island-2009-04-24,island,Island,The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Isla Victoria"", ""Vancouver"", ""Viti Levu"", ""Zanzibar""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Island-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island, -http://rs.tdwg.org/dwc/terms/version/islandGroup-2009-04-24,islandGroup,Island Group,The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Alexander Archipelago"", ""Seychelles""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/IslandGroup-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/islandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group, -http://rs.tdwg.org/dwc/terms/version/kingdom-2009-04-24,kingdom,Kingdom,The name of the kingdom in which the scientificName is classified.,"Example: ""Animalia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Kingdom-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, -http://rs.tdwg.org/dwc/terms/version/kingdom-2009-08-24,kingdom,Kingdom,The full scientific name of the kingdom in which the taxon is classified.,"Examples: ""Animalia"", ""Plantae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/kingdom-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, -http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2009-04-24,latestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,"Examples: ""Atlantic"", ""Boreal"", ""Skullrockian""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestAgeOrHighestStage-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/LatestDateCollected-2008-11-19,LatestDateCollected,Latest Date Collected,"The latest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://rs.tdwg.org/dwc/dwcore/version/LatestDateCollected-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/LatestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, -http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2009-04-24,latestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.","Examples: ""Phanerozoic"", ""Proterozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/LatestEonOrLowestEonothem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2009-04-24,latestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,"Examples: ""Holocene"", ""Pleistocene"", ""Ibexian Series""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEpochOrHighestSeries-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2009-04-24,latestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,"Examples: ""Cenozoic"", ""Mesozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEraOrHighestErathem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2009-04-24,latestPeriodOrHighestSystem,Latest Period Or Highest System,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.,"Examples: ""Neogene"", ""Tertiary"", ""Quaternary""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestPeriodOrHighestSystem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/lifeStage-2009-04-24,lifeStage,Life Stage,The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.,"Examples: ""egg"", ""eft"", ""juvenile"", ""adult"", ""2 adults 4 juveniles""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/LifeStage-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage", -http://rs.tdwg.org/dwc/terms/version/lifeStage-2017-10-06,lifeStage,Life Stage,The age class or life stage of the biological individual(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary.,"`egg`, `eft`, `juvenile`, `adult`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/lifeStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage",simple -http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2009-04-24,lithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LithostratigraphicTerms-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms, -http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2014-10-23,LivingSpecimen,Living Specimen,A specimen that is alive.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen, -http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2017-10-06,LivingSpecimen,Living Specimen,A specimen that is alive.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen, -http://rs.tdwg.org/dwc/terms/version/locality-2009-04-24,locality,Locality,"The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.","Example: ""Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Locality-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, -http://rs.tdwg.org/dwc/terms/version/locality-2017-10-06,locality,Locality,"The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.",,"`Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/locality-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple -http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2009-08-24,locationAccordingTo,Location According To,"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.","Examples: ""Getty Thesaurus of Geographic Names"", ""GADM""",,http://purl.org/dc/terms/Location,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/locationAttributes-2009-04-24,locationAttributes,Location Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the location.","Example: ""aspectheading=277; slopeindegrees=6""",,http://purl.org/dc/terms/Location,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAttributes,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/locationID-2009-04-24,locationID,Location ID,An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.,,,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingLocationID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/locationRemarks-2009-04-24,locationRemarks,Location Remarks,Comments or notes about the Location.,"Example: ""under water since 2005""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingLocationRemarks-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, -http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2009-04-24,lowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LowestBiostratigraphicZone-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/MachineObservation-2014-10-23,MachineObservation,Machine Observation,An output of a machine observation process.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation, -http://rs.tdwg.org/dwc/terms/version/MachineObservation-2017-10-06,MachineObservation,Machine Observation,An output of a machine observation process.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MachineObservation-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation, -http://rs.tdwg.org/dwc/terms/version/MaterialSample-2013-03-28,MaterialSample,Material Sample,"The category of information pertaining to the physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,,,2013-03-28,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/MaterialSample-2014-10-23,MaterialSample,Material Sample,"A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2013-03-28|http://rs.tdwg.org/dwc/dwctype/version/MaterialSample-2013-06-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/MaterialSample-2017-10-06,MaterialSample,Material Sample,"A physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/materialSampleID-2013-05-25,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.",,,http://rs.tdwg.org/dwc/terms/MaterialSample,2013-05-25,superseded,http://gensc.org/ns/mixs/version/source_mat_id-2011-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/materialSampleID-2017-10-06,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.",,`06809dc5-f143-459a-be1a-6f03e63fc083`,http://rs.tdwg.org/dwc/terms/MaterialSample,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/materialSampleID-2013-05-25,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2009-04-24,maximumDepthInMeters,Maximum Depth In Meters,"The greater depth of a range of depth below the local surface, in meters.","Example: ""200""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MaximumDepthInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2009-04-24,maximumDistanceAboveSurfaceInMeters,Maximum Distance Above Surface In Meters,"The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.","Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: ""300m"" MinimumElevationInMeters: ""300"", MaximumElevationInMeters: ""300"", VerbatimDepth: ""20m"", MinimumDepthInMeters: ""20"", MaximumDepthInMeters: ""20"", minimumDistanceAboveSurfaceInMeters: ""0"", maximumDistanceAboveSurfaceInMeters: ""-1.5""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2009-04-24,maximumElevationInMeters,Maximum Elevation In Meters,"The upper limit of the range of elevation (altitude, usually above sea level), in meters.","Example: ""200""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MaximumElevationInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2009-04-24,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,"Examples: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementAccuracy-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementAccuracy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2017-10-06,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,,"`0.01`, `normal distribution with variation of 2 m`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2009-04-24,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.","Examples: ""Javier de la Torre"", ""Julie Woodruff; Eileen Lacey""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedBy-2009-04-24|http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2014-10-23,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Rob Guralnick"", ""Julie Woodruff | Eileen Lacey"".",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2017-10-06,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Rob Guralnick`, `Peter Desmet | Stijn Van Hoey`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2009-04-24,measurementDeterminedDate,Measurement Determined Date,"The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedDate-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2017-10-06,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2018-09-06,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime,extension -http://rs.tdwg.org/dwc/terms/version/measurementID-2009-04-24,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementID-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/measurementID-2017-10-06,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,`9c752d22-b09a-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/measurementMethod-2009-04-24,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.","Examples: ""minimum convex polygon around burrow entrances"" for a home range area, ""barometric altimeter"" for an elevation",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method, -http://rs.tdwg.org/dwc/terms/version/measurementMethod-2017-10-06,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.",,`minimum convex polygon around burrow entrances` (for a home range area). `barometric altimeter` (for an elevation).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementMethod-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method, -http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2009-04-24,MeasurementOrFact,Measurement Or Fact,"The category of information pertaining to measurements, facts, characteristics, or assertions about a resource (instance of data record, such as Occurrence, Taxon, Location, Event).",,,,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EventMeasurement-2008-11-19|http://rs.tdwg.org/dwc/terms/version/OccurrenceMeasurement-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2014-10-23,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Examples: The weight of an organism in grams. The number of placental scars.",,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2017-10-06,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",The weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2009-04-24,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementRemarks-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2017-10-06,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,,`tip of tail missing`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/measurementType-2009-04-24,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.","Examples: ""tail length"", ""temperature"", ""trap line length"", ""survey area"", ""trap type""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementType-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementType-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/measurementType-2017-10-06,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary.,"`tail length`, `temperature`, `trap line length`, `survey area`, `trap type`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementType-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/measurementUnit-2009-04-24,measurementUnit,Measurement Unit,The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).,"Examples: ""mm"", ""C"", ""km"", ""ha""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementUnit-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementUnit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/measurementUnit-2017-10-06,measurementUnit,Measurement Unit,The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,"`mm`, `C`, `km`, `ha`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementUnit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/measurementValue-2009-04-24,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.","Examples: ""45"", ""20"", ""1"", ""14.5"", ""UV-light""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementValue-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementValue-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/measurementValue-2017-10-06,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.",,"`45`, `20`, `1`, `14.5`, `UV-light`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementValue-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/member-2009-04-24,member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,"Examples: ""Lava Dam Member"", ""Hellnmaria Member""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Member-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/member,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2009-04-24,minimumDepthInMeters,Minimum Depth In Meters,"The lesser depth of a range of depth below the local surface, in meters.","Example: ""100""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MinimumDepthInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2009-04-24,minimumDistanceAboveSurfaceInMeters,Minimum Distance Above Surface In Meters,"The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.","Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: ""300m"" MinimumElevationInMeters: ""300"", MaximumElevationInMeters: ""300"", VerbatimDepth: ""20m"", MinimumDepthInMeters: ""20"", MaximumDepthInMeters: ""20"", minimumDistanceAboveSurfaceInMeters: ""0"", maximumDistanceAboveSurfaceInMeters: ""-1.5""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2009-04-24,minimumElevationInMeters,Minimum Elevation In Meters,"The lower limit of the range of elevation (altitude, usually above sea level), in meters.","Example: ""100""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MinimumElevationInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue, -http://rs.tdwg.org/dwc/terms/version/month-2009-04-24,month,Month,The ordinal month in which the Event occurred.,"Examples: ""1"" (=January), ""10"" (=October)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/terms/version/month-2017-10-06,month,Month,The ordinal month in which the Event occurred.,,`1` (January). `10` (October).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/month-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple -http://rs.tdwg.org/dwc/terms/version/municipality-2009-08-24,municipality,Municipality,"The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.","Examples: ""Holzminden""",,http://purl.org/dc/terms/Location,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/municipality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, -http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2009-09-21,nameAccordingTo,Name According To,"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.","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""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/taxonAccordingTo-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2017-10-06,nameAccordingTo,Name According To,"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.",,"`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`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2009-09-21,nameAccordingToID,Name According To ID,An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.,"Example: ""doi:10.1016/S0269-915X(97)80026-2""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingToID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/namePublicationID-2009-05-18,namePublicationID,Name Publication ID,A resolvable globally unique identifier for the original publication of the scientificName.,"Example: ""http://hdl.handle.net/10199/7""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-05-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublicationID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-04-24,namePublishedIn,Name Published In,A full reference to the original publication of the scientificName.,"Examples: ""Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation, -http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-09-21,namePublishedIn,Name Published In,A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Examples: ""Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation, -http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2009-09-21,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Example: ""http://hdl.handle.net/10199/7""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/namePublicationID-2009-05-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2017-10-06,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,`http://hdl.handle.net/10199/7`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2011-10-16,namePublishedInYear,Name Published In Year,The four-digit year in which the scientificName was published.,"Examples: ""1915"", ""2008""",,http://rs.tdwg.org/dwc/terms/Taxon,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInYear,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-04-24,nomenclaturalCode,Nomenclatural Code,The nomenclatural code under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.,"Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/NomenclaturalCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, -http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-09-21,nomenclaturalCode,Nomenclatural Code,The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.,"Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode"", ""ICZN; ICBN""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, -http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2009-04-24,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,"Examples: ""nom. ambig."", ""nom. illeg."", ""nom. subnud.""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte, -http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,Occurrence,Occurrence,"The category of information pertaining to evidence of an occurrence in nature, in a collection, or in a dataset (specimen, observation, etc.).",,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/Sample-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension -http://rs.tdwg.org/dwc/terms/version/occurrenceAttributes-2009-04-24,occurrenceAttributes,Occurrence Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Occurrence.","Examples: ""Tragus length: 14mm; Weight: 120g"", ""Height: 1-1.5 meters tall; flowers yellow; uncommon"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceAttributes,DataSets/DataSet/Units/Unit/MeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/occurrenceDetails-2009-04-24,occurrenceDetails,Occurrence Details,"A reference (publication, URI) to the most detailed information available about the Occurrence.","Example: ""http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/RelatedInformation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceDetails,DataSets/DataSet/Units/Unit/RecordURI, -http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","For a specimen in the absence of a bona fide global unique identifier, for example, use the form: ""urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: ""urn:lsid:nhm.ku.edu:Herps:32"", ""urn:catalog:FMNH:Mammal:145732""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/GlobalUniqueIdentifier-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID, -http://rs.tdwg.org/dwc/terms/version/OccurrenceMeasurement-2008-11-19,OccurrenceMeasurement,Occurrence Measurement,The category of information pertaining to measurements accociated with an occurrence.,,,http://rs.tdwg.org/dwc/terms/Occurrence,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,Datasets/Dataset/Units/Unit/MeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementAccuracy-2009-04-24,occurrenceMeasurementAccuracy,Occurrence Measurement Accuracy,The description of the error associated with the occurrenceAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeAccuracy-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedBy-2009-04-24,occurrenceMeasurementDeterminedBy,Occurrence Measurement Determined By,The agent responsible for having determined the value of the measurement or characteristic of the occurrence.,"Example: ""Javier de la Torre""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedBy-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedDate-2009-04-24,occurrenceMeasurementDeterminedDate,Occurrence Measurement Determined Date,"The date on which the the measurement or characteristic of the occurrence was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedDate-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementID-2009-04-24,occurrenceMeasurementID,Occurrence Measurement ID,An identifier for the occurrence attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementRemarks-2009-04-24,occurrenceMeasurementRemarks,Occurrence Measurement Remarks,Comments or notes accompanying the measurement or characteristic of the occurrence.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementType-2009-04-24,occurrenceMeasurementType,Occurrence Measurement Type,The nature of the measurement or characteristic of the occurrence. Recommended best practice is to use a controlled vocabulary.,"Example: ""tail length""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementUnit-2009-04-24,occurrenceMeasurementUnit,Occurrence Measurement Unit,The units for the value of the measurement or characteristic of the occurrence. Recommended best practice is to use International System of Units (SI) units.,"Example: ""mm""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeUnit-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementValue-2009-04-24,occurrenceMeasurementValue,Occurrence Measurement Value,The value of the measurement or characteristic of the occurrence.,"Example: ""45""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeValue-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2009-04-24,occurrenceRemarks,Occurrence Remarks,Comments or notes about the Occurrence.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SampleRemarks-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceRemarks,DataSets/DataSet/Units/Unit/Notes, -http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2009-09-17,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""present"", ""absent""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-09-17,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2017-10-06,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location.,Recommended best practice is to use a controlled vocabulary.,"`present`, `absent`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2009-09-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/order-2009-04-24,order,Order,The name of the order in which the scientificName is classified.,"Example: ""Rodentia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Order-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, -http://rs.tdwg.org/dwc/terms/version/order-2009-08-24,order,Order,The full scientific name of the order in which the taxon is classified.,"Examples: ""Carnivora"", ""Monocleales""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/order-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, -http://rs.tdwg.org/dwc/terms/version/Organism-2014-10-23,Organism,Organism,A particular organism or defined group of organisms considered to be taxonomically homogeneous.,"Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.",,,2014-10-23,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Organism,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismID-2014-10-23,organismID,Organism ID,An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/individualID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismName-2014-10-23,organismName,Organism Name,A textual name or label assigned to an Organism instance.,"Examples: ""Huberta"", ""Boab Prison Tree"", ""J pod"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismName,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismQuantity-2014-12-23,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,"An organismQuantity must have a corresponding organismQuantityType, e.g., ""27"" for organismQuantity with ""individuals"" for organismQuantityType; ""12.5"" for organismQuantity with ""%biomass"" for organismQuantityType; ""r"" for organismQuantity with ""BraunBlanquetScale"" for organismQuantityType.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismQuantity-2017-10-06,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,A dwc:organismQuantity must have a corresponding dwc:organismQuantityType.,`27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `%biomass` (organismQuantityType). `r` (organismQuantity) with `BraunBlanquetScale` (organismQuantityType).,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismQuantity-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2014-12-23,organismQuantityType,Organism Quantity Type,The type of quantification system used for the quantity of organisms.,"An organismQuantityType must have a corresponding organismQuantity, e.g., ""27"" for organismQuantity with ""individuals"" for organismQuantityType; ""12.5"" for organismQuantity with ""%biomass"" for organismQuantityType; ""r"" for organismQuantity with ""BraunBlanquetScale"" for organismQuantityType.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantityType,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismRemarks-2014-10-23,organismRemarks,Organism Remarks,Comments or notes about the Organism instance.,"Example: ""One of a litter of six.""",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/organismScope-2014-10-23,organismScope,Organism Scope,A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.,"This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: ""multicellular organism"", ""virus"", ""clone"" ""pack"", ""colony"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismScope,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2009-09-21,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.","Examples: ""Pinus abies"", ""Gasterosteus saltatrix Linnaeus 1768""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/basionym-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2017-10-06,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.",,"`Pinus abies`, `Gasterosteus saltatrix Linnaeus 1768`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2009-09-21,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Example: ""http://species.gbif.org/abies_alba_1753""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/basionymID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2017-10-06,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,,`https://www.gbif.org/species/2685484`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2009-04-24,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.","Examples: ""FMNH:Mammal:1234"", ""NPS YELLO6778; MBG 33424""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/OtherCatalogNumbers-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, -http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2014-10-23,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""FMNH:Mammal:1234"", ""NPS YELLO6778 | MBG 33424"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, -http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2009-08-24,ownerInstitutionCode,Owner Institution Code,The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.,"Examples: ""NPS"", ""APN"", ""InBio""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/ownerInstitutionCode,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/parentEventID-2014-12-23,parentEventID,Parent Event ID,An identifier for the broader Event that groups this and potentially other Events.,"May be a globally unique identifier or an identifier specific to the data set. Example: ""A1"" as parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID (e.g., ""A1:1"", ""A1:2"").",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentEventID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2009-09-21,parentNameUsage,Parent Name Usage,"The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.","Examples: ""Rubiaceae"", ""Gruiformes"", ""Testudinae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsage,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, -http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2009-09-21,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.","Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/higherTaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2017-10-06,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",,`https://www.gbif.org/species/2684876`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD,simple -http://rs.tdwg.org/dwc/terms/version/pathway-2020-10-13,pathway,Pathway,The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcpw/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`releasedForUse`, `otherEscape`, `transportContaminant`, `transportStowaway`, `corridor`, `unaided`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pathway,,simple -http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,phylum,Phylum,The name of the phlyum (or division) in which the scientificName is classified.,"Example: ""Chordata""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Phylum-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, -http://rs.tdwg.org/dwc/terms/version/phylum-2009-08-24,phylum,Phylum,The full scientific name of the phylum or division in which the taxon is classified.,"Examples: ""Chordata"" (phylum), ""Bryophyta"" (division)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, -http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/PointRadiusSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit, -http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple -http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"Examples: ""skin; skull; skeleton"", ""whole animal (ETOH); tissue (EDTA)"", ""fossil"", ""cast"", ""photograph"", ""DNA extract""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/Preparations-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, -http://rs.tdwg.org/dwc/terms/version/preparations-2014-10-23,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""fossil"", ""cast"", ""photograph"", ""DNA extract"", ""skin | ""skull | skeleton"", ""whole animal (ETOH) | tissue (EDTA)"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, -http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2014-10-23,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, -http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2017-10-06,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, -http://rs.tdwg.org/dwc/terms/version/PreviousIdentifications-2008-11-19,PreviousIdentifications,Previous Identifications,A list (concatenated and separated) of previous ScientificNames to which the sample was identified.,"Example: ""Anthus correndera"".",,http://rs.tdwg.org/dwc/terms/Identification,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/PreviousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, -http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-04-24,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the subject.,"Example: ""Anthus sp., field ID by G. Iglesias; Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/PreviousIdentifications-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, -http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-05-18,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Occurrence.,"Example: ""Anthus sp., field ID by G. Iglesias; Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-05-18,superseded,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, -http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2014-10-23,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Organism.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Chalepidae"", ""Pinus abies"", ""Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-05-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, -http://rs.tdwg.org/dwc/terms/version/recordedBy-2009-04-24,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.","Example: ""Oliver P. Pearson; Anita K. Pearson"" where the value in recordNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Collector-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, -http://rs.tdwg.org/dwc/terms/version/recordedBy-2014-10-23,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.","The recommended best practice is to separate the values with a vertical bar (' | '). The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. Examples: ""José E. Crespo"", ""Oliver P. Pearson | Anita K. Pearson"" where the value in recordNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/recordedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, -http://rs.tdwg.org/dwc/terms/version/recordNumber-2009-04-24,recordNumber,Record Number,"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.","Example: ""OPP 7101""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/CollectorNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber, -http://rs.tdwg.org/dwc/terms/version/RelatedBasisOfRecord-2008-11-19,RelatedBasisOfRecord,Related Basis of Record,The nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for basisOfRecord.,"Example: ""PreservedSpecimen""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2009-04-24,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, -http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2017-10-06,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,`dc609808-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, -http://rs.tdwg.org/dwc/terms/version/relatedResourceType-2009-04-24,relatedResourceType,Related Resource Type,The type of the related resource. Recommended best practice is to use a controlled vocabulary.,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", PhysicalObject"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation"", ""Location"", ""Taxonomy"", ""NomeclaturalChecklist"", ""Publication""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceType,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2009-04-24,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.","Example: ""Julie Woodruff""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2017-10-06,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.",,`Julie Woodruff`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2009-04-24,relationshipEstablishedDate,Relationship Established Date,"The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2017-10-06,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2018-09-06,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD,extension -http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2009-04-24,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.,"Examples: ""duplicate of"", ""mother of"", ""endoparasite of"", ""host to"", ""sibling of"", ""valid synonym of"", ""located within""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType, -http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2017-10-06,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID).,Recommended best practice is to use a controlled vocabulary.,"`sameAs`, `duplicate of`, `mother of`, `endoparasite of`, `host to`, `sibling of`, `valid synonym of`, `located within`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType, -http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2018-09-06,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID).,Recommended best practice is to use a controlled vocabulary.,"`sameAs`, `duplicate of`, `mother of`, `endoparasite of`, `host to`, `sibling of`, `valid synonym of`, `located within`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType,extension -http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2009-04-24,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,"Examples: ""mother and offspring collected from the same nest"", ""pollinator captured in the act""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments, -http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2017-10-06,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,,"`mother and offspring collected from the same nest`, `pollinator captured in the act`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments, -http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2009-04-24,reproductiveCondition,Reproductive Condition,The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.,"Examples"" ""non-reproductive"", ""pregnant"", ""in bloom"", ""fruit-bearing""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/reproductiveCondition,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/resourceID-2009-04-24,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/resourceID-2017-10-06,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,`f809b9e0-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/resourceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2009-01-21,ResourceRelationship,Resource Relationship,"The category of information pertaining to relationships between resources (instances of data records, such as Occurrences, Taxa, Locations, Events).","Resources can be thought of as identifiable records and may include, but need not be limited to Occurrences, Locations, Events, Identifications, or Taxon records.",,,2009-01-21,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, -http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2014-10-23,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.",,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2009-01-21,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, -http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2017-10-06,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",An instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, -http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2009-04-24,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2017-10-06,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,`04b16710-b09c-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/Sample-2008-11-19,Sample,Sample,"Container class for information about the results of a sampling event (specimen, observation, etc.)",,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Sample,DataSets/DataSet/Units/Unit, -http://rs.tdwg.org/dwc/terms/version/SampleAttribute-2008-11-19,SampleAttribute,Sample Attribute,Container class for information about attributes related to a given sample.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SampleAttribute,Datasets/Dataset/Units/Unit/MeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeAccuracy-2009-01-18,SampleAttributeAccuracy,Sample Attribute Accuracy,The description of the error associated with the SampleAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedBy-2009-01-23,SampleAttributeDeterminedBy,Sample Attribute Determined By,The agent responsible for having determined the value of the measurement or characteristic of the sample.,"Example: ""Javier de la Torre""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedDate-2009-01-23,SampleAttributeDeterminedDate,Sample Attribute Determined Date,The date on which the the measurement or characteristic of the sample was made.,"Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeRemarks-2008-11-19,SampleAttributeRemarks,Sample Attribute Remarks,Comments or notes accompanying the measurement or characteristic of the sample.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeUnit-2008-11-19,SampleAttributeUnit,Sample Attribute Unit,The units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.,"Example: ""mm""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, -http://rs.tdwg.org/dwc/terms/version/SampleAttributeValue-2008-11-19,SampleAttributeValue,Sample Attribute Value,The value of the measurement or characteristic of the sample.,"Example: ""45""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue, -http://rs.tdwg.org/dwc/terms/version/SampleRemarks-2009-01-18,SampleRemarks,Sample Remarks,Comments or notes about the sample or record.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/Sample,2009-01-18,deprecated,http://rs.tdwg.org/dwc/dwcore/version/Remarks-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleRemarks,DataSets/DataSet/Units/Unit/Notes, -http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2014-12-23,sampleSizeUnit,Sample Size Unit,"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., ""5"" for sampleSizeValue with ""metre"" for sampleSizeUnit. Examples: ""minute"", ""hour"", ""day"", ""metre"", ""square metre"", ""cubic metre"". Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI (e.g., minute, hour, day, litre).",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeUnit,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2014-12-23,sampleSizeValue,Sample Size Value,"A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeValue must have a corresponding sampleSizeUnit. Example: ""5"" for sampleSizeValue with ""metre"" for sampleSizeUnit.",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeValue,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SamplingAttributeID-2008-11-19,SamplingAttributeID,Sample Attribute ID,An identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingAttributeID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SamplingAttributeType-2008-11-19,SamplingAttributeType,Sample Attribute Type,The nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.,"Example: ""tail length""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19|http://rs.tdwg.org/dwc/terms/version/SampleAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingAttributeType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, -http://rs.tdwg.org/dwc/terms/version/samplingEffort-2009-08-24,samplingEffort,Sampling Effort,The amount of effort expended during an Event.,"Examples: ""40 trap-nights"", ""10 observer-hours; 10 km by foot; 30 km by car""",,http://rs.tdwg.org/dwc/terms/Event,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingEffort,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SamplingEvent-2008-11-19,SamplingEvent,Sampling Event,Container class for information about the conditions and methods of acquisition of samples.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SamplingEvent,DataSets/DataSet/Units/Unit/Gathering, -http://rs.tdwg.org/dwc/terms/version/SamplingEventAttributes-2008-11-19,SamplingEventAttributes,Sampling Event Attributes,A list (concatenated and separated) of additional measurements or characteristics of the sampling event.,"Example: ""Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg""",,http://rs.tdwg.org/dwc/terms/SamplingEvent,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventAttributes,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, -http://rs.tdwg.org/dwc/terms/version/SamplingEventID-2008-11-19,SamplingEventID,Sampling Event ID,An identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/SamplingEvent,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventID,DataSets/DataSet/Units/Unit/Gathering/Code, -http://rs.tdwg.org/dwc/terms/version/SamplingEventRemarks-2009-01-18,SamplingEventRemarks,Sampling Event Remarks,Comments or notes about the sampling event.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/SamplingEvent,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SamplingLocation-2008-11-19,SamplingLocation,Sampling Location,Container class for information about the location where a sampling event occurred.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SamplingLocation,DataSets/DataSet/Units/Unit/Gathering/LocalityText, -http://rs.tdwg.org/dwc/terms/version/SamplingLocationID-2008-11-19,SamplingLocationID,Sampling Location ID,An identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.,"Example: ""MVZ:LocID:12345""",,http://purl.org/dc/terms/Location,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingLocationID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/SamplingLocationRemarks-2009-01-18,SamplingLocationRemarks,Sampling Location Remarks,Comments or notes about the sampling location.,"Example: ""under water since 2005""",,http://purl.org/dc/terms/Location,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, -http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2009-04-24,samplingProtocol,Sampling Protocol,"The name of, reference to, or description of the method or protocol used during an Event.","Examples: ""UV light trap"", ""mist net"", ""bottom trawl"", ""ad hoc observation"", ""point count"", ""Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x"", ""Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp."", ""http://www.bsc-eoc.org/download/Owl.pdf""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CollectingMethod-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method, -http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2017-10-06,samplingProtocol,Sampling Protocol,"The name of, reference to, or description of the method or protocol used during an Event.",,"`UV light trap`, `mist net`, `bottom trawl`, `ad hoc observation`, `point count`, `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`, `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.`, `http://www.bsc-eoc.org/download/Owl.pdf`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method,simple -http://rs.tdwg.org/dwc/terms/version/scientificName-2009-04-24,scientificName,Scientific Name,"The taxon name (with date and authorship information if applicable). 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.","Examples: ""Coleoptera"" (order), ""Vespertilionidae"" (family), ""Manis"" (genus), ""Ctenomys sociabilis"" (genus + specificEpithet), ""Ambystoma tigrinum diaboli"" (genus + specificEpithet + infraspecificEpithet), ""Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell"" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/ScientificName-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, -http://rs.tdwg.org/dwc/terms/version/scientificName-2009-09-21,scientificName,Scientific Name,"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.","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)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/scientificName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, -http://rs.tdwg.org/dwc/terms/version/scientificName-2017-10-06,scientificName,Scientific Name,"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.",,"`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).",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/scientificName-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString,simple -http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2009-04-24,scientificNameAuthorship,Scientific Name Authorship,The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.,"Example: ""(Torr.) J.T. Howell"", ""(Martinovský) Tzvelev"", ""(Györfi, 1952)""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/AuthorYearOfScientificName-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameAuthorship,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}, -http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-07-06,scientificNameID,Scientific Name ID,A unique identifier for the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-08-24,scientificNameID,Scientific Name ID,An identifier for the nomenclatural (not taxonomic) details of a scientific name.,"Example: ""urn:lsid:ipni.org:names:37829-1:1.3""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/TaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/scientificNameRank-2009-07-06,scientificNameRank,Scientific Name Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subsp."", ""var."", ""forma"", ""species"", ""genus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, -http://rs.tdwg.org/dwc/terms/version/sex-2009-04-24,sex,Sex,The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.,"Examples: ""female"", ""hermaphrodite"", ""8 males, 4 females""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Sex-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex, -http://rs.tdwg.org/dwc/terms/version/specificEpithet-2009-04-24,specificEpithet,Specific Epithet,The name of the first or species epithet of the scientificName.,"Examples: ""concolor"", ""gottschei""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/SpecificEpithet-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}, -http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin, -http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple -http://rs.tdwg.org/dwc/terms/version/StartTimeOfDay-2008-11-19,StartTimeOfDay,Start Time of Day,"The time of day when the event began, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/StartTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/StartTimeOfDay,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, -http://rs.tdwg.org/dwc/terms/version/stateProvince-2009-04-24,stateProvince,State Province,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.","Examples: ""Montana"", ""Minas Gerais"", ""Córdoba""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/StateProvince-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.), -http://rs.tdwg.org/dwc/terms/version/subgenus-2009-04-24,subgenus,Subgenus,The name of the subgenus in which the scientificName is classified.,"Example: ""Strobus"" subgenus of Pinus",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://www.iobis.org/obis/version/Subgenus-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus, -http://rs.tdwg.org/dwc/terms/version/subgenus-2009-08-24,subgenus,Subgenus,The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.,"Examples: ""Strobus (Pinus)"", ""Puma (Puma)"" ""Loligo (Amerigo)"", ""Hieracium subgen. Pilosella""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/subgenus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus, -http://rs.tdwg.org/dwc/terms/version/Taxon-2008-11-19,Taxon,Taxon,The category of information pertaining to taxonomic names or concepts.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, -http://rs.tdwg.org/dwc/terms/version/Taxon-2009-09-21,Taxon,Taxon,"The category of information pertaining to taxonomic names, taxon name usages, or taxon concepts.",,,,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/Taxon-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, -http://rs.tdwg.org/dwc/terms/version/Taxon-2014-10-23,Taxon,Taxon,A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.,Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Taxon-2009-09-21,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonAccordingTo-2009-04-24,taxonAccordingTo,Taxon According To,"Information about the authorship of this taxon concept which uses the scientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.",,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonAccordingTo,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonAttributes-2009-04-24,taxonAttributes,Taxon Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the taxon.","Example: ""iucnstatus=vulnerable; distribution=Neuquen, Argentina""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonAttributes,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/InformalNameString, -http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-04-24,taxonConceptID,Taxon Concept ID,A unique identifier for the taxon concept (a circumscription of a taxonName).,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-09-21,taxonConceptID,Taxon Concept ID,An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/TaxonID-2008-11-19,TaxonID,Taxon ID,A global unique identifier for the taxon (name in a classification).,,,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/TaxonID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonID-2009-08-24,taxonID,Taxon ID,An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.,"Examples: ""8fa58e08-08de-4ac1-b69c-1235340b7001"", ""32567"", ""http://species.gbif.org/abies_alba_1753"", ""urn:lsid:gbif.org:usages:32567""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonNameID-2009-04-24,taxonNameID,Taxon Name ID,A unique identifier for the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/TaxonID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonNameID,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2009-04-24,taxonomicStatus,Taxonomic Status,"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.","Examples: ""invalid"", ""misapplied"", ""homotypic synonym"", ""accepted""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonomicStatus,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-04-24,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subsp."", ""var."", ""forma"", ""species"", ""genus"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InfraspecificRank-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, -http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-09-21,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subspecies"", ""varietas"", ""forma"", ""species"", ""genus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/scientificNameRank-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, -http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-04-24,taxonRemarks,Taxon Remarks,Comments or notes about the taxon.,"Example: ""this name is a misspelling in common use""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-08-24,taxonRemarks,Taxon Remarks,Comments or notes about the taxon or name.,"Example: ""this name is a misspelling in common use""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","Example: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/TypeStatus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, -http://rs.tdwg.org/dwc/terms/version/typeStatus-2014-10-23,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""holotype of Pinus abies | holotype of Picea abies"".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, -http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Examples: ""41 05 54S 121 05 34W"", ""17T 630000 4833400""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinates-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}, -http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""decimal degrees"", ""degrees decimal minutes"", ""degrees minutes seconds"", ""UTM""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinateSystem-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem, -http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple -http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2009-04-24,verbatimDepth,Verbatim Depth,The original description of the depth below the local surface.,"Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimDepth-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText, -http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2009-04-24,verbatimElevation,Verbatim Elevation,"The original description of the elevation (altitude, usually above sea level) of the Location.","Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimElevation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText, -http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2009-04-24,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for an Event.,"Examples: ""spring 1910"", ""Marzo 2002"", ""1999-03-XX"", ""17IV1934""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimCollectingDate-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText, -http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2009-04-24,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Example: ""41 05 54.03S""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimLatitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude, -http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2009-04-24,verbatimLocality,Verbatim Locality,The original textual description of the place.,"Example: ""25 km NNE Bariloche por R. Nac. 237""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, -http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2017-10-06,verbatimLocality,Verbatim Locality,The original textual description of the place.,,`25 km NNE Bariloche por R. Nac. 237`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple -http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2009-04-24,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Example: ""121d 10' 34"" W""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimLongitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude, -http://rs.tdwg.org/dwc/terms/version/verbatimScientificNameRank-2009-07-06,verbatimScientificNameRank,Verbatim Scientific Name Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,"Examples: ""Agamospecies"", ""sub-lesus"", ""prole"", ""apomict"", ""nothogrex"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimScientificNameRank,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2009-07-06,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value ""unknown"".","Examples: ""EPSG:4326"", ""WGS84"", ""NAD27"", ""Campo Inchauspe"", ""European 1950"", ""Clarke 1866""",,http://purl.org/dc/terms/Location,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2009-09-21,verbatimTaxonRank,Verbatim Taxon Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,"Examples: ""Agamospecies"", ""sub-lesus"", ""prole"", ""apomict"", ""nothogrex"", ""sp."", ""subsp."", ""var.""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimScientificNameRank-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimTaxonRank,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/vernacularName-2009-07-06,vernacularName,Vernacular Name,A common or vernacular name.,"Examples: ""Andean Condor"", ""Condor Andino"", ""American Eagle"", ""Gänsegeier""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vernacularName,not in ABCD, -http://rs.tdwg.org/dwc/terms/version/waterBody-2009-04-24,waterBody,Water Body,The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Indian Ocean"", ""Baltic Sea"", ""Hudson River""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/WaterBody-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/waterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body, -http://rs.tdwg.org/dwc/terms/version/year-2009-04-24,year,Year,"The four-digit year in which the Event occurred, according to the Common Era Calendar.","Example: ""2008""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, \ No newline at end of file +iri,term_localName,label,definition,comments,examples,organized_in,issued,status,replaces,rdf_type,term_iri,abcd_equivalence,flags +http://dublincore.org/usage/terms/history/#type-006,type,Type,The nature or genre of the resource.,Must be populated with a value from the DCMI type vocabulary (http://dublincore.org/documents/2010/10/11/dcmi-type-vocabulary/).,`StillImage`; `MovingImage`; `Sound`; `PhysicalObject`; `Event`; `Text`,http://purl.org/dc/elements/1.1/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#typeT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/elements/1.1/type,not in ABCD,simple +http://dublincore.org/usage/terms/history/#modified-003,modified,Date Modified,The most recent date-time on which the resource was changed.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/modified,not in ABCD,simple +http://dublincore.org/usage/terms/history/#language-007,language,Language,A language of the resource.,Recommended best practice is to use a controlled vocabulary such as RFC 5646.,`en` (for English); `es` (for Spanish),http://purl.org/dc/elements/1.1/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#languageT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/elements/1.1/language,not in ABCD,simple +http://dublincore.org/usage/terms/history/#license-002,license,License,A legal document giving official permission to do something with the resource.,,`http://creativecommons.org/publicdomain/zero/1.0/legalcode`; `http://creativecommons.org/licenses/by/4.0/legalcode`,http://purl.org/dc/terms/,2008-01-14,recommended,http://dublincore.org/usage/terms/history/#rightsT-001,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/license,not in ABCD,simple +http://dublincore.org/usage/terms/history/#rightsHolder-002,rightsHolder,Rights Holder,A person or organization owning or managing rights over the resource.,,`The Regents of the University of California`,http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/rightsHolder,not in ABCD,simple +http://dublincore.org/usage/terms/history/#accessRights-002,accessRights,Access Rights,Information about who can access the resource or an indication of its security status.,"Access Rights may include information regarding access or restrictions based on privacy, security, or other policies.",`not-for-profit use only` (string literal example); `https://www.fieldmuseum.org/field-museum-natural-history-conditions-and-suggested-norms-use-collections-data-and-images` (URI example),http://purl.org/dc/terms/,2008-01-14,recommended,http://rs.tdwg.org/dwc/terms/version/AccessConstraints-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/accessRights,not in ABCD,simple +http://dublincore.org/usage/terms/history/#bibliographicCitation-002,bibliographicCitation,Bibliographic Citation,A bibliographic reference for the resource.,"From Dublin Core, ""Recommended practice is to include sufficient bibliographic detail to identify the resource as unambiguously as possible."" The intended usage of this term in Darwin Core is to provide the preferred way to cite the resource itself - ""how to cite this record"". Note that the intended usage of dcterms:references in Darwin Core, by contrast, is to point to the definitive source representation of the resource - ""where to find the as-close-to-original reference, if one is available.","`Museum of Vertebrate Zoology, UC Berkeley. MVZ Mammal Collection (Arctos). Record ID: http://arctos.database.museum/guid/MVZ:Mamm:165861?seid=101356. Source: http://ipt.vertnet.org:8080/ipt/resource.do?r=mvz_mammal.` (Occurrence example); `https://www.gbif.org/species/2439608 Source: GBIF Taxonomic Backbone` (Taxon example); `Rand, K.M., Logerwell, E.A. The first demersal trawl survey of benthic fish and invertebrates in the Beaufort Sea since the late 1970s. Polar Biol 34, 475–488 (2011). https://doi.org/10.1007/s00300-010-0900-2` (Event example)",http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/bibliographicCitation,not in ABCD,simple +http://dublincore.org/usage/terms/history/#references-003,references,References,"A related resource that is referenced, cited, or otherwise pointed to by the described resource.","From Dublin Core, ""This property is intended to be used with non-literal values. This property is an inverse property of Is Referenced By."" The intended usage of this term in Darwin Core is to point to the definitive source representation of the resource (e.g.,Taxon, Occurrence, Event in Darwin Core), if one is available. Note that the intended usage of dcterms:bibliographicCitation in Darwin Core, by contrast, is to provide the preferred way to cite the resource itself.",`http://arctos.database.museum/guid/MVZ:Mamm:165861` (MaterialSample example); `https://www.catalogueoflife.org/data/taxon/32664` (Taxon example),http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/references,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/institutionID-2023-06-28,institutionID,Institution ID,An identifier for the institution having custody of the object(s) or information referred to in the record.,"For physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the Research Organization Registry (ROR) or the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll).",`https://ror.org/015hz7p22`; `http://grscicoll.org/institution/museum-southwestern-biology`; `https://www.gbif.org/grscicoll/institution/e3d4dcc4-81e2-444c-8a5c-41d1044b5381`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/institutionID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionID,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple +http://rs.tdwg.org/dwc/terms/version/collectionID-2023-06-28,collectionID,Collection ID,An identifier for the collection or dataset from which the record was derived.,"For physical specimens, the recommended best practice is to use a globally unique and resolvable identifier from a collections registry such as the GBIF Registry of Scientific Collections (https://www.gbif.org/grscicoll).",`https://www.gbif.org/grscicoll/collection/fbd3ed74-5a21-4e01-b86a-33d36f032d9c`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/collectionID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/datasetID-2017-10-06,datasetID,Dataset ID,An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.,,`b15d4952-7d20-46f1-8a3e-556a512b04c5`,http://rs.tdwg.org/dwc/terms/,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/datasetID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID,simple +http://rs.tdwg.org/dwc/terms/version/institutionCode-2023-06-28,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,,`MVZ`; `FMNH`; `CLO`; `UCMP`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/institutionCode-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple +http://rs.tdwg.org/dwc/terms/version/collectionCode-2023-06-28,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.",,`Mammals`; `Hildebrandt`; `EBIRD`; `VP`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/collectionCode-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/datasetName-2023-06-28,datasetName,Dataset Name,The name identifying the data set from which the record was derived.,,`Grinnell Resurvey Mammals`; `Lacey Ctenomys Recaptures`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/datasetName-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetName,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2023-06-28,ownerInstitutionCode,Owner Institution Code,The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.,,`NPS`; `APN`; `InBio`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/ownerInstitutionCode,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2023-06-28,basisOfRecord,Basis of Record,The specific nature of the data record.,Recommended best practice is to use a controlled vocabulary such as the set of local names of the identifiers for classes in Darwin Core.,`PreservedSpecimen`; `FossilSpecimen`; `LivingSpecimen`; `MaterialSample`; `Event`; `HumanObservation`; `MachineObservation`; `Taxon`; `Occurrence`; `MaterialCitation`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis,simple +http://rs.tdwg.org/dwc/terms/version/informationWithheld-2023-06-28,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`location information not given for endangered species`; `collector identities withheld | ask about tissue samples`,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/informationWithheld-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld,simple +http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2023-06-28,dataGeneralizations,Data Generalizations,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.,"This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Coordinates generalized from original GPS coordinates to the nearest half degree grid cell`.,http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2023-06-28,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.",Recommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.,"`{""heightInMeters"":1.5}`; `{""targusLengthInMeters"":0.014, ""weightInGrams"":120}`; `{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}`; `{""relativeHumidity"":28, ""airTemperatureInCelsius"":22, ""sampleSizeInKilograms"":10}`; `{""aspectHeading"":277, ""slopeInDegrees"":6}`; `{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}`",http://rs.tdwg.org/dwc/terms/,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/Occurrence-2023-06-28,Occurrence,Occurrence,An existence of a dwc:Organism at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/Occurrence-2023-06-28,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension +http://rs.tdwg.org/dwc/terms/version/occurrenceID-2023-06-28,occurrenceID,Occurrence ID,"An identifier for the dwc:Occurrence (as opposed to a particular digital record of the dwc:Occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:occurrenceID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.",`http://arctos.database.museum/guid/MSB:Mamm:233627`; `000866d2-c177-4648-a200-ead4007051b9`; `urn:catalog:UWBM:Bird:89776`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID,simple +http://rs.tdwg.org/dwc/terms/version/catalogNumber-2023-06-28,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,,`145732`; `145732a`; `2008.1334`; `R-4313`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/catalogNumber-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID,simple +http://rs.tdwg.org/dwc/terms/version/recordNumber-2023-06-28,recordNumber,Record Number,"An identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`OPP 7101`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/recordNumber-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber,simple +http://rs.tdwg.org/dwc/terms/version/recordedBy-2023-06-28,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original dwc:Occurrence. The primary collector or observer, especially one who applies a personal identifier (dwc:recordNumber), should be listed first.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`José E. Crespo`; `Oliver P. Pearson | Anita K. Pearson` (where the value in recordNumber `OPP 7101` corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson),http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/recordedBy-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText,simple +http://rs.tdwg.org/dwc/terms/version/recordedByID-2023-06-28,recordedByID,Recorded By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original dwc:Occurrence.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space (` | `). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.",`https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people),http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/recordedByID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedByID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/individualCount-2023-06-28,individualCount,Individual Count,The number of individuals present at the time of the dwc:Occurrence.,,`0`; `1`; `25`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/individualCount-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/organismQuantity-2023-06-28,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of dwc:Organisms.,A dwc:organismQuantity must have a corresponding dwc:organismQuantityType.,`27` (organismQuantity) with `individuals` (organismQuantityType); `12.5` (organismQuantity) with `% biomass` (organismQuantityType); `r` (organismQuantity) with `Braun-Blanquet Scale` (organismQuantityType); `many` (organismQuantity) with `individuals` (organismQuantityType),http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismQuantity-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2023-06-28,organismQuantityType,Organism Quantity Type,The type of quantification system used for the quantity of dwc:Organisms.,"A dwc:organismQuantityType must have a corresponding dwc:organismQuantity. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`27` (organismQuantity) with `individuals` (organismQuantityType); `12.5` (organismQuantity) with `% biomass` (organismQuantityType); `r` (organismQuantity) with `Braun-Blanquet Scale` (organismQuantityType); `many` (organismQuantity) with `individuals` (organismQuantityType),http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantityType,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/sex-2023-06-28,sex,Sex,The sex of the biological individual(s) represented in the dwc:Occurrence.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`female`; `male`; `hermaphrodite`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/sex-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex,simple +http://rs.tdwg.org/dwc/terms/version/lifeStage-2023-06-28,lifeStage,Life Stage,The age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`zygote`; `larva`; `juvenile`; `adult`; `seedling`; `flowering`; `fruiting`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/lifeStage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage,simple +http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2023-06-28,reproductiveCondition,Reproductive Condition,The reproductive condition of the biological individual(s) represented in the dwc:Occurrence.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`non-reproductive`; `pregnant`; `in bloom`; `fruit-bearing`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/reproductiveCondition,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/caste-2023-06-28,caste,Caste,Categorisation of individuals for eusocial species (including some mammals and arthropods).,"Recommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`queen`; `male alate`; `intercaste`; `minor worker`; `soldier`; `ergatoid`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/caste-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/caste,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/behavior-2023-06-28,behavior,Behavior,The behavior shown by the subject at the time the dwc:Occurrence was recorded.,"This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`roosting`; `foraging`; `running`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/behavior-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/behavior,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/vitality-2023-06-28,vitality,Vitality,An indication of whether a dwc:Organism was alive or dead at the time of collection or observation.,"Recommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of `PreservedSpecimen`, `MaterialSample`, or `HumanObservation`. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`alive`; `dead`; `mixedLot`; `uncertain`; `notAssessed`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/vitality-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vitality,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2023-06-28,establishmentMeans,Establishment Means,Statement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`native`; `nativeReintroduced`; `introduced`; `introducedAssistedColonisation`; `vagrant`; `uncertain`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple +http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2023-06-28,degreeOfEstablishment,Degree of Establishment,"The degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`native`; `captive`; `cultivated`; `released`; `failing`; `casual`; `reproducing`; `established`; `colonising`; `invasive`; `widespreadInvasive`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/degreeOfEstablishment,,simple +http://rs.tdwg.org/dwc/terms/version/pathway-2023-06-28,pathway,Pathway,The process by which a dwc:Organism came to be in a given place at a given time.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`releasedForUse`; `otherEscape`; `transportContaminant`; `transportStowaway`; `corridor`; `unaided`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/pathway-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pathway,,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2023-06-28,georeferenceVerificationStatus,Georeference Verification Status,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.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`unable to georeference`; `requires georeference`; `requires verification`; `verified by data custodian`; `verified by contributor`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple +http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2023-06-28,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a dwc:Taxon at a dcterms:Location.,"For dwc:Occurrences, the default vocabulary is recommended to consist of `present` and `absent`, but can be extended by implementers with good justification. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`present`; `absent`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/preparations-2023-06-28,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`fossil`; `cast`; `photograph`; `DNA extract`; `skin | skull | skeleton`; `whole animal (ETOH) | tissue (EDTA)`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/preparations-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText,simple +http://rs.tdwg.org/dwc/terms/version/disposition-2023-06-28,disposition,Disposition,The current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`in collection`; `missing`; `voucher elsewhere`; `duplicates elsewhere`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/disposition-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition,simple +http://rs.tdwg.org/dwc/terms/version/associatedMedia-2023-06-28,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the dwc:Occurrence.",,`https://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects,simple +http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2023-06-28,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other dwc:Occurrence records and their associations to this dwc:Occurrence.,"This term can be used to provide a list of associations to other dwc:Occurrences. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""parasite collected from"":""https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760""`; `""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139""`",http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,simple +http://rs.tdwg.org/dwc/terms/version/associatedReferences-2023-06-28,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the dwc:Occurrence.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to a dwc:Occurrence is to point to the definitive source representation of that dwc:Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to a dwc:Occurrence is to provide the preferred way to cite the dwc:Occurrence itself.","`http://www.sciencemag.org/cgi/content/abstract/322/5899/261`; `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`; `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.`",http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences,simple +http://rs.tdwg.org/dwc/terms/version/associatedSequences-2023-06-28,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the dwc:Occurrence.",,`http://www.ncbi.nlm.nih.gov/nuccore/U34853.1`; `http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedSequences-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant,simple +http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2023-06-28,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of dwc:Taxon records and the associations of this dwc:Occurrence to each of them.,"This term can be used to provide a list of associations to dwc:Taxon records other than the one defined in the dwc:Occurrence. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between dwc:Taxon records, only between specific dwc:Occurrences of a dwc:Organism with other dwc:Taxon records. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""host"":""Quercus alba""`; `""host"":""gbif.org/species/2879737""`; `""parasitoid of"":""Cyclocephala signaticollis"" | ""predator of"":""Apis mellifera""`",http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa,simple +http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2023-06-28,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same dwc:Occurrence, whether in the current or any other data set or collection.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`FMNH:Mammal:1234`; `NPS YELLO6778 | MBG 33424`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText,simple +http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2023-06-28,occurrenceRemarks,Occurrence Remarks,Comments or notes about the dwc:Occurrence.,,`found dead on road`,http://rs.tdwg.org/dwc/terms/Occurrence,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceRemarks,DataSets/DataSet/Units/Unit/Notes,simple +http://rs.tdwg.org/dwc/terms/version/Organism-2023-06-28,Organism,Organism,A particular organism or defined group of organisms considered to be taxonomically homogeneous.,"Instances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose dwc:Occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.",A specific bird. A specific wolf pack. A specific instance of a bacterial culture.,,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/Organism-2023-06-28,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Organism,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/organismID-2023-06-28,organismID,Organism ID,An identifier for the dwc:Organism instance (as opposed to a particular digital record of the dwc:Organism). May be a globally unique identifier or an identifier specific to the data set.,,`http://arctos.database.museum/guid/WNMU:Mamm:1249`,http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismName-2023-06-28,organismName,Organism Name,A textual name or label assigned to a dwc:Organism instance.,,`Huberta`; `Boab Prison Tree`; `J pod`,http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismName-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismScope-2023-06-28,organismScope,Organism Scope,A description of the kind of dwc:Organism instance. Can be used to indicate whether the dwc:Organism instance represents a discrete organism or if it represents a particular type of aggregation.,"Recommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of dwc:Taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.",`multicellular organism`; `virus`; `clone`; `pack`; `colony`,http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismScope-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismScope,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2023-06-28,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other dwc:Organisms and the associations of this dwc:Organism to each of them.,"This term can be used to provide a list of associations to other dwc:Organisms. Note that the dwc:ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).","`""sibling of"":""http://arctos.database.museum/guid/DMNS:Mamm:14171""`; `""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196208"" | ""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196523"" | ""sibling of"":""http://arctos.database.museum/guid/MSB:Mamm:142638""`",http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2023-06-28,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the dwc:Organism.,Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Chalepidae`; `Pinus abies`; `Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology`",http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false,simple +http://rs.tdwg.org/dwc/terms/version/organismRemarks-2023-06-28,organismRemarks,Organism Remarks,Comments or notes about the dwc:Organism instance.,,`One of a litter of six`,http://rs.tdwg.org/dwc/terms/Organism,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/organismRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismRemarks,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/MaterialSample-2018-09-06,MaterialSample,Material Sample,"A physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit,extension +http://rs.tdwg.org/dwc/terms/version/materialSampleID-2023-06-28,materialSampleID,Material Sample ID,"An identifier for the dwc:MaterialSample (as opposed to a particular digital record of the dwc:MaterialSample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the dwc:materialSampleID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.",`06809dc5-f143-459a-be1a-6f03e63fc083`,http://rs.tdwg.org/dwc/terms/MaterialSample,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/materialSampleID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLabel-2023-06-28,verbatimLabel,Verbatim Label,"A serialized encoding intended to represent the literal, i.e., character by character, textual content of a label affixed on, near, or explicitly associated with a material entity, free from interpretation, translation, or transliteration.","The content of this term should include no embellishments, prefixes, headers or other additions made to the text. Abbreviations must not be expanded and supposed misspellings must not be corrected. Lines or breakpoints between blocks of text that could be verified by seeing the original labels or images of them may be used. Examples of material entities include preserved specimens, fossil specimens, and material samples. Best practice is to use UTF-8 for all characters. Best practice is to add comment “verbatimLabel derived from human transcription” in dwc:occurrenceRemarks.",Examples can be found at https://dwc.tdwg.org/examples/verbatimLabel.,http://rs.tdwg.org/dwc/terms/MaterialSample,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLabel-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLabel,Marks/Mark/MarkText,simple +http://rs.tdwg.org/dwc/terms/version/Event-2018-09-06,Event,Event,An action that occurs at some location during some time.,,A specimen collection process. A camera trap image capture. A marine trawl.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Event-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering,extension +http://rs.tdwg.org/dwc/terms/version/eventID-2023-06-28,eventID,Event ID,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.,,`INBO:VIS:Ev:00009375`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/eventID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventID,DataSets/DataSet/Units/Unit/Gathering/Code,simple +http://rs.tdwg.org/dwc/terms/version/parentEventID-2023-06-28,parentEventID,Parent Event ID,An identifier for the broader dwc:Event that groups this and potentially other dwc:Events.,Use a globally unique identifier for a dwc:Event or an identifier for a dwc:Event that is specific to the data set.,"`A1` (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - `A1:1`, `A1:2`).",http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/parentEventID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentEventID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/eventType-2023-06-28,eventType,Event Type,The nature of the dwc:Event.,"Recommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Sample`; `Observation`; `Site Visit`; `Biotic Interaction`; `Bioblitz`; `Expedition`; `Survey`; `Project`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/eventType-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventType,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/fieldNumber-2023-06-28,fieldNumber,Field Number,An identifier given to the dwc:Event in the field. Often serves as a link between field notes and the dwc:Event.,"This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`RV Sol 87-03-08`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/fieldNumber-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code,simple +http://rs.tdwg.org/dwc/terms/version/eventDate-2023-06-28,eventDate,Event Date,"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.",Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/eventDate-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple +http://rs.tdwg.org/dwc/terms/version/eventTime-2023-06-28,eventTime,Event Time,The time or interval during which a dwc:Event occurred.,Recommended best practice is to use a time of day that conforms to ISO 8601-1:2019.,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC); `08:40:21Z` (8:40:21am UTC); `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC),http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/eventTime-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple +http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2023-06-28,startDayOfYear,Start Day Of Year,"The earliest 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).",,"`1` (1 January); `366` (31 December); `365` (30 December in a leap year, 31 December in a non-leap year)",http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple +http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2023-06-28,endDayOfYear,End Day Of Year,"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).",,"`1` (1 January); `32` (1 February); `366` (31 December); `365` (30 December in a leap year, 31 December in a non-leap year)",http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple +http://rs.tdwg.org/dwc/terms/version/year-2023-06-28,year,Year,"The four-digit year in which the dwc:Event occurred, according to the Common Era Calendar.",,`1160`; `2008`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/year-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/month-2023-06-28,month,Month,The integer month in which the dwc:Event occurred.,,`1` (January); `10` (October),http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/month-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/day-2023-06-28,day,Day,The integer day of the month on which the dwc:Event occurred.,,`9`; `28`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/day-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2023-06-28,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for a dwc:Event.,,`spring 1910`; `Marzo 2002`; `1999-03-XX`; `17IV1934`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText,simple +http://rs.tdwg.org/dwc/terms/version/habitat-2023-06-28,habitat,Habitat,A category or description of the habitat in which the dwc:Event occurred.,"This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`oak savanna`; `pre-cordilleran steppe`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/habitat-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/habitat,DataSets/DataSet/Units/Unit/Gathering/Biotope/Text,simple +http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2023-06-28,samplingProtocol,Sampling Protocol,"The names of, references to, or descriptions of the methods or protocols used during a dwc:Event.","Recommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`UV light trap`; `mist net`; `bottom trawl`; `ad hoc observation | point count`; `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`; `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf`",http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method,simple +http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2023-06-28,sampleSizeValue,Sample Size Value,"A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.",A dwc:sampleSizeValue must have a corresponding dwc:sampleSizeUnit.,`5` (sampleSizeValue) with `metre` (sampleSizeUnit),http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeValue,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2023-06-28,sampleSizeUnit,Sample Size Unit,"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.","A dwc:sampleSizeUnit must have a corresponding dwc:sampleSizeValue, e.g., `5` for dwc:sampleSizeValue with `m` for dwc:sampleSizeUnit. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`minute`; `hour`; `day`; `metre`; `square metre`; `cubic metre`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeUnit,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/samplingEffort-2023-06-28,samplingEffort,Sampling Effort,The amount of effort expended during a dwc:Event.,,`40 trap-nights`; `10 observer-hours`; `10 km by foot`; `30 km by car`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/samplingEffort-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingEffort,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/fieldNotes-2023-06-28,fieldNotes,Field Notes,"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.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Notes available in the Grinnell-Miller Library.`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/fieldNotes-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes,simple +http://rs.tdwg.org/dwc/terms/version/eventRemarks-2023-06-28,eventRemarks,Event Remarks,Comments or notes about the dwc:Event.,,`After the recent rains the river is nearly at flood stage.`,http://rs.tdwg.org/dwc/terms/Event,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/eventRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventRemarks,DataSets/DataSet/Units/Unit/Gathering/Notes,simple +http://dublincore.org/usage/terms/history/#Location-001,Location,Location,A spatial region or named place.,,"The municipality of San Carlos de Bariloche, Río Negro, Argentina. The place defined by a georeference.",http://purl.org/dc/terms/,2008-01-14,recommended,http://rs.tdwg.org/dwc/dwctype/version/Location-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://purl.org/dc/terms/Location,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/locationID-2023-06-28,locationID,Location ID,An identifier for the set of dcterms:Location information. May be a global unique identifier or an identifier specific to the data set.,,`https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/locationID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2023-06-28,higherGeographyID,Higher Geography ID,An identifier for the geographic region within which the dcterms:Location occurred.,Recommended best practice is to use a persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`http://vocab.getty.edu/tgn/1002002` (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina).",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeographyID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/higherGeography-2023-06-28,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the dwc:locality term.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from least specific to most specific.","`North Atlantic Ocean`; `South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos` with accompanying values `South America` (continent) `Argentina` (country), `Neuquén` (first order division), and `Los Lagos` (second order division)",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/higherGeography-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName},simple +http://rs.tdwg.org/dwc/terms/version/continent-2023-06-28,continent,Continent,The name of the continent in which the dcterms:Location occurs.,"Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`Africa`; `Antarctica`; `Asia`; `Europe`; `North America`; `Oceania`; `South America`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/continent-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent,simple +http://rs.tdwg.org/dwc/terms/version/waterBody-2023-06-28,waterBody,Water Body,The name of the water body in which the dcterms:Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Indian Ocean`; `Baltic Sea`; `Hudson River`; `Lago Nahuel Huapi`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/waterBody-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/waterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body,simple +http://rs.tdwg.org/dwc/terms/version/islandGroup-2023-06-28,islandGroup,Island Group,The name of the island group in which the dcterms:Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Alexander Archipelago`; `Archipiélago Diego Ramírez`; `Seychelles`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/islandGroup-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/islandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group,simple +http://rs.tdwg.org/dwc/terms/version/island-2023-06-28,island,Island,The name of the island on or near which the dcterms:Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,`Nosy Be`; `Bikini Atoll`; `Vancouver`; `Viti Levu`; `Zanzibar`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/island-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island,simple +http://rs.tdwg.org/dwc/terms/version/country-2023-06-28,country,Country,The name of the country or major administrative unit in which the dcterms:Location occurs.,"Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`Denmark`; `Colombia`; `España`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/country-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name,simple +http://rs.tdwg.org/dwc/terms/version/countryCode-2023-06-28,countryCode,Country Code,The standard code for the country in which the dcterms:Location occurs.,"Recommended best practice is to use an ISO 3166-1-alpha-2 country code. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`AR`; `SV`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/countryCode-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/countryCode,DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code,simple +http://rs.tdwg.org/dwc/terms/version/stateProvince-2023-06-28,stateProvince,First Order Division,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the dcterms:Location occurs.","Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`Montana`; `Minas Gerais`; `Córdoba`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/stateProvince-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.),simple +http://rs.tdwg.org/dwc/terms/version/county-2023-06-28,county,Second Order Division,"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the dcterms:Location occurs.","Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`Missoula`; `Los Lagos`; `Mataró`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/county-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/county,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County,simple +http://rs.tdwg.org/dwc/terms/version/municipality-2023-06-28,municipality,Third Order Division,"The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the dcterms:Location occurs. Do not use this term for a nearby named place that does not contain the actual dcterms:Location.","Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the dcterms:Location spans multiple entities at this administrative level or if the dcterms:Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term dwc:higherGeography or in the term dwc:locality, or both.",`Holzminden`; `Araçatuba`; `Ga-Segonyana`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/municipality-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/municipality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/locality-2023-06-28,locality,Locality,The specific description of the place.,"Less specific geographic information can be provided in other geographic terms (dwc:higherGeography, dwc:continent, dwc:country, dwc:stateProvince, dwc:county, dwc:municipality, dwc:waterBody, dwc:island, dwc:islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.","`Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`; `Queets Rainforest, Olympic National Park`",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/locality-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2021-07-15,verbatimLocality,Verbatim Locality,The original textual description of the place.,,`25 km NNE Bariloche por R. Nac. 237`,http://purl.org/dc/terms/Location,2021-07-15,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/LocalityText,simple +http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2023-06-28,minimumElevationInMeters,Minimum Elevation In Meters,"The lower limit of the range of elevation (altitude, usually above sea level), in meters.",,`-100`; `802`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2023-06-28,maximumElevationInMeters,Maximum Elevation In Meters,"The upper limit of the range of elevation (altitude, usually above sea level), in meters.",,`-205`; `1236`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2017-10-06,verbatimElevation,Verbatim Elevation,"The original description of the elevation (altitude, usually above sea level) of the Location.",,`100-200 m`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText,simple +http://rs.tdwg.org/dwc/terms/version/verticalDatum-2023-06-28,verticalDatum,Vertical Datum,The vertical datum used as the reference upon which the values in the elevation terms are based.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`EGM84`; `EGM96`; `EGM2008`; `PGM2000A`; `PGM2004`; `PGM2006`; `PGM2007`; `epsg:7030`; `unknown`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verticalDatum-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verticalDatum,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2023-06-28,minimumDepthInMeters,Minimum Depth In Meters,"The lesser depth of a range of depth below the local surface, in meters.",,`0`; `100`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2023-06-28,maximumDepthInMeters,Maximum Depth In Meters,"The greater depth of a range of depth below the local surface, in meters.",,`0`; `200`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2017-10-06,verbatimDepth,Verbatim Depth,The original description of the depth below the local surface.,,`100-200 m`,http://purl.org/dc/terms/Location,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText,simple +http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2023-06-28,minimumDistanceAboveSurfaceInMeters,Minimum Distance Above Surface In Meters,"The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface); `4.2` (above the surface); For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2023-06-28,maximumDistanceAboveSurfaceInMeters,Maximum Distance Above Surface In Meters,"The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface); `4.2` (above the surface); For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2023-06-28,locationAccordingTo,Location According To,"Information about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Getty Thesaurus of Geographic Names`; `GADM`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAccordingTo,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/locationRemarks-2023-06-28,locationRemarks,Location Remarks,Comments or notes about the dcterms:Location.,,`under water since 2005`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/locationRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail,simple +http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2023-06-28,decimalLatitude,Decimal Latitude,"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.",,`-41.0983423`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal,simple +http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2023-06-28,decimalLongitude,Decimal Longitude,"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.",,`-121.1761111`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal,simple +http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2023-06-28,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude are based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`EPSG:4326`; `WGS84`; `NAD27`; `Campo Inchauspe`; `European 1950`; `Clarke 1866`; `unknown`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum,simple +http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2023-06-28,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"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.",,`30` (reasonable lower limit on or after 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time); `100` (reasonable lower limit before 2000-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time); `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system),http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple +http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2023-06-28,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the dwc:decimalLatitude and dwc:decimalLongitude.,,`0.00001` (normal GPS limit for decimal degrees); `0.000278` (nearest second); `0.01667` (nearest minute); `1.0` (nearest degree),http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement,simple +http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2023-06-28,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (dwc:decimalLatitude, dwc:decimalLongitude, dwc:coordinateUncertaintyInMeters) 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 point-radius does not completely contain the original representation. The dwc:pointRadiusSpatialFit 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:pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).",`0`; `1`; `1.5708`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2023-06-28,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem.",,`41 05 54S 121 05 34W`; `17T 630000 4833400`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText},simple +http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2023-06-28,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem.",,`41 05 54.03S`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2023-06-28,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the dcterms:Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in dwc:verbatimSRS and the coordinate system should be stored in dwc:verbatimCoordinateSystem.",,"`121d 10' 34"" W`",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude,simple +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2023-06-28,verbatimCoordinateSystem,Verbatim Coordinate System,The coordinate format for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location.,"Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`decimal degrees`; `degrees decimal minutes`; `degrees minutes seconds`; `UTM`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple +http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2023-06-28,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`unknown`; `EPSG:4326`; `WGS84`; `NAD27`; `Campo Inchauspe`; `European 1950`; `Clarke 1866`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/footprintWKT-2023-06-28,footprintWKT,Footprint WKT,"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.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))` (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21)",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/footprintWKT-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b),simple +http://rs.tdwg.org/dwc/terms/version/footprintSRS-2023-06-28,footprintSRS,Footprint SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the dwc:decimalLatitude and dwc:decimalLongitude, nor of any verbatim coordinates - use the dwc:geodeticDatum and dwc:verbatimSRS instead. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`epsg:4326`; `GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326)",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2023-06-28,footprintSpatialFit,Footprint Spatial Fit,"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.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).",`0`; `1`; `1.5708`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit,simple +http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2023-06-28,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the dcterms:Location.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Brad Millen (ROM)`; `Kristina Yamamoto | Janet Fang`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2023-06-28,georeferencedDate,Georeferenced Date,The date on which the dcterms:Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2023-06-28,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)`",http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2023-06-28,georeferenceSources,Georeference Sources,"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.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`https://www.geonames.org/`; `USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth`; `GeoLocate`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2023-06-28,georeferenceRemarks,Georeference Remarks,"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.",,`Assumed distance by road (Hwy. 101)`,http://purl.org/dc/terms/Location,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks,simple +http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2018-09-06,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",,A lithostratigraphic layer.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy,extension +http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2023-06-28,geologicalContextID,Geological Context ID,"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.",,`https://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geologicalContextID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2023-06-28,earliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.",,`Phanerozoic`; `Proterozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2023-06-28,latestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.",,`Phanerozoic`; `Proterozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2023-06-28,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,,`Cenozoic`; `Mesozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2023-06-28,latestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,,`Cenozoic`; `Mesozoic`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2023-06-28,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,,`Neogene`; `Tertiary`; `Quaternary`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2023-06-28,latestPeriodOrHighestSystem,Latest Period Or Highest System,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.,,`Neogene`; `Tertiary`; `Quaternary`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2023-06-28,earliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,,`Holocene`; `Pleistocene`; `Ibexian Series`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2023-06-28,latestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,,`Holocene`; `Pleistocene`; `Ibexian Series`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2023-06-28,earliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,,`Atlantic`; `Boreal`; `Skullrockian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2023-06-28,latestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,,`Atlantic`; `Boreal`; `Skullrockian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2017-10-06,lowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,`Maastrichtian`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2017-10-06,highestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,`Blancan`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2017-10-06,lithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,`Pleistocene-Weichselien`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms,simple +http://rs.tdwg.org/dwc/terms/version/group-2023-06-28,group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,`Bathurst`; `Lower Wealden`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/group-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/group,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/formation-2023-06-28,formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,,`Notch Peak Formation`; `House Limestone`; `Fillmore Formation`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/formation-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/formation,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/member-2023-06-28,member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,,`Lava Dam Member`; `Hellnmaria Member`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/member-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/member,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/bed-2017-10-06,bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,`Harlem coal`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/bed-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/bed,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/Identification-2023-06-28,Identification,Identification,"A taxonomic determination (e.g., the assignment to a dwc:Taxon).",,A subspecies determination of an organism.,,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/Identification-2023-06-28,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification,extension +http://rs.tdwg.org/dwc/terms/version/identificationID-2023-06-28,identificationID,Identification ID,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.,,`9992`,http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identificationID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2023-06-28,verbatimIdentification,Verbatim Identification,A string representing the taxonomic identification as it appeared in the original record.,"This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to dwc:scientificName (and dwc:identificationQualifier etc.), not instead of it.",`Peromyscus sp.`; `Ministrymon sp. nov. 1`; `Anser anser × Branta canadensis`; `Pachyporidae?`; `Potentilla × pantotricha Soják`; `Aconitum pilipes × A. variegatum`; `Lepomis auritus x cyanellus`,http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimIdentification,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2023-06-28,identificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to express the determiner's doubts about the dwc:Identification.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`aff. agrifolia var. oxyadenia` (for `Quercus aff. agrifolia var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank); `cf. var. oxyadenia` (for `Quercus agrifolia cf. var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank)",http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier,simple +http://rs.tdwg.org/dwc/terms/version/typeStatus-2023-06-28,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`; `holotype of Pinus abies | holotype of Picea abies`",http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/typeStatus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText,simple +http://rs.tdwg.org/dwc/terms/version/identifiedBy-2023-06-28,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the dwc:Taxon to the subject.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`James L. Patton`; `Theodore Pappenfuss | Robert Macey`,http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText,simple +http://rs.tdwg.org/dwc/terms/version/identifiedByID-2023-06-28,identifiedByID,Identified By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the dwc:Taxon to the subject.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space (` | `).",`https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people),http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identifiedByID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedByID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/dateIdentified-2023-06-28,dateIdentified,Date Identified,The date on which the subject was determined as representing the dwc:Taxon.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText,simple +http://rs.tdwg.org/dwc/terms/version/identificationReferences-2023-06-28,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the dwc:Identification.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Aves del Noroeste Patagonico. Christie et al. 2004.`; `Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.`",http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identificationReferences-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References,simple +http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2023-06-28,identificationVerificationStatus,Identification Verification Status,A categorical indicator of the extent to which the taxonomic identification has been verified to be correct.,"Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.","`0` (""unverified"" in HISPID/ABCD).",http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationVerificationStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2023-06-28,identificationRemarks,Identification Remarks,Comments or notes about the dwc:Identification.,,`Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.`,http://rs.tdwg.org/dwc/terms/Identification,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationRemarks,DataSets/DataSet/Units/Unit/Identifications/Identification/Notes,simple +http://rs.tdwg.org/dwc/terms/version/Taxon-2018-09-06,Taxon,Taxon,A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.,,The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/Taxon-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/taxonID-2023-06-28,taxonID,Taxon ID,An identifier for the set of dwc:Taxon information. May be a global unique identifier or an identifier specific to the data set.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`; `32567`; `https://www.gbif.org/species/212`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/taxonID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/scientificNameID-2017-10-06,scientificNameID,Scientific Name ID,An identifier for the nomenclatural (not taxonomic) details of a scientific name.,,`urn:lsid:ipni.org:names:37829-1:1.3`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2023-06-28,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,This term should be used for synonyms or misapplied names to refer to the dwc:taxonID of a dwc:Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.,`tsn:41107` (ITIS); `urn:lsid:ipni.org:names:320035-2` (IPNI); `2704179` (GBIF); `6W3C4` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2023-06-28,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the dwc:scientificName.",This term should be used for accepted names to refer to the dwc:taxonID of a dwc:Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.,`tsn:41074` (ITIS); `urn:lsid:ipni.org:names:30001404-2` (IPNI); `2704173` (GBIF); `6T8N` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2023-06-28,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.,"This term should be used to refer to the dwc:taxonID of a dwc:Taxon record that represents the usage of the terminal element of the dwc:scientificName as originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.",`tsn:41107` (ITIS); `urn:lsid:ipni.org:names:320035-2` (IPNI); `2704179` (GBIF); `6W3C4` (COL),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2023-06-28,nameAccordingToID,Name According To ID,An identifier for the source in which the specific taxon concept circumscription is defined or implied. See dwc:nameAccordingTo.,,`https://doi.org/10.1016/S0269-915X(97)80026-2`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingToID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2023-06-28,namePublishedInID,Name Published In ID,An identifier for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.,"A citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedInID should be empty.",,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2023-06-28,taxonConceptID,Taxon Concept ID,An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a dwc:Taxon.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/scientificName-2023-06-28,scientificName,Scientific Name,"The full scientific name, with authorship and date information if known. When forming part of a dwc: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 dwc:identificationQualifier term.","This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified. Names should be compliant to the most recent nomenclatural code. For example, names of hybrids for algae, fungi and plants should follow the rules of the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H.1, H.2 and H.3). Thus, use the multiplication sign `×` (Unicode `U+00D7`, HTML `×`) to identify a hybrid, not `x` or `X`, if possible.","`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); `×Agropogon littoralis (Sm.) C. E. Hubb.`; `Mentha ×smithiana R. A. Graham`; `Agrostis stolonifera L. × Polypogon monspeliensis (L.) Desf.`",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/scientificName-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString,simple +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2023-06-28,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) dwc:Taxon.","The full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided dwc:scientificName is considered by the reference indicated in the dwc:accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to a dwc:Organism or dwc:Occurrence, this term should be used in cases where a content provider regards the provided dwc:scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed dwc:Organism), and the name asserted by the content provider to be taxonomically accepted.",`Tamias minimus` (valid name for `Eutamias minimus`),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2023-06-28,parentNameUsage,Parent Name Usage,"The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent dwc:Taxon (in a classification) of the most specific element of the dwc:scientificName.",,`Rubiaceae`; `Gruiformes`; `Testudinae`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsage,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2023-06-28,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated dwc:nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the dwc:scientificName or the senior/earlier homonym for replaced names.","The full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.",`Pinus abies`; `Gasterosteus saltatrix Linnaeus 1768`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2023-06-28,nameAccordingTo,Name According To,"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.","This term provides context to the dwc:scientificName. Together with the dwc:scientificName, separated by `sensu` or `sec.`, it forms the taxon concept label, which may be seen as having the same relationship to dwc:taxonConceptID as, for example, dwc:acceptedNameUsage has to dwc:acceptedNameUsageID. When not provided, in Taxon Core data sets the dwc:nameAccordingTo can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, dwc:nameAccordingTo can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most dwc:PreservedSpecimen data sets, the dwc:Identification, in which case there is no further context.","`Franz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236.` (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013))",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2023-06-28,namePublishedIn,Name Published In,A reference for the publication in which the dwc:scientificName was originally established under the rules of the associated dwc:nomenclaturalCode.,"A citation of the first publication of the name in its given combination, not the basionym / original name. Recombinations are often not published in zoology, in which case dwc:namePublishedIn should be empty.","`Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`; `Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886`",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2023-06-28,namePublishedInYear,Name Published In Year,The four-digit year in which the dwc:scientificName was published.,,`1915`; `2008`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInYear,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/higherClassification-2023-06-28,higherClassification,Higher Classification,A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the referenced dwc:Taxon.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from the highest taxonomic rank to the lowest.",`Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus`; `Animalia`; `Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/higherClassification-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/kingdom-2023-06-28,kingdom,Kingdom,The full scientific name of the kingdom in which the dwc:Taxon is classified.,,`Animalia`; `Archaea`; `Bacteria`; `Chromista`; `Fungi`; `Plantae`; `Protozoa`; `Viruses`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/kingdom-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum,simple +http://rs.tdwg.org/dwc/terms/version/phylum-2023-06-28,phylum,Phylum,The full scientific name of the phylum or division in which the dwc:Taxon is classified.,,`Chordata` (phylum); `Bryophyta` (division),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/phylum-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum,simple +http://rs.tdwg.org/dwc/terms/version/class-2023-06-28,class,Class,The full scientific name of the class in which the dwc:Taxon is classified.,,`Mammalia`; `Hepaticopsida`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/class-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis,simple +http://rs.tdwg.org/dwc/terms/version/order-2023-06-28,order,Order,The full scientific name of the order in which the dwc:Taxon is classified.,,`Carnivora`; `Monocleales`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/order-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo,simple +http://rs.tdwg.org/dwc/terms/version/superfamily-2023-06-28,superfamily,Superfamily,The full scientific name of the family in which the dwc:Taxon is classified.,"A taxonomic category subordinate to an order and superior to a family. According to ICZN article 29.2, the suffix `-oidea` is used for a superfamily name.",`Achatinoidea`; `Cerithioidea`; `Helicoidea`; `Hypsibioidea`; `Valvatoidea`; `Zonitoidea`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/superfamily-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/superfamily,ScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: superfamilia),simple +http://rs.tdwg.org/dwc/terms/version/family-2023-06-28,family,Family,The full scientific name of the family in which the dwc:Taxon is classified.,,`Felidae`; `Monocleaceae`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/family-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia,simple +http://rs.tdwg.org/dwc/terms/version/subfamily-2023-06-28,subfamily,Subfamily,The full scientific name of the subfamily in which the dwc:Taxon is classified.,,`Periptyctinae`; `Orchidoideae`; `Sphindociinae`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/subfamily-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subfamily,"DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName if DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonRank == ""subfamilia""",simple +http://rs.tdwg.org/dwc/terms/version/tribe-2023-06-28,tribe,Tribe,The full scientific name of the tribe in which the dwc:Taxon is classified.,,`Ortaliini`; `Arethuseae`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/tribe-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/tribe,ScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: ),simple +http://rs.tdwg.org/dwc/terms/version/subtribe-2023-06-28,subtribe,Subtribe,The full scientific name of the subtribe in which the dwc:Taxon is classified.,,`Plotinini`; `Typhaeini`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/subtribe-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subtribe,ScientificNameIdentified/HigherTaxon/HigherTaxonRank (enumeration value: ),simple +http://rs.tdwg.org/dwc/terms/version/genus-2023-06-28,genus,Genus,The full scientific name of the genus in which the dwc:Taxon is classified.,,`Puma`; `Monoclea`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/genus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial},simple +http://rs.tdwg.org/dwc/terms/version/genericName-2023-06-28,genericName,Generic Name,The genus part of the dwc:scientificName without authorship.,For synonyms the accepted genus and the genus part of the name may be different. The term dwc:genericName should be used together with dwc:specificEpithet to form a binomial and with dwc:infraspecificEpithet to form a trinomial. The term dwc:genericName should only be used for combinations. Uninomials of generic rank do not have a dwc:genericName.,"`Felis` (for scientificName `Felis concolor`, with accompanying values of `Puma concolor` in acceptedNameUsage and `Puma` in genus)",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/genericName-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genericName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/subgenus-2023-06-28,subgenus,Subgenus,The full scientific name of the subgenus in which the dwc:Taxon is classified. Values should include the genus to avoid homonym confusion.,,`Strobus`; `Amerigo`; `Pilosella`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/subgenus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus,simple +http://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2023-06-28,infragenericEpithet,Infrageneric Epithet,The infrageneric part of a binomial name at ranks above species but below genus.,"The term dwc:infragenericEpithet should be used in conjunction with dwc:genericName, dwc:specificEpithet, dwc:infraspecificEpithet, dwc:taxonRank and dwc:scientificNameAuthorship to represent the individual elements of the complete dwc:scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., `Vicia sect. Cracca`).",`Abacetillus` (for scientificName `Abacetus (Abacetillus) ambiguus`); `Cracca` (for scientificName `Vicia sect. Cracca`),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infragenericEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Bacterial/Subgenus (for bacterial names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus (for zoological names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet (for botanical names),simple +http://rs.tdwg.org/dwc/terms/version/specificEpithet-2023-06-28,specificEpithet,Specific Epithet,The name of the first or species epithet of the dwc:scientificName.,,`concolor`; `gottschei`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/specificEpithet-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet},simple +http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2023-06-28,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the dwc:scientificName, excluding any rank designation.","In botany, name strings in literature and identifications may have multiple infraspecific ranks. According to the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles 6.7 & Art. 24.1), valid names only have two epithets, with the lowest rank being the dwc:infraspecificEpithet. For example: the dwc:infraspecificEpithet in the string `Indigofera charlieriana subsp. sessilis var. scaberrima` is `scaberrima` and the dwc:scientificName is `Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett`. Use dwc:verbatimIdentification for the full name string used in a dwc:Identification.","`concolor` (for scientificName `Puma concolor concolor (Linnaeus, 1771)`); `oxyadenia` (for scientificName `Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell`); `laxa` (for scientificName `Cheilanthes hirta f. laxa (Kunze) W.Jacobsen & N.Jacobsen`); `scaberrima` (for scientificName `Indigofera charlieriana var. scaberrima (Schinz) J.B.Gillett`)",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet,simple +http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2023-06-28,cultivarEpithet,Cultivar Epithet,"Part of the name of a cultivar, cultivar group or grex that follows the dwc:scientificName.","According to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the dwc:cultivarEpithet should exclude any quotes. The term dwc:taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in dwc:scientificName as well.",`King Edward` (for scientificName `Solanum tuberosum 'King Edward'` and taxonRank `cultivar`); `Mishmiense` (for scientificName `Rhododendron boothii Mishmiense Group` and taxonRank `cultivar group`); `Atlantis` (for scientificName `Paphiopedilum Atlantis grex` and taxonRank `grex`),http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/cultivarEpithet,http://rs.tdwg.org/abcd/terms/cultivarName or http://rs.tdwg.org/abcd/terms/cultivarGroupName or http://rs.tdwg.org/abcd/terms/breed (ABCD 3.0),simple +http://rs.tdwg.org/dwc/terms/version/taxonRank-2023-06-28,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the dwc:scientificName.,"Recommended best practice is to use a controlled vocabulary. The taxon ranks of algae, fungi and plants are defined in the International Code of Nomenclature for algae, fungi, and plants (Schenzhen Code Articles H3.2, H4.4 and H.3.1).",`subspecies`; `varietas`; `forma`; `species`; `genus`; `nothogenus`; `nothospecies`; `nothosubspecies`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/taxonRank-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank,simple +http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2023-06-28,verbatimTaxonRank,Verbatim Taxon Rank,The taxonomic rank of the most specific name in the dwc:scientificName as it appears in the original record.,,`Agamospecies`; `sub-lesus`; `prole`; `apomict`; `nothogrex`; `sp.`; `subsp.`; `var.`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimTaxonRank,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2023-06-28,scientificNameAuthorship,Scientific Name Authorship,The authorship information for the dwc:scientificName formatted according to the conventions of the applicable dwc:nomenclaturalCode.,,"`(Torr.) J.T. Howell`; `(Martinovský) Tzvelev`; `(Györfi, 1952)`",http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameAuthorship,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear},simple +http://rs.tdwg.org/dwc/terms/version/vernacularName-2023-06-28,vernacularName,Vernacular Name,A common or vernacular name.,,`Andean Condor`; `Condor Andino`; `American Eagle`; `Gänsegeier`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/vernacularName-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vernacularName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2023-06-28,nomenclaturalCode,Nomenclatural Code,The nomenclatural code (or codes in the case of an ambiregnal name) under which the dwc:scientificName is constructed.,Recommended best practice is to use a controlled vocabulary.,`ICN`; `ICZN`; `BC`; `ICNCP`; `BioCode`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code,simple +http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2023-06-28,taxonomicStatus,Taxonomic Status,"The status of the use of the dwc:scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a dwc:Taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.",Recommended best practice is to use a controlled vocabulary.,`invalid`; `misapplied`; `homotypic synonym`; `accepted`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonomicStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2023-06-28,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,,`nom. ambig.`; `nom. illeg.`; `nom. subnud.`,http://rs.tdwg.org/dwc/terms/Taxon,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte,simple +http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2017-10-06,taxonRemarks,Taxon Remarks,Comments or notes about the taxon or name.,,`this name is a misspelling in common use`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,recommended,http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2023-06-28,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",The weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.,,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2023-06-28,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts,extension +http://rs.tdwg.org/dwc/terms/version/measurementID-2023-06-28,measurementID,Measurement ID,"An identifier for the dwc:MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,`9c752d22-b09a-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/parentMeasurementID-2023-06-28,parentMeasurementID,Parent Measurement ID,An identifier for a broader dwc:MeasurementOrFact that groups this and potentially other dwc:MeasurementOrFacts.,May be a globally unique identifier or an identifier specific to the data set.,`9c752d22-b09a-11e8-96f8-529269fb1459`; `E1_E1_O1_M1`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/parentMeasurementID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentMeasurementID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/measurementType-2023-06-28,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion.","Recommended best practice is to use a controlled vocabulary. This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`tail length`; `temperature`; `trap line length`; `survey area`; `trap type`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementType-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter,extension +http://rs.tdwg.org/dwc/terms/version/measurementValue-2023-06-28,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`45`; `20`; `1`; `14.5`; `UV-light`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementValue-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,extension +http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2023-06-28,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the dwc:measurementValue.,,`0.01`; `normal distribution with variation of 2 m`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy,extension +http://rs.tdwg.org/dwc/terms/version/measurementUnit-2023-06-28,measurementUnit,Measurement Unit,The units associated with the dwc:measurementValue.,"Recommended best practice is to use the International System of Units (SI). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`m`; `g`; `l`; `°C`; `mm`; `km²`; `%`; `hh:mm:ss`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementUnit-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement,extension +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2023-06-28,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the dwc:MeasurementOrFact.","Recommended best practice is to separate the values in a list with space vertical bar space (` | `). This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`Rob Guralnick`; `Peter Desmet | Stijn Van Hoey`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy,extension +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2023-06-28,measurementDeterminedDate,Measurement Determined Date,The date on which the dwc:MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime,extension +http://rs.tdwg.org/dwc/terms/version/measurementMethod-2023-06-28,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.","This term has an equivalent in the dwciri: namespace that allows only an IRI as a value, whereas this term allows for any string literal value.",`minimum convex polygon around burrow entrances` (for a home range area); `barometric altimeter` (for an elevation),http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementMethod-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method,extension +http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2023-06-28,measurementRemarks,Measurement Remarks,Comments or notes accompanying the dwc:MeasurementOrFact.,,`tip of tail missing`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2023-06-28,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dcterms:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",An instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.,,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2023-06-28,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations,extension +http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2023-06-28,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (dwc:relatedResource, the object).",,`04b16710-b09c-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/resourceID-2018-09-06,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,`f809b9e0-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/resourceID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2023-06-28,relationshipOfResourceID,Relationship Of Resource ID,An identifier for the relationship type (predicate) that connects the subject identified by dwc:resourceID to its object identified by dwc:relatedResourceID.,"Recommended best practice is to use the identifiers of the terms in a controlled vocabulary, such as the OBO Relation Ontology.",`http://purl.obolibrary.org/obo/RO_0002456` (for the relation `pollinated by`); `http://purl.obolibrary.org/obo/RO_0002455` (for the relation `pollinates`); `https://www.inaturalist.org/observation_fields/879` (for the relation `eaten by`),http://rs.tdwg.org/dwc/terms/ResourceRelationship,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResourceID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2018-09-06,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,`dc609808-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,extension +http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2023-06-28,relationshipOfResource,Relationship Of Resource,The relationship of the subject (identified by dwc:resourceID) to the object (identified by dwc:relatedResourceID).,Recommended best practice is to use a controlled vocabulary.,`same as`; `duplicate of`; `mother of`; `offspring of`; `sibling of`; `parasite of`; `host of`; `valid synonym of`; `located within`; `pollinator of members of taxon`; `pollinated specific plant`; `pollinated by members of taxon`; `on slab with`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType,extension +http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2018-09-06,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.",,`Julie Woodruff`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2023-06-28,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC); `2009-02-20T08:40Z` (20 February 2009 8:40am UTC); `2018-08-29T15:19` (3:19pm local time on 29 August 2018); `1809-02-12` (some time during 12 February 1809); `1906-06` (some time in June 1906); `1971` (some time in the year 1971); `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC); `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909); `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007),http://rs.tdwg.org/dwc/terms/ResourceRelationship,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2023-06-28,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,,`mother and offspring collected from the same nest`; `pollinator captured in the act`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2023-06-28,recommended,http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2023-06-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments,extension +http://dublincore.org/usage/terms/history/#languageT-001,language,Language,A language of the resource.,Recommended best practice is to use an IRI from the Library of Congress ISO 639-2 scheme http://id.loc.gov/vocabulary/iso639-2,,http://purl.org/dc/terms/,2008-01-14,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/language,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/inDescribedPlace-2015-03-27,inDescribedPlace,In Described Place,Use to link a dcterms:Location instance subject to the lowest level standardized hierarchically-described resource.,"Recommended best practice is to use an IRI from a controlled registry. A ""convenience property"" that replaces Darwin Core literal-value terms related to locations. See Section 2.7.5 of the Darwin Core RDF Guide for details.",`http://vocab.getty.edu/tgn/1019987`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inDescribedPlace,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/identifiedBy-2023-06-28,identifiedBy,Identified By (IRI),"A person, group, or organization who assigned the dwc:Taxon to the subject.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/identifiedBy-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identifiedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/recordedBy-2023-06-28,recordedBy,Recorded By (IRI),"A person, group, or organization responsible for recording the original dwc:Occurrence.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/recordedBy-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/toTaxon-2015-03-27,toTaxon,To Taxon,"Use to link a dwc:Identification instance subject to a taxonomic entity such as a taxon, taxon concept, or taxon name use.","A ""convenience property"" that replaces Darwin Core literal-value terms related to taxonomic entities. See Section 2.7.4 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/toTaxon,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/inCollection-2015-03-27,inCollection,In Collection,Use to link any subject resource that is part of a collection to the collection containing the resource.,"Recommended best practice is to use an IRI from a controlled registry. A ""convenience property"" that replaces literal-value terms related to collections and institutions. See Section 2.7.3 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inCollection,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferencedBy-2023-06-28,georeferencedBy,Georeferenced By (IRI),"A person, group, or organization who determined the georeference (spatial representation) for the dcterms:Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/georeferencedBy-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferencedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/behavior-2023-06-28,behavior,Behavior (IRI),A description of the behavior shown by the subject at the time the dwc:Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/behavior-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/behavior,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/caste-2023-06-28,caste,Caste (IRI),Categorisation of individuals for eusocial species (including some mammals and arthropods).,Recommended best practice is to use a controlled vocabulary that aligns best with the dwc:Taxon. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/caste,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/dataGeneralizations-2015-03-27,dataGeneralizations,Data Generalizations (IRI),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.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/dataGeneralizations,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2023-06-28,degreeOfEstablishment,Degree of Establishment (IRI),"The degree to which a dwc:Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcdoe/values/d003`; `http://rs.tdwg.org/dwcdoe/values/d005`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2021-03-29,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/degreeOfEstablishment,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/disposition-2023-06-28,disposition,Disposition (IRI),The current state of a specimen with respect to the collection identified in dwc:collectionCode or dwc:collectionID.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/disposition-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/disposition,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/earliestGeochronologicalEra-2015-03-27,earliestGeochronologicalEra,Earliest Geochronological Era,Use to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the earliest possible geological time period from which the cataloged item was collected.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/earliestGeochronologicalEra,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2023-06-28,establishmentMeans,Establishment Means (IRI),Statement about whether a dwc:Organism has been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcem/values/e001`; `http://rs.tdwg.org/dwcem/values/e005`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2021-03-29,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/eventType-2023-06-28,eventType,Event Type (IRI),The nature of the dwc:Event.,"Recommended best practice is to use a controlled vocabulary. Regardless of the dwc:eventType, the interval of the dwc:Event can be captured in dwc:eventDate. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/eventType,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/fieldNotes-2023-06-28,fieldNotes,Field Notes (IRI),"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.",The subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/fieldNotes-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNotes,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/fieldNumber-2023-06-28,fieldNumber,Field Number (IRI),An identifier given to the event in the field. Often serves as a link between field notes and the dwc:Event.,The subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/fieldNumber-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNumber,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/footprintSRS-2023-06-28,footprintSRS,Footprint SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in dwc:footprintWKT is based.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/footprintSRS-2021-07-15,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintSRS,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/footprintWKT-2023-06-28,footprintWKT,Footprint WKT (IRI),"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.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/footprintWKT-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintWKT,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/fromLithostratigraphicUnit-2015-03-27,fromLithostratigraphicUnit,From Lithostratigraphic Unit,Use to link a dwc:GeologicalContext instance to an IRI-identified lithostratigraphic unit at the lowest possible level in a hierarchy.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.7 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fromLithostratigraphicUnit,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/geodeticDatum-2023-06-28,geodeticDatum,Geodetic Datum (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in dwc:decimalLatitude and dwc:decimalLongitude is based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.",`https://epsg.io/4326`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/geodeticDatum-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/geodeticDatum,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceProtocol-2015-03-27,georeferenceProtocol,Georeference Protocol (IRI),"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceProtocol,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceSources-2023-06-28,georeferenceSources,Georeference Sources (IRI),"A map, gazetteer, or other resource used to georeference the dcterms:Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/georeferenceSources-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceSources,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2023-06-28,georeferenceVerificationStatus,Georeference Verification Status (IRI),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.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2021-07-15,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/habitat-2023-06-28,habitat,Habitat (IRI),A category or description of the habitat in which the dwc:Event occurred.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/habitat-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/habitat,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/identificationQualifier-2023-06-28,identificationQualifier,Identification Qualifier (IRI),A controlled value to express the determiner's doubts about the dwc:Identification.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/identificationQualifier-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identificationQualifier,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/identificationVerificationStatus-2015-03-27,identificationVerificationStatus,Identification Verification Status (IRI),A categorical indicator of the extent to which the taxonomic identification has been verified to be correct.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects. Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identificationVerificationStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/inDataset-2015-03-27,inDataset,In Dataset,Use to link a subject dataset record to the dataset which contains it.,A string literal name of the dataset can be provided using the term dwc:datasetName. See the Darwin Core RDF Guide for details.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/inDataset,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/informationWithheld-2015-03-27,informationWithheld,Information Withheld (IRI),"Additional information that exists, but that has not been shared in the given record.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/informationWithheld,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/latestGeochronologicalEra-2015-03-27,latestGeochronologicalEra,Latest Geochronological Era,Use to link a dwc:GeologicalContext instance to chronostratigraphic time periods at the lowest possible level in a standardized hierarchy. Use this property to point to the latest possible geological time period from which the cataloged item was collected.,"Recommended best practice is to use an IRI from a controlled vocabulary. A ""convenience property"" that replaces Darwin Core literal-value terms related to geological context. See Section 2.7.6 of the Darwin Core RDF Guide for details.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/latestGeochronologicalEra,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/lifeStage-2023-06-28,lifeStage,Life Stage (IRI),The age class or life stage of the dwc:Organism(s) at the time the dwc:Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/lifeStage-2021-07-15,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/lifeStage,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2023-06-28,locationAccordingTo,Location According To (IRI),"Information about the source of this dcterms:Location information. Could be a publication (gazetteer), institution, or team of individuals.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/locationAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2023-06-28,measurementDeterminedBy,Measurement Determined By (IRI),"A person, group, or organization who determined the value of the dwc:MeasurementOrFact.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementDeterminedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementMethod-2015-03-27,measurementMethod,Measurement Method (IRI),"The method or protocol used to determine the measurement, fact, characteristic, or assertion.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementMethod,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementType-2015-03-27,measurementType,Measurement Type (IRI),"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementType,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementUnit-2023-06-28,measurementUnit,Measurement Unit (IRI),The units associated with the dwc:measurementValue.,"Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/measurementUnit-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementUnit,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementValue-2021-07-15,measurementValue,Measurement Value (IRI),"The value of the measurement, fact, characteristic, or assertion.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,`http://vocab.nerc.ac.uk/collection/L22/current/TOOL0960/`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementValue,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2023-06-28,occurrenceStatus,Occurrence Status (IRI),A statement about the presence or absence of a dwc:Taxon at a dcterms:Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/occurrenceStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/organismQuantityType-2015-03-27,organismQuantityType,Organism Quantity Type (IRI),The type of quantification system used for the quantity of organisms.,A dwc:organismQuantityType must have a corresponding dwc:organismQuantity.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/organismQuantityType,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/pathway-2023-06-28,pathway,Pathway (IRI),The process by which a dwc:Organism came to be in a given place at a given time.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",`http://rs.tdwg.org/dwcpw/values/p002`; `http://rs.tdwg.org/dwcpw/values/p046`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/pathway-2021-03-29,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/pathway,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/preparations-2015-03-27,preparations,Preparations (IRI),A preparation or preservation method for a specimen.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/preparations,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/recordNumber-2023-06-28,recordNumber,Record Number (IRI),"An identifier given to the dwc:Occurrence at the time it was recorded. Often serves as a link between field notes and a dwc:Occurrence record, such as a specimen collector's number.",The subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/recordNumber-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordNumber,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2023-06-28,reproductiveCondition,Reproductive Condition (IRI),The reproductive condition of the biological individual(s) represented in the dwc:Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/reproductiveCondition,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2023-06-28,sampleSizeUnit,Sampling Size Unit (IRI),"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling dwc:Event.","A dwciri:sampleSizeUnit must have a corresponding dwc:sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sampleSizeUnit,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2023-06-28,samplingProtocol,Sampling Protocol (IRI),"The methods or protocols used during a dwc:Event, denoted by an IRI.","Recommended best practice is describe a dwc:Event with no more than one sampling protocol. In the case of a summary dwc:Event in which a specific protocol can not be attributed to specific dwc:Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the dwc:Occurrence.",`https://doi.org/10.1111/j.1466-8238.2009.00467.x`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2021-07-15,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/samplingProtocol,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/sex-2023-06-28,sex,Sex (IRI),The sex of the biological individual(s) represented in the dwc:Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/sex-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sex,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/typeStatus-2015-03-27,typeStatus,Type Status (IRI),"A nomenclatural type (type status, typified scientific name, publication) applied to the subject.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/typeStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2023-06-28,verbatimCoordinateSystem,Verbatim Coordinate System (IRI),The spatial coordinate system for the dwc:verbatimLatitude and dwc:verbatimLongitude or the dwc:verbatimCoordinates of the dcterms:Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2023-06-28,verbatimSRS,Verbatim SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in dwc:verbatimLatitude and dwc:verbatimLongitude, or dwc:verbatimCoordinates are based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary IRI for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary IRI for the name or code of the ellipsoid, if known.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimSRS,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/verticalDatum-2021-07-15,verticalDatum,Vertical Datum (IRI),The vertical datum used as the reference upon which the values in the elevation terms are based.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verticalDatum,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/vitality-2023-06-28,vitality,Vitality (IRI),An indication of whether a dwc:Organism was alive or dead at the time of collection or observation.,"Recommended best practice is to use a controlled vocabulary. Intended to be used with records having a dwc:basisOfRecord of `PreservedSpecimen`, `MaterialSample`, or `HumanObservation`. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2023-06-28,recommended,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/vitality,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2018-09-06,LivingSpecimen,Living Specimen,A specimen that is alive.,,A living plant in a botanical garden. A living animal in a zoo.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen,extension +http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2018-09-06,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,A plant on an herbarium sheet. A cataloged lot of fish in a jar.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen,extension +http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2018-09-06,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,A body fossil. A coprolite. A gastrolith. An ichnofossil. A piece of a petrified tree.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen,extension +http://rs.tdwg.org/dwc/terms/version/MaterialCitation-2021-07-15,MaterialCitation,Material Citation,"A reference to or citation of one, a part of, or multiple specimens in scholarly publications.","This class constitutes a new value for the controlled vocabulary in the recommendations for basisOfRecord. When importing Darwin Core Archives of literature-based datasets to GBIF, the basisOfRecord should be changed from “Occurrence”, ""PreservedSpecimen"" or ""Literature"" to “MaterialCitation”.","A citation of a physical specimen from a scientific collection in a taxonomic treatment in a scientific publication. A citation of a group of physical specimens, such as paratypes in a taxonomic treatment in a scientific publication. An occurrence mentioned in a field note book.",,2021-07-15,recommended,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialCitation,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/HumanObservation-2018-09-06,HumanObservation,Human Observation,An output of a human observation process.,,Evidence of an Occurrence taken from field notes or literature. A record of an Occurrence without physical evidence nor evidence captured with a machine. ,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/HumanObservation-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation,extension +http://rs.tdwg.org/dwc/terms/version/MachineObservation-2018-09-06,MachineObservation,Machine Observation,An output of a machine observation process.,,A photograph. A video. An audio recording. A remote sensing image. A Occurrence record based on telemetry.,,2018-09-06,recommended,http://rs.tdwg.org/dwc/terms/version/MachineObservation-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation,extension +http://digir.net/schema/conceptual/darwin/2003/1.0/version/AgeClass-2003-06-17,AgeClass,Age Class,"The age class, reproductive stage, life stage of the biological individual (e.g., juvenile, adult, eft, nymph, etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/AgeClass,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-13,BasisOfRecord,Basis of Record,"An abbreviation indicating whether the record represents an observation (O), living organism (L), specimen (S), germplasm/seed (G), etc.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-17,BasisOfRecord,Basis of Record,"A description indicating whether the record represents an observation, tissue sample, living organism, voucher specimen, germplasm/seed, genetic information, etc.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BasisOfRecord,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-13,BoundingBox,Bounding Box,"This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the Latitude and Longitude columns by the data provider",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-17,BoundingBox,Bounding Box,"This access point provides a mechanism for performing searches using a bounding box. A Bounding Box element is not typically present in the database, but rather is derived from the DecimalLatitude and DecimalLongitude columns by the data provider.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BoundingBox-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/BoundingBox,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumber-2003-06-13,CatalogNumber,Catalog Number,"A unique alphanumeric value which identifies an individual record within the collection. It is recommended that this value provides a key by which the actual specimen can be identified. If the specimen has several items such as various types of preparation, this value should identify the individual component of the specimen",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,CatalogNumberNumeric,Catalog Number Numeric,"The CatalogNumber as a numeric value, if applicable. Allows searching on numeric ranges of CatalogNumbers.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberNumeric,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberText-2003-06-17,CatalogNumberText,Catalog Number Text,An alphanumeric value which identifies an individual cataloged item within the collection. It is recommended that this value provides a key by which the individual cataloged item can be identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CatalogNumberText,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-13,Class,Class,The class name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Class,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-17,Class,Class,The phylogenetic class to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Class,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-13,CollectionCode,Collection Code,A unique alphanumeric value which identifies the collection within the institution,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-17,CollectionCode,Collection Code,A unique alphanumeric value that identifies the collection within the institution in which the item is cataloged. This attribute must contain no spaces.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectionCode,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-13,Collector,Collector,The name(s) of the collector(s) responsible for collection the specimen or taking the observation,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Collector,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-17,Collector,Collector,The name(s) of the collector(s) of the original data for the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Collector,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-13,CollectorNumber,Collector Number,"An identifying ""number"" (really a string) applied to specimens (in some disciplines) at the time of collection. Establishes a links different parts/preparations of a single specimen and between field notes and the specimen.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-17,CollectorNumber,Collector Number,An identifying string applied to the cataloged item at the time of collection. Serves as a link between field notes and the cataloged items.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CollectorNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-13,ContinentOcean,Continent Ocean,The continent or ocean from which a specimen was collected.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,ContinentOcean,Continent Ocean,"The full, unabbreviated name of the continent or ocean from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ContinentOcean,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,CoordinatePrecision,Coordinate Precision,"An estimate of how tightly the collecting locality was specified; expressed as a distance, in meters, that corresponds to a radius around the latitude-longitude coordinates. Use NULL where precision is unknown, cannot be estimated, or is not applicable.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinatePrecision,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinateUncertaintyInMeters-2003-06-17,CoordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The upper limit of the distance (in meters) from the given latitude and longitude describing a circle within which the whole of the described locality must lie. Use NULL where the uncertainty is unknown, cannot be estimated, or is not applicable.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/CoordinateUncertaintyInMeters,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-13,Country,Country,The country or major political unit from which the specimen was collected. ISO 3166-1 (http://www.din.de/gremien/nas/nabd/iso3166ma/codlstp1/db_en.html) values should be used. Full country names are currently in use. A future recommendation is to use ISO3166-1 two letter codes or the full name when searching,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Country,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-17,Country,Country,"The full, unabbreviated name of the country or major political unit from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Country,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-13,County,County,"The county (or shire, or next political region smaller than State / Province) from which the specimen was collected",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/County,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-17,County,County,"The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/County,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-13,DateLastModified,Date Last Modified,"ISO 8601 compliant stamp indicating the date and time in UTC(GMT) when the record was last modified. Example: the instant ""November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be represented as ""1994-11-05T13:15:30Z"" (see W3C Note on Date and Time Formats - http://www.w3.org/TR/NOTE-datetime). (What to do when this date-time is unknown? Use Date-Time first ""published""?)",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-17,DateLastModified,Date Last Modified,"ISO 8601 date and time in UTC(GMT) when the record was last modified. Example: ""November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be ""1994-11-05T13:15:30Z"" (see http://www.w3.org/TR/NOTE-datetime).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DateLastModified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-13,DayCollected,Day Collected,The day of the month the specimen was collected from the field. Possible value ranges from 01..31 inclusive,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17,DayCollected,Day Collected,The two digit day of the month in the Common Era calendar during which the cataloged item was collected from the field.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-13,DayIdentified,Day Identified,The day portion of the date when the Collection Item was identified; as two digits [01..31].,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-17,DayIdentified,Day Identified,The two digit day of the month in the Common Era calendar during which the cataloged item was identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DayIdentified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLatitude-2003-06-17,DecimalLatitude,Decimal Latitude,"The latitude of the location from which the cataloged item was collected, expressed in decimal degrees.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Latitude-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLatitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLongitude-2003-06-17,DecimalLongitude,Decimal Longitude,"The longitude of the location from which the cataloged item was collected, expressed in decimal degrees.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Longitude-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/DecimalLongitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-13,Family,Family,The family name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Family,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-17,Family,Family,The phylogenetic family to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Family,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNotes-2003-06-17,FieldNotes,Field Notes,"A reference to, or flag marking the existence of notes taken in the field for the cataloged item.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNotes,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-13,FieldNumber,Field Number,"A ""number"" (really a string) created at collection time to identify all material that resulted from a collecting event.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-17,FieldNumber,Field Number,An identifying string applied to a set of material that resulted from a single collecting event.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/FieldNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/GenBankNum-2003-06-17,GenBankNum,Gen Bank Num,GenBank Accession number.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/GenBankNum,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-13,Genus,Genus,The genus name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Genus,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-17,Genus,Genus,The phylogenetic genus to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Genus,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/GeorefMethod-2003-06-17,GeorefMethod,Georef Method,A reference to the methods used for determining the coordinates and uncertainties.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/GeorefMethod,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherGeography-2003-06-17,HigherGeography,Higher Geography,"The combination of all geographic elements less specific than locality. ""Like"" query operations on this element will search for a substring in any of the higher geography attributes.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HigherGeography,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherTaxon-2003-06-17,HigherTaxon,Higher Taxon,"The combination of names of taxonomic ranks less specific than Genus. ""Like"" query operations on this element will search for a substring in any of the higher taxon attributes.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HigherTaxon,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/HorizontalDatum-2003-06-17,HorizontalDatum,Horizontal Datum,The horizontal geodetic datum to which the DecimalLatitude and DecimalLongitude refer.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/HorizontalDatum,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentificationModifier-2003-06-17,IdentificationModifier,Identification Modifier,"Additional information documenting the taxonomic determination of the cataloged item (e.g., ""cf."", ""aff."", ""subspecies in question"", etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentificationModifier,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-13,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the currently accepted Scientific Name to the Cataloged Item.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-17,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the currently accepted ScientificName to the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IdentifiedBy,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-13,IndividualCount,Individual Count,The number of individuals present in the lot or container. Not an estimate of abundance or density at the collecting locality.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-17,IndividualCount,Individual Count,The number of individuals present in the lot or container referred to by the catalog number. Not an estimate of abundance or density at the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IndividualCount,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-13,InstitutionCode,Institution Code,"A ""standard"" code identifier that identifies the institution to which the collection belongs. No global registry exists for assigning institutional codes. Use the code that is ""standard"" in your discipline.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-17,InstitutionCode,Institution Code,"A code that identifies the institution to which the cataloged item belongs. No global registry exists for institutional codes; use the code that is ""standard"" in your discipline. This attribute must contain no spaces.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/InstitutionCode,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Island-2003-06-17,Island,Island,"The full, unabbreviated name of the island from which the cataloged item was collected.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Island,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/IslandGroup-2003-06-17,IslandGroup,Island Group,"The full, unabbreviated name of the island group from which the cataloged item was collected.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/IslandGroup,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-13,JulianDay,Julian Day,"The ordinal day of the year; i.e., the number of days since January 1 of the same year. (January 1 is Julian Day 1.)",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-17,JulianDay,Julian Day,"The ordinal day of the year (i.e., the number of days since December 31 of the previous year; January 1 is Julian Day 1) on which the cataloged item was collected. May be derived from the YearCollected, MonthCollected, and DayCollected by the provider.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/JulianDay,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-13,Kingdom,Kingdom,The kingdom to which the organism belongs,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-17,Kingdom,Kingdom,The phylogenetic kingdom to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Kingdom,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Latitude-2003-06-13,Latitude,Latitude,The latitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Latitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/LatLongComments-2003-06-17,LatLongComments,Lat Long Comments,Comments about the LatLong determination.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/LatLongComments,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-13,Locality,Locality,"The locality description (place name plus optionally a displacement from the place name) from which the specimen was collected. Where a displacement from a location is provided, it should be in un-projected units of measurement",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Locality,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-17,Locality,Locality,"The description of the locality from which the cataloged item was collected, sans geographic information provided in other geographic fields.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Locality,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Longitude-2003-06-13,Longitude,Longitude,The longitude of the location from which the specimen was collected. This value should be expressed in decimal degrees with a datum such as WGS-84,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Longitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepth-2003-06-13,MaximumDepth,Maximum Depth,"The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepth,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepthInMeters-2003-06-17,MaximumDepthInMeters,Maximum Depth In Meters,"The maximum distance in meters below the surface of the water at which the collection was made; all material collected was at most this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepth-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumDepthInMeters,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevation-2003-06-13,MaximumElevation,Maximum Elevation,The maximum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevation,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevationInMeters-2003-06-17,MaximumElevationInMeters,Maximum Elevation In Meters,The maximum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevation-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MaximumElevationInMeters,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepth-2003-06-13,MinimumDepth,Minimum Depth,"The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g. collecting above sea level in tidal areas).",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepth,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepthInMeters-2003-06-17,MinimumDepthInMeters,Minimum Depth In Meters,"The minimum distance in meters below the surface of the water at which the collection was made; all material collected was at least this deep. Positive below the surface, negative above (e.g., collecting above sea level in tidal areas).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepth-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumDepthInMeters,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevation-2003-06-13,MinimumElevation,Minimum Elevation,The minimum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevation,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevationInMeters-2003-06-17,MinimumElevationInMeters,Minimum Elevation In Meters,The minimum distance in meters above (positive) or below sea level of the collecting locality.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevation-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MinimumElevationInMeters,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-13,MonthCollected,Month Collected,The month of year the specimen was collected from the field. Possible values range from 01...12 inclusive,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17,MonthCollected,Month Collected,The two digit month of year in the Common Era calendar during which the cataloged item was collected from the field.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-13,MonthIdentified,Month Identified,The month portion of the date when the Collection Item was identified; as two digits [01..12].,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-17,MonthIdentified,Month Identified,The two digit month in the Common Era calendar during which the cataloged item was identified.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/MonthIdentified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Notes-2003-06-13,Notes,Notes,Free text notes attached to the specimen record,,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Notes,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-13,Order,Order,The order name of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Order,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-17,Order,Order,The phylogenetic order to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Order,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/OriginalCoordinateSystem-2003-06-17,OriginalCoordinateSystem,Original Coordinate System,"The name of the system in which the original geographic coordinates were recorded (e.g., ""decimal degrees"", ""degrees minutes seconds"", ""UTM"", etc.).",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/OriginalCoordinateSystem,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/OtherCatalogNumbers-2003-06-17,OtherCatalogNumbers,Other Catalog Numbers,A list of previous or alternative fully qualified catalog numbers of the cataloged item whether in the current collection or in any other.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreviousCatalogNumber-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/OtherCatalogNumbers,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-13,Phylum,Phylum,The phylum (or division) to which the organism belongs,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-17,Phylum,Phylum,The phylogenetic phylum (or division) to which the cataloged item belongs.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Phylum,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Preparations-2003-06-17,Preparations,Preparations,"A concatenated list of preparations and preservation methods (skin, skull, skeleton, whole animal (ETOH), slide, etc.) for the cataloged item.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreparationType-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Preparations,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreparationType-2003-06-13,PreparationType,Preparation Type,"The type of preparation (skin. slide, etc). Probably best to add this as a record element rather than access point. Should be a list of preparations for a single collection record.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/PreparationType,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/PreviousCatalogNumber-2003-06-13,PreviousCatalogNumber,Previous Catalog Number,"The previous (fully qualified) catalog number of the Cataloged Item if the item earlier identified by another Catalog Number, either in the current catalog or another Institution / catalog. A fully qualified Catalog Number is preceded by Institution Code and Collection Code, with a space separating the each subelement. Referencing a previous Catalog Number does not imply that a record for the referenced item is or is not present in the corresponding catalog, or even that the referenced catalog still exists. This access point is intended to provide a way to retrieve this record by previously used identifier, which may used in the literature. In future versions of this schema this attribute should be set-valued.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/PreviousCatalogNumber,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogedItems-2003-06-17,RelatedCatalogedItems,Related Cataloged Items,"The fully qualified identifier (Institution Code + "" "" + Collection Code + "" "" + Catalog Number) of the related Cataloged Item, preceded by the nature of the relationship (e.g., (sibling of) MVZ Mamm 1234).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogItem-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogedItems,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogItem-2003-06-13,RelatedCatalogItem,Related Cataloged Item,"The fully qualified identifier of a related Catalog Item (a reference to another specimen); Institution Code, Collection Code, and Catalog Number of the related Cataloged Item, where a space separates the three subelements.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelatedCatalogItem,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelationshipType-2003-06-13,RelationshipType,Relationship Type,"A named or coded valued that identifies the kind relationship between this Collection Item and the referenced Collection Item. Named values include: ""parasite of"", ""epiphyte on"", ""progeny of"", etc. In future versions of this schema this attribute should be set-valued.",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/RelationshipType,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Remarks-2003-06-17,Remarks,Remarks,Free text comments accompanying the cataloged item record.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Notes-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Remarks,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-13,ScientificName,Scientific Name,"The full name of lowest level taxon the Cataloged Item can be identified as a member of; includes genus name, specific epithet, and subspecific epithet (zool.) or infraspecific rank abbreviation, and infraspecific epithet (bot.) Use name of suprageneric taxon (e.g., family name) if Cataloged Item cannot be identified to genus, species, or infraspecific taxon.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-17,ScientificName,Scientific Name,"The full name of lowest level taxon to which the cataloged item can be identified (e.g., genus name, specific epithet, subspecific epithet, etc.).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificName,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-13,ScientificNameAuthor,Scientific Name Author,The author of a scientific name. Author string as applied to the accepted name. Can be more than one author (concatenated string). Should be formatted according to the conventions of the applicable taxonomic discipline.,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-17,ScientificNameAuthor,Scientific Name Author,The author of the ScientificName. Can be more than one author in a concatenated string. Should be formatted according to the conventions of the applicable taxonomic discipline.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/ScientificNameAuthor,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-13,Sex,Sex,The sex of a specimen. The domain should be a controlled set of terms (codes) based on community consensus. Proposed values: M=Male; F=Female; H=Hermaphrodite; I=Indeterminate (examined but could not be determined; U=Unkown (not examined); T=Transitional (between sexes; useful for sequential hermaphrodites),,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Sex,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-17,Sex,Sex,"The sex of a cataloged item (e.g., male, female, hermaphrodite, gynandromorph, not recorded, indeterminate, transitional - between sexes, for sequential hermaphrodites).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Sex,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-13,Species,Species,The specific epithet of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Species,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-17,Species,Species,The phylogenetic specific epithet of the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Species,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-13,StateProvince,State Province,"The state, province or region (i.e. next political region smaller than Country) from which the specimen was collected. There is some suggestion to use the values described in ISO 3166-2 (http://www.iso.ch/cate/d8349.html), however these values are in a continual state of flux and it appears unlikely that an appropriate mechanism (by ISO) will be in place to manage these changes. Hence it is recommended that where possible, the full, unabbreviated name should be used for storing information. The server should optionally handle abbreviations as an access point. Note: this is a recurring theme (country and state) abbreviations. Check the existence of an attribute type to deal with abbreviations from the bib-1 profile",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-17,StateProvince,State Province,"The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) from which the cataloged item was collected.",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/StateProvince,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-13,Subspecies,Subspecies,The sub-specific epithet of the organism,,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-17,Subspecies,Subspecies,The phylogenetic subspecific epithet of the cataloged item.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Subspecies,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeCollected-2003-06-17,TimeCollected,Time Collected,"The time of day the cataloged item was collected, expressed as decimal hours from midnight, local time (e.g., 12.0 = noon, 13.5 = 1:30pm).",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeOfDay-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TimeCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/TimeOfDay-2003-06-13,TimeOfDay,Time of Day,"The time of day a specimen was collected expressed as decimal hours from midnight local time (e.g. 12.0 = mid day, 13.5 = 1:30pm)",,,,2003-06-13,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TimeOfDay,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/Tissues-2003-06-17,Tissues,Tissues,"A concatenated list of tissues and preservation methods (whole (frozen), liver (EDTA), etc.) for the cataloged item.",,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/Tissues,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-13,TypeStatus,Type Status,"Indicates the kind of nomenclatural type that a specimen represents. (This is incomplete because type status actually describes the relationship between a name and a specimen [or ternary relatiohnship between a specimen, name, and publication].) In particular, the type status may not apply to the name listed in the scientific name, i.e., current identification. In rare cases, a single specimen may be the type of more than one name.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-17,TypeStatus,Type Status,"A list of one or more nomenclatural types that the cataloged item represents (e.g., ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388."").",,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/TypeStatus,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimCollectingDate-2003-06-17,VerbatimCollectingDate,Verbatim Collecting Date,The verbatim original representation of the date information for the collecting event.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimCollectingDate,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimDepth-2003-06-17,VerbatimDepth,Verbatim Depth,A text representation of the Depth in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimDepth,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimElevation-2003-06-17,VerbatimElevation,Verbatim Elevation,A text representation of the Elevation in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimElevation,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLatitude-2003-06-17,VerbatimLatitude,Verbatim Latitude,A text representation of the Latitude data in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLatitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLongitude-2003-06-17,VerbatimLongitude,Verbatim Longitude,A text representation of the Longitude data in its original format in the source database.,,,,2003-06-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/VerbatimLongitude,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-13,YearCollected,Year Collected,"The year (expressed as an integer) in which the specimen was collected. The full year should be expressed (e.g. 1972 must be expressed as ""1972"" not ""72""). Must always be a four digit integer [-9999..9999]",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,YearCollected,Year Collected,The four digit year in the Common Era calendar in which the cataloged item was collected.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearCollected,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-13,YearIdentified,Year Identified,"The year portion of the date when the Collection Item was identified; as four digits [-9999..9999], e.g., 1906, 2002.",,,,2003-06-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified,, +http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-17,YearIdentified,Year Identified,The four digit year in the Common Era calendar in which the cataloged item was identified as having the ScientificName.,,,,2003-06-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/2003/1.0/YearIdentified,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Bed-2005-07-03,Bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Bed,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestAgeOrLowestStage-2005-07-03,EarliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestAgeOrLowestStage,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEonOrLowestEonothem-2005-07-03,EarliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.",,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEonOrLowestEonothem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEpochOrLowestSeries-2005-07-03,EarliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEpochOrLowestSeries,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEraOrLowestErathem-2005-07-03,EarliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestEraOrLowestErathem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestPeriodOrLowestSystem-2005-07-03,EarliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/EarliestPeriodOrLowestSystem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Formation-2005-07-03,Formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Formation,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Group-2005-07-03,Group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Group,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/HighestBiostratigraphicZone-2005-07-03,HighestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/HighestBiostratigraphicZone,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestAgeOrHighestStage-2005-07-03,LatestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestAgeOrHighestStage,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEonOrHighestEonothem-2005-07-03,LatestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.",,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEonOrHighestEonothem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEpochOrHighestSeries-2005-07-03,LatestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEpochOrHighestSeries,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEraOrHighestErathem-2005-07-03,LatestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestEraOrHighestErathem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestPeriodOrHighestSystem-2005-07-03,LatestPeriodOrHighestSystem,Latest Period Or Highest System,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.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LatestPeriodOrHighestSystem,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LithostratigraphicTerms-2005-07-03,LithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LithostratigraphicTerms,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LowestBiostratigraphicZone-2005-07-03,LowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/LowestBiostratigraphicZone,, +http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Member-2005-07-03,Member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,,,,2005-07-03,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/Member,, +http://dublincore.org/usage/terms/history/#rightsT-001,rights,Rights,Information about rights held in and over the resource.,"Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.",,http://purl.org/dc/terms/,2008-01-14,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/rights,not in ABCD, +http://dublincore.org/usage/terms/history/#typeT-001,type,Type,The nature or genre of the resource.,"To provide a string literal value for type, use dc:type rather than this term. In accordance with the Darwin Core RDF guide, rdf:type should be used instead of this term to indicate an IRI value for type.",,http://purl.org/dc/terms/,2008-01-14,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://purl.org/dc/terms/type,not in ABCD, +http://gensc.org/ns/mixs/version/source_mat_id-2011-01-26,source_mat_id,source material identifiers,"A unique identifier assigned to a material sample (as defined by http://rs.tdwg.org/dwc/terms/MaterialSampleID, and as opposed to a particular digital record of a material sample) used for extracting nucleic acids, and subsequent sequencing. The identifier can refer either to the original material collected or to any derived sub-samples. The INSDC qualifiers /specimen_voucher, /bio_material, or /culture_collection provide additional context and suggested syntax for this identifier for data submitted to INSDC databases.",,,,2011-01-26,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://gensc.org/ns/mixs/source_mat_id,, +http://rs.tdwg.org/dwc/curatorial/version/CatalogNumberNumeric-2007-04-17,CatalogNumberNumeric,Catalog Number Numeric,"The CatalogNumber as a numeric value, if applicable. This element allows searching on numeric ranges of CatalogNumbers. Example: 145732.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/CatalogNumberNumeric,DataSets/DataSet/Units/Unit/UnitIDNumeric, +http://rs.tdwg.org/dwc/curatorial/version/CollectorNumber-2007-04-17,CollectorNumber,Collector Number,An identifying string applied to the object or observation at the time of collection. Serves as a link between field notes and the object or observation.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectorNumber-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/CollectorNumber,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, +http://rs.tdwg.org/dwc/curatorial/version/DateIdentified-2007-04-17,DateIdentified,Date Identified,The date-time in the Common Era calendar in which the object or observation was identified as being a member of the taxon given in the ScientificName.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayIdentified-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthIdentified-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearIdentified-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/DateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, +http://rs.tdwg.org/dwc/curatorial/version/Disposition-2007-04-17,Disposition,Disposition,"The current disposition of the cataloged item. Examples: ""in collection"", ""missing"", ""voucher elsewhere"", ""duplicates elsewhere"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/Disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition, +http://rs.tdwg.org/dwc/curatorial/version/FieldNotes-2007-04-17,FieldNotes,Field Notes,"One of a) a flag indicating the existence of, b) a reference to (such as a URL or literature citation), or c) the actual free text content of notes taken in the field about the specimen or observation.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNotes-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/FieldNotes,DataSets/DataSet/Units/Unit/FieldNotes, +http://rs.tdwg.org/dwc/curatorial/version/FieldNumber-2007-04-17,FieldNumber,Field Number,An identifying string applied to a set of objects or observations resulting from a single collecting event.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/FieldNumber-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/FieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code, +http://rs.tdwg.org/dwc/curatorial/version/GenBankNumber-2007-04-17,GenBankNumber,Gen Bank Number,GenBank Accession number(s) associated with the biological individual(s) referred to by the cataloged object.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/GenBankNum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/GenBankNumber,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, +http://rs.tdwg.org/dwc/curatorial/version/IdentifiedBy-2007-04-17,IdentifiedBy,Identified By,The name(s) of the person(s) who applied the ScientificName to the object or observation. Example: James L. Patton.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentifiedBy-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/IdentifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, +http://rs.tdwg.org/dwc/curatorial/version/IndividualCount-2007-04-17,IndividualCount,Individual Count,The number of individuals present in the lot or container. Not to be used for observations.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IndividualCount-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/IndividualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/curatorial/version/OtherCatalogNumbers-2007-04-17,OtherCatalogNumbers,Other Catalog Numbers,"A list of previous or alternative fully qualified catalog numbers for the same object or observation, whether in the current collection or in any other.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/OtherCatalogNumbers-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/OtherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, +http://rs.tdwg.org/dwc/curatorial/version/Preparations-2007-04-17,Preparations,Preparations,"A concatenated list of preparations and preservation methods for the object. Examples: ""skin"", ""skull"", ""skeleton"", ""whole animal (ETOH)"", ""tissue (EDTA)"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Preparations-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/Preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, +http://rs.tdwg.org/dwc/curatorial/version/RelatedCatalogedItems-2007-04-17,RelatedCatalogedItems,Related Cataloged Items,"One or more GlobalUniqueIdentifiers (cf. http://wiki.tdwg.org/twiki/bin/view/DarwinCore/GlobalUniqueIdentifier ) of related objects or observations, optionally preceded by the nature of the relationship. Examples: ""(sibling of) URN:catalog:MVZ:Mammal:1234"", ""(endoparasite of) URN:catalog:FMNH:Bird:41321"", ""(sheet 2 of 2) URN:WTU:VascularPlants:353087"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/RelatedCatalogedItems-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/RelatedCatalogedItems,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, +http://rs.tdwg.org/dwc/curatorial/version/TypeStatus-2007-04-17,TypeStatus,Type Status,"A list of one or more nomenclatural types (including type status and typified taxonomic name) represented by the object. Example: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/TypeStatus-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/TypeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, +http://rs.tdwg.org/dwc/curatorial/version/VerbatimCollectingDate-2007-04-17,VerbatimCollectingDate,Verbatim Collecting Date,"The verbatim original representation of the date (and time) information for the collecting event. Example: ""spring 1910"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimCollectingDate-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimCollectingDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText, +http://rs.tdwg.org/dwc/curatorial/version/VerbatimDepth-2007-04-17,VerbatimDepth,Verbatim Depth,"A text representation of the depth in its original format in the source database. Example: ""100 to 200 ft below sea level"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimDepth-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText, +http://rs.tdwg.org/dwc/curatorial/version/VerbatimElevation-2007-04-17,VerbatimElevation,Verbatim Elevation,"A text representation of the altitude in its original format in the source database. Example: ""1000+- meters"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimElevation-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/curatorial/VerbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText, +http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,Attributes,Attributes,"List of additional measurements or characteristics (concatenated and separated) for which there is no existing semantic element, but which the data provider nevertheless feels the desire to share. Examples: ""Tragus length: 14mm; Weight: 120g"", ""Height: 1-1.5 meters tall; flowers yellow; uncommon"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Attributes,DataSets/DataSet/Units/Unit/MeasurementsOrFacts, +http://rs.tdwg.org/dwc/dwcore/version/AuthorYearOfScientificName-2007-04-17,AuthorYearOfScientificName,Author Year of Scientific Name,"The author of the ScientificName and the year of publication, if known. More than one author can be listed in a concatenated string. Should be formatted with parentheses and year according to the conventions of the applicable NomenclaturalCode.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificNameAuthor-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/AuthorYearOfScientificName,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}, +http://rs.tdwg.org/dwc/dwcore/version/BasisOfRecord-2007-04-17,BasisOfRecord,Basis of Record,"A descriptive term indicating whether the record represents an object or observation. Examples: PreservedSpecimen- A physical object representing one or more organisms, part of organism, or artifact of an organism. synonyms: voucher, collection, lot. FossilSpecimen- A physical object representing one or more fossil organisms, part of fossil organism, or artifact of a fossil organism. LivingSpecimen- An organism removed from its natural occurrence and now living in captivity or cultivation. HumanObservation- A report by a known observer that an organism was present at the place and time. MachineObservation- A report by a monitoring device that an organism was present at the place and time. StillImage- An photograph, drawing, painting. MovingImage- A sequence of still images taken at regular intervals and intended to be played back as a moving image; may include sound. SoundRecording- An audio recording. OtherSpecimen- Any type of specimen not covered by any of the categories above.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/BasisOfRecord-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/BasisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, +http://rs.tdwg.org/dwc/dwcore/version/CatalogNumber-2007-04-17,CatalogNumber,Catalog Number,"The alphanumeric value identifying a record within the collection. It is highly recommended that each record be uniquely identified within a collection by this value. It is also recommended that each record be uniquely identified in a global context by the combination of InstitutionCode, CollectionCode and CatalogNumber.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberText-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CatalogNumber,DataSets/DataSet/Units/Unit/UnitID, +http://rs.tdwg.org/dwc/dwcore/version/Class-2007-04-17,Class,Class,The name of the class in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Class-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, +http://rs.tdwg.org/dwc/dwcore/version/CollectingMethod-2007-04-17,CollectingMethod,Collection Method,"The name of, reference to, or brief description of the method or protocol under which the collecting event occurred. Examples: ""UV light trap"", ""mist net"", ""bottom trawl"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CollectingMethod,DataSets/DataSet/Units/Unit/Gathering/Method, +http://rs.tdwg.org/dwc/dwcore/version/CollectionCode-2007-04-17,CollectionCode,Collection Code,The code (or acronym) identifying the collection within the institution in which the organism record is cataloged.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CollectionCode-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/CollectionCode,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/dwcore/version/Collector-2007-04-17,Collector,Collector,"The name(s) (concatenated and separated) of collectors or observers. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching collector names. The primary collector or observer, especially one whose CollectorNumber is also provided, should be listed first. Example: ""Oliver P. Pearson, Anita K. Pearson"" where the value in CollectorNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Collector-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Collector,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, +http://rs.tdwg.org/dwc/dwcore/version/Continent-2007-04-17,Continent,Continent,"The full, unabbreviated name of the continent on which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent, +http://rs.tdwg.org/dwc/dwcore/version/Country-2007-04-17,Country,Country,"The full, unabbreviated name of the country or major political unit in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Country-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Country,DataSets/DataSet/Units/Unit/Gathering/Country/Name, +http://rs.tdwg.org/dwc/dwcore/version/County-2007-04-17,County,County,"The full, unabbreviated name of the county, shire, or municipality (i.e., the next smaller political region than StateProvince) in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/County-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/County,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County, +http://rs.tdwg.org/dwc/dwcore/version/DateLastModified-2007-04-17,DateLastModified,Date Last Modified,"The last date-time of publication when any of the data for the record were modified from the previous publication of that record. When publishing a record for the first time, use the publication date-time. Returns values as ISO 8601 date and time. (cf. http://www.w3.org/TR/xmlschema-2/#isoformats and http://www.iso.org/iso/en/prods-services/popstds/dateandtime.html Example: November 5, 1994, 8:15:30 am, US Eastern Standard Time"" would be ""1994-11-05T13:15:30Z""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DateLastModified-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/DateLastModified,DataSets/DataSet/Units/Unit/DateLastEdited, +http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,DayOfYear,Day of Year,"The ordinal day of the year on which the object or observation was collected (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366). If the EarliestDateCollected and LatestDateCollected do not occur on the same day, do not populate DayOfYear.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/JulianDay-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/DayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin, +http://rs.tdwg.org/dwc/dwcore/version/EarliestDateCollected-2007-04-17,EarliestDateCollected,Earliest Date Collected,"The earliest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/EarliestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/dwcore/version/Family-2007-04-17,Family,Family,The name of the family in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Family-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, +http://rs.tdwg.org/dwc/dwcore/version/Genus-2007-04-17,Genus,Genus,The name of the genus in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Genus-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, +http://rs.tdwg.org/dwc/dwcore/version/GlobalUniqueIdentifier-2007-04-17,GlobalUniqueIdentifier,Global Unique Identifier,"A Uniform Resource Name (URN) as a unique identifier for the specimen or observation record. In the absence of a persistent global unique identifier, construct one in the form: ""[InstitutionCode]:[CollectionCode]: [CatalogNumber]"" Examples: 1) urn:lsid:nhm.ku.edu:Herps:32 2) ""FMNH:Mammal:145732""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/GlobalUniqueIdentifier,DataSets/DataSet/Units/Unit/UnitGUID, +http://rs.tdwg.org/dwc/dwcore/version/HigherGeography-2007-04-17,HigherGeography,Higher Geography,"The names (concatenated and separated) of geographic elements less specific than the information in the Locality element. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching geographic names. This can be useful if it is unclear in which element a name might be found, and in cases where there is no other appropriate geographic element. Example: ""South America, Argentina, Patagonia, Parque Nacional Nahuel Huapi, Neuquén, Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and Los Lagos in County.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherGeography-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/HigherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, +http://rs.tdwg.org/dwc/dwcore/version/HigherTaxon-2007-04-17,HigherTaxon,Higher Taxon,"The names of taxonomic ranks less specific than SpecificEpithet concatenated and separated. ""LIKE"" or ""contains"" substring query operations are meant to be used with this element to find matching higher taxon names. This element may contain the list of scientific names of all of the supra-specific taxa in the classification used to identify (determine) the specimen or observation. Example: ""Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HigherTaxon-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/HigherTaxon,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, +http://rs.tdwg.org/dwc/dwcore/version/IdentificationQualifier-2007-04-17,IdentificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to qualify the identification of the organism when doubts have arisen as to its taxonomic identity (determination). Examples: 1) For the determination ""Quercus aff. agrifolia var. oxyadenia"", IdentificationQualifier would be ""aff. agrifolia var. oxyadenia"" with accompanying values ""Quercus"" in Genus, ""agrifolia"" in SpecificEpithet, ""oxyadenia"" in InfraspecificEpithet, and ""var."" in InfraspecificRank. 2) For the determination ""Quercus agrifolia cf. var. oxyadenia"", IdentificationQualifier would be ""cf. var. oxyadenia "" with accompanying values ""Quercus"" in Genus, ""agrifolia"" in SpecificEpithet, ""oxyadenia"" in InfraspecificEpithet, and ""var."" in InfraspecificRank.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IdentificationModifier-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/IdentificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier, +http://rs.tdwg.org/dwc/dwcore/version/ImageURL-2007-04-17,ImageURL,Image URL,A Universal Resource Locator reference to digital images associated with the specimen or observation.,,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ImageURL,DataSets/DataSet/Units/Unit/MultimediaObjects, +http://rs.tdwg.org/dwc/dwcore/version/InformationWithheld-2007-04-17,InformationWithheld,Information Withheld,"Brief descriptions of additional information that may exist, but that has not been made public. Information about obtaining the withheld information should be sought from the administrative contact identified in the provider resource metadata (curator, collection manager). Examples: ""specific locality information given only to nearest county"", ""ask about tissue samples"", ""georeferences given only to nearest degree"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InformationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld, +http://rs.tdwg.org/dwc/dwcore/version/InfraspecificEpithet-2007-04-17,InfraspecificEpithet,Infraspecific Epithet,The infraspecific epithet of the scientific name applied to the organism.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Subspecies-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InfraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, +http://rs.tdwg.org/dwc/dwcore/version/InfraspecificRank-2007-04-17,InfraspecificRank,Infraspecific Rank,"The infraspecific rank (subspecies, variety, forma) of the InfraspecificEpithet. Examples: ""subsp."", ""var."", ""forma"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InfraspecificRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, +http://rs.tdwg.org/dwc/dwcore/version/InstitutionCode-2007-04-17,InstitutionCode,Institution Code,"The code (or acronym) identifying the institution administering the collection in which the organism record is cataloged. No global registry exists for institutional codes; use the code that is ""standard"" at your institution or in your discipline.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/InstitutionCode-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/InstitutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, +http://rs.tdwg.org/dwc/dwcore/version/Island-2007-04-17,Island,Island,"The full, unabbreviated name of the island on which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Island-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island, +http://rs.tdwg.org/dwc/dwcore/version/IslandGroup-2007-04-17,IslandGroup,Island Group,"The full, unabbreviated name of the island group in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/IslandGroup-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/IslandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group, +http://rs.tdwg.org/dwc/dwcore/version/Kingdom-2007-04-17,Kingdom,Kingdom,The name of the kingdom in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Kingdom-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, +http://rs.tdwg.org/dwc/dwcore/version/LatestDateCollected-2007-04-17,LatestDateCollected,Latest Date Collected,"The latest date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17|http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/LatestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, +http://rs.tdwg.org/dwc/dwcore/version/LifeStage-2007-04-17,LifeStage,Life Stage,"The age class or life stage of the biological individual represented by the catalogued object or observation. Examples: ""adult"", ""mature"", ""juvenile"", ""eft"", ""nymph"", ""seedling"", ""seed"", ""egg""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/AgeClass-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/LifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage", +http://rs.tdwg.org/dwc/dwcore/version/Locality-2007-04-17,Locality,Locality,"The specific natural language description of the place where the organism was collected or observed. This element need not contain less specific geographic information provided in other geographic elements (HigherGeography, Continent, Country, StateProvince, County, WaterBody, Island, IslandGroup). Though coordinate information can be contained in this concept, these data will be usable analytically only when shared through the concepts of the Geospatial Extension.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Locality-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Locality,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, +http://rs.tdwg.org/dwc/dwcore/version/MaximumDepthInMeters-2007-04-17,MaximumDepthInMeters,Maximum Depth In Meters,The maximum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 10 (for a depth of up to 10m). 100 (for a depth between 50m and 100m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumDepthInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MaximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/dwcore/version/MaximumElevationInMeters-2007-04-17,MaximumElevationInMeters,Maximum Elevation In Meters,The maximum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: Examples: 125 (for an elevation of 100 +- 25 meters). 200 (for an elevation between 100m and 200m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MaximumElevationInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MaximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/dwcore/version/MinimumDepthInMeters-2007-04-17,MinimumDepthInMeters,Minimum Depth In Meters,The minimum or actual depth at which the collection or observation was made. Use positive values for locations below the surface. Examples: 0 (for a depth of up to 10m). 50 (for a depth between 50m and 100m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumDepthInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MinimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/dwcore/version/MinimumElevationInMeters-2007-04-17,MinimumElevationInMeters,Minimum Elevation In Meters,The minimum or actual elevation at which the collection or observation was made. Use negative values for locations below sea level. Examples: 75 (for an elevation of 100 +- 25 meters). 100 (for an elevation between 100m and 200m).,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MinimumElevationInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/MinimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/dwcore/version/NomenclaturalCode-2007-04-17,NomenclaturalCode,Nomenclatural Code,"The nomenclatural code under which the ScientificName is constructed. Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/NomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, +http://rs.tdwg.org/dwc/dwcore/version/Order-2007-04-17,Order,Order,The name of the order in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Order-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, +http://rs.tdwg.org/dwc/dwcore/version/Phylum-2007-04-17,Phylum,Phylum,The name of the phylum (or division) in which the organism is classified.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Phylum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, +http://rs.tdwg.org/dwc/dwcore/version/RelatedInformation-2007-04-17,RelatedInformation,Related Information,"Free text references to information not delivered via the conceptual schema, including URLs to specimen details, publications, bibliographic references, etc.",,,,2007-04-17,deprecated,http://www.iobis.org/obis/version/RecordURL-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/RelatedInformation,DataSets/DataSet/Units/Unit/RecordURI, +http://rs.tdwg.org/dwc/dwcore/version/Remarks-2007-04-17,Remarks,Remarks,Free text comments accompanying the object or observation record.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Remarks-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Remarks,DataSets/DataSet/Units/Unit/Notes, +http://rs.tdwg.org/dwc/dwcore/version/ScientificName-2007-04-17,ScientificName,Scientific Name,"The full name of the lowest level taxon to which the organism has been identified in the most recent accepted determination, specified as precisely as possible, including name-author, year or authorship, sensu or sec. (according to or following) author, and indication of uncertainty. Conceptually equivalent to a full taxonomic identification as given by the identifier (verbatim). Does not include the identifier name or date of identification. Examples: ""Coleoptera"" (an Order), ""Vespertilionidae"" (a Family), ""Manis"" (a Genus), ""Ctenomys sociabilis"" (Genus + SpecificEpithet), ""Ambystoma tigrinum diaboli"" (Genus + SpecificEpithet + SubspecificEpithet), ""Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell"" (Genus + SpecificEpithet + InfraspecificRank + InfraspecificEpithet + AuthorYearOfScientificName).",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ScientificName-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ScientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, +http://rs.tdwg.org/dwc/dwcore/version/Sex-2007-04-17,Sex,Sex,"The sex of the biological individual represented by the cataloged object or observation. Examples: ""male"", ""female"", ""hermaphrodite"", ""gynandromorph"", ""monoecious"", ""dioecious"", ""not recorded"", ""indeterminate"", ""transitional"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Sex-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/Sex,DataSets/DataSet/Units/Unit/Sex, +http://rs.tdwg.org/dwc/dwcore/version/SpecificEpithet-2007-04-17,SpecificEpithet,Specific Epithet,The specific epithet of the scientific name applied to the organism.,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/Species-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/SpecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}, +http://rs.tdwg.org/dwc/dwcore/version/StateProvince-2007-04-17,StateProvince,State Province,"The full, unabbreviated name of the state, province, or region (i.e., the next smaller political region than Country) in which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/StateProvince-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/StateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.), +http://rs.tdwg.org/dwc/dwcore/version/ValidDistributionFlag-2007-04-17,ValidDistributionFlag,Valid Distribution Flag,"A flag (""true"" or ""false"") that indicates whether the locality information represents a valid distribution occurrence for a specimen. Specimens taken from captivity and showing the captive location should use the value ""false"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/ValidDistributionFlag,DataSets/DataSet/Units/Unit/Gathering/ValidDistributionFlag, +http://rs.tdwg.org/dwc/dwcore/version/WaterBody-2007-04-17,WaterBody,Water Body,"The full, unabbreviated name of the body of water in or over which the organism was collected or observed.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/ContinentOcean-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/dwcore/WaterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body, +http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2008-11-19,FossilSpecimen,Fossil Specimen,A resource describing a fossilized specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/FossilSpecimen,RecordBasisEnum/FossileSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2011-10-16,FossilSpecimen,Fossil Specimen,A resource describing a fossilized specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/FossilSpecimen,RecordBasisEnum/FossileSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2008-11-19,HumanObservation,Human Observation,A resource describing an observation made by one or more people.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/HumanObservation,RecordBasisEnum/HumanObservation, +http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2011-10-16,HumanObservation,Human Observation,A resource describing an observation made by one or more people.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/HumanObservation,RecordBasisEnum/HumanObservation, +http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2008-11-19,LivingSpecimen,Living Specimen,A resource describing a living specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/LivingSpecimen,RecordBasisEnum/LivingSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2011-10-16,LivingSpecimen,Living Specimen,A resource describing a living specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/LivingSpecimen,RecordBasisEnum/LivingSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/Location-2009-04-24,Location,Location,A resource describing an instance of the Location class.,,,,2009-04-24,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Location,not in ABCD, +http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2008-11-19,MachineObservation,Machine Observation,A resource describing an observation made by a machine.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MachineObservation,RecordBasisEnum/MachineObservation, +http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2011-10-16,MachineObservation,Machine Observation,A resource describing an observation made by a machine.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MachineObservation,RecordBasisEnum/MachineObservation, +http://rs.tdwg.org/dwc/dwctype/version/MaterialSample-2013-06-24,MaterialSample,Material Sample,"A resource describing the physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,,,2013-06-24,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/MaterialSample,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/dwctype/version/NomenclaturalChecklist-2009-01-23,NomenclaturalChecklist,Nomenclatural Checklist,A resource describing a nomenclatural checklist.,,,,2009-01-23,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/NomenclaturalChecklist,not in ABCD, +http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2009-04-24,Occurrence,Occurrence,A resource describing an instance of the Occurrence class.,,,,2009-04-24,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Occurrence,not in ABCD, +http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2011-10-16,Occurrence,Occurrence,A resource describing an instance of the Occurrence class.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/Occurrence-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Occurrence,not in ABCD, +http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2008-11-19,PreservedSpecimen,Preserved Specimen,A resource describing a preserved specimen.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2011-10-16,PreservedSpecimen,Preserved Specimen,A resource describing a preserved specimen.,,,,2011-10-16,deprecated,http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, +http://rs.tdwg.org/dwc/dwctype/version/Taxon-2009-01-23,Taxon,Taxon,A resource describing an instance of the Taxon class.,,,,2009-01-23,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/dwctype/Taxon,not in ABCD, +http://rs.tdwg.org/dwc/geospatial/version/CoordinateUncertaintyInMeters-2007-04-17,CoordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The upper limit of the distance (in meters) from the given DecimalLatitude and DecimalLongitude describing a circle within which the whole of the described locality lies. Leave the value empty if the uncertainty is unknown, cannot be estimated, or is not applicable (because there are no coordinates). Describes the point-radius representation of the location, along with DecimalLatitude, DecimalLongitude, and GeodeticDatum. Zero is not a valid value for this element.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinateUncertaintyInMeters-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/CoordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters, +http://rs.tdwg.org/dwc/geospatial/version/DecimalLatitude-2007-04-17,DecimalLatitude,Decimal Latitude,"The latitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are North of the Equator, negative values are South of the Equator. Describes the point-radius representation of the location, along with DecimalLongitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -41.0983423",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLatitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/DecimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal, +http://rs.tdwg.org/dwc/geospatial/version/DecimalLongitude-2007-04-17,DecimalLongitude,Decimal Longitude,"The longitude of the geographic center of a location where an event occurred (organism collected, observation made), expressed in decimal degrees. Positive values are East of the Greenwich Meridian, negative values are West of the Greenwich Meridian. Describes the point-radius representation of the location, along with DecimalLatitude, GeodeticDatum, and CoordinateUncertaintyInMeters. Example: -71.0943235",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DecimalLongitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/DecimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal, +http://rs.tdwg.org/dwc/geospatial/version/FootprintSpatialFit-2007-04-17,FootprintSpatialFit,Footprint Spatial Fit,"A measure of how well the geometry expressed in the footprint match the original spatial representation, as a ratio of the area of the footprint given to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The FootprintSpatialFit is undefined if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the FootprintSpatialFit is 1. Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/FootprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b), +http://rs.tdwg.org/dwc/geospatial/version/FootprintWKT-2007-04-17,FootprintWKT,Footprint WKT,"A Well-Known Text (WKT; see http://en.wikipedia.org/wiki/Well-known_text) representation of the the shape (footprint, geometry) that defines the location of the occurrence. The same place may have both a point-radius representation (see DecimalLatitude) and a footprint representation, and they may differ from each other for the same occurrence. Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/FootprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b), +http://rs.tdwg.org/dwc/geospatial/version/GeodeticDatum-2007-04-17,GeodeticDatum,Geodetic Datum,"The geodetic datum to which the latitude and longitude refer. If not known, use ""not recorded"". This concept should be vocabulary-controlled. Example: ""WGS84""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/HorizontalDatum-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum, +http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceProtocol-2007-04-17,GeoreferenceProtocol,Georeference Protocol,"A reference to the methods used for determining the coordinates and uncertainties. Example: ""http://manisnet.org/GeorefGuide.html"".",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/GeorefMethod-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod, +http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceRemarks-2007-04-17,GeoreferenceRemarks,Georeference Remarks,"Comments about the spatial description determination, explaining assumptions made in addition or opposition to the those formalized in the method referred to in GeoreferenceProtocol.",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/LatLongComments-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks, +http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceSources-2007-04-17,GeoreferenceSources,Georeference Sources,"A list of maps, gazetteers or other resources used to georeference the locality. The content of this concept is meant to be specific enough to allow anyone in the future to use the same resource to georeference the same locality. Examples: ""USGS 1:24000 Florence Montana Quad"", ""Terrametrics 2008 on Google Earth""",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, +http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceVerificationStatus-2007-04-17,GeoreferenceVerificationStatus,Georeference Verification Status,"A categorical description of the extent to which the georeference has been verified to represent the location where the specimen or observation was collected. This element should be vocabulary-controlled. Examples: ""requires verification"", ""verified by collector"", ""verified by curator"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/GeoreferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus, +http://rs.tdwg.org/dwc/geospatial/version/PointRadiusSpatialFit-2007-04-17,PointRadiusSpatialFit,Point Radius Spatial Fit,"A measure of how well the circle defined by the coordinates and uncertainty match the original spatial representation, as a ratio of the area of the circle to the area of the original spatial representation. 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 georeference does not completely contain the original representation. The PointRadiusSpatialFit is undefined if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the PointRadiusSpatialFit is 1. Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing (Chapman and Wieczorek, eds. 2006).",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/PointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit, +http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinates-2007-04-17,VerbatimCoordinates,Verbatim Coordinates,"A text representation of the coordinate data (Latitude/ Longitude, UTM, TRS, etc.) from its original source if it cannot be separated into its component parts. Example: ""470999 1234300"".",,,,2007-04-17,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}, +http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinateSystem-2007-04-17,VerbatimCoordinateSystem,Verbatim Coordinate System,"The name of the system in which the verbatim geographic coordinates were recorded. Examples: ""decimal degrees"", ""degrees minutes seconds"", ""degrees decimal minutes"", ""UTM""",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/OriginalCoordinateSystem-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem, +http://rs.tdwg.org/dwc/geospatial/version/VerbatimLatitude-2007-04-17,VerbatimLatitude,Verbatim Latitude,"A text representation of the Latitude part of the coordinate data from its original source. Example: 47d09'99""N",,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLatitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude, +http://rs.tdwg.org/dwc/geospatial/version/VerbatimLongitude-2007-04-17,VerbatimLongitude,Verbatim Longitude,A text representation of the Longitude part of the coordinate data from its original source. Example: -122.43254,,,,2007-04-17,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/VerbatimLongitude-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/geospatial/VerbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude, +http://rs.tdwg.org/dwc/iri/version/behavior-2015-03-27,behavior,Behavior (IRI),A description of the behavior shown by the subject at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/behavior,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2020-10-13,degreeOfEstablishment,Degree of Establishment (IRI),"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcdoe/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcdoe/values/d003`, `http://rs.tdwg.org/dwcdoe/values/d005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/degreeOfEstablishment,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2021-03-29,degreeOfEstablishment,Degree of Establishment (IRI),"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcdoe/values/d003`, `http://rs.tdwg.org/dwcdoe/values/d005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,superseded,http://rs.tdwg.org/dwc/iri/version/degreeOfEstablishment-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/degreeOfEstablishment,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/disposition-2015-03-27,disposition,Disposition (IRI),The current state of a specimen with respect to the collection identified in collectionCode or collectionID.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/disposition,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2015-03-27,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2020-10-13,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,"Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcem/values/e001`, `http://rs.tdwg.org/dwcem/values/e005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2021-03-29,establishmentMeans,Establishment Means (IRI),The process by which the biological individual(s) represented in the Occurrence became established at the location.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcem/values/e001`, `http://rs.tdwg.org/dwcem/values/e005`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,superseded,http://rs.tdwg.org/dwc/iri/version/establishmentMeans-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/establishmentMeans,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/fieldNotes-2015-03-27,fieldNotes,Field Notes (IRI),"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 Event.",The subject is a dwc:Event instance and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNotes,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/fieldNumber-2015-03-27,fieldNumber,Field Number (IRI),An identifier given to the event in the field. Often serves as a link between field notes and the Event.,The subject is a (possibly IRI-identified) resource that is the field notes and the object is a dwc:Event instance.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/fieldNumber,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/footprintSRS-2015-03-27,footprintSRS,Footprint SRS (IRI),"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintSRS,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/footprintSRS-2021-07-15,footprintSRS,Footprint SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,superseded,http://rs.tdwg.org/dwc/iri/version/footprintSRS-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintSRS,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/footprintWKT-2015-03-27,footprintWKT,Footprint WKT (IRI),"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/footprintWKT,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/geodeticDatum-2015-03-27,geodeticDatum,Geodetic Datum (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use an IRI or controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.",`https://epsg.io/4326`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/geodeticDatum,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferencedBy-2015-03-27,georeferencedBy,Georeferenced By (IRI),"A person, group, or organization who determined the georeference (spatial representation) for the Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferencedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceSources-2015-03-27,georeferenceSources,Georeference Sources (IRI),"A map, gazetteer, or other resource used to georeference the Location.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceSources,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2015-03-27,georeferenceVerificationStatus,Georeference Verification Status (IRI),A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2021-07-15,georeferenceVerificationStatus,Georeference Verification Status (IRI),A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,superseded,http://rs.tdwg.org/dwc/iri/version/georeferenceVerificationStatus-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/georeferenceVerificationStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/habitat-2015-03-27,habitat,Habitat (IRI),A category or description of the habitat in which the Event occurred.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/habitat,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/identificationQualifier-2015-03-27,identificationQualifier,Identification Qualifier (IRI),A controlled value to express the determiner's doubts about the Identification.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identificationQualifier,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/identifiedBy-2015-03-27,identifiedBy,Identified By (IRI),"A person, group, or organization who assigned the Taxon to the subject.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/identifiedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/lifeStage-2015-03-27,lifeStage,Life Stage (IRI),The age class or life stage of the biological individual(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/lifeStage,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/lifeStage-2021-07-15,lifeStage,Life Stage (IRI),The age class or life stage of the Organism(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,superseded,http://rs.tdwg.org/dwc/iri/version/lifeStage-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/lifeStage,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/locationAccordingTo-2015-03-27,locationAccordingTo,Location According To (IRI),"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/locationAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementDeterminedBy-2015-03-27,measurementDeterminedBy,Measurement Determined By (IRI),"A person, group, or organization who determined the value of the MeasurementOrFact.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementDeterminedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/measurementUnit-2015-03-27,measurementUnit,Measurement Unit (IRI),The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/measurementUnit,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/occurrenceStatus-2015-03-27,occurrenceStatus,Occurrence Status (IRI),A statement about the presence or absence of a Taxon at a Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/occurrenceStatus,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/pathway-2020-10-13,pathway,Pathway (IRI),The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use IRIs from the http://rs.tdwg.org/dwcpw/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcpw/values/p002`, `http://rs.tdwg.org/dwcpw/values/p046`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/pathway,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/pathway-2021-03-29,pathway,Pathway (IRI),The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use IRIs from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084 . Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.","`http://rs.tdwg.org/dwcpw/values/p002`, `http://rs.tdwg.org/dwcpw/values/p046`",http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-03-29,superseded,http://rs.tdwg.org/dwc/iri/version/pathway-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/pathway,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/recordedBy-2015-03-27,recordedBy,Recorded By (IRI),"A person, group, or organization responsible for recording the original Occurrence.",Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordedBy,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/recordNumber-2015-03-27,recordNumber,Record Number (IRI),"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.",The subject is a dwc:Occurrence and the object is a (possibly IRI-identified) resource that is the field notes.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/recordNumber,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/reproductiveCondition-2015-03-27,reproductiveCondition,Reproductive Condition (IRI),The reproductive condition of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/reproductiveCondition,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/sampleSizeUnit-2015-03-27,sampleSizeUnit,Sampling Size Unit (IRI),"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue. Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sampleSizeUnit,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2015-03-27,samplingProtocol,Sampling Protocol (IRI),The method or protocol used during an Event.,Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/samplingProtocol,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2021-07-15,samplingProtocol,Sampling Protocol (IRI),"The methods or protocols used during an Event, denoted by an IRI.","Recommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to repeat the property for each IRI that denotes a different sampling protocol that applies to the Occurrence.",`https://doi.org/10.1111/j.1466-8238.2009.00467.x`,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2021-07-15,superseded,http://rs.tdwg.org/dwc/iri/version/samplingProtocol-2015-03-27,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/samplingProtocol,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/sex-2015-03-27,sex,Sex (IRI),The sex of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/sex,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/verbatimCoordinateSystem-2015-03-27,verbatimCoordinateSystem,Verbatim Coordinate System (IRI),The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary. Terms in the dwciri namespace are intended to be used in RDF with non-literal objects.,,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimCoordinateSystem,not in ABCD, +http://rs.tdwg.org/dwc/iri/version/verbatimSRS-2015-03-27,verbatimSRS,Verbatim SRS (IRI),"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.","Recommended best practice is to use an IRI for the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary IRI for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary IRI for the name or code of the ellipsoid, if known.",,http://rs.tdwg.org/dwc/terms/attributes/UseWithIRI,2015-03-27,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/iri/verbatimSRS,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2009-09-21,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.","Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedScientificName-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2017-10-06,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.",,`Tamias minimus` (valid name for Eutamias minimus).,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2021-07-15,acceptedNameUsage,Accepted Name Usage,"The full name, with authorship and date information if known, of the currently valid (zoological) or accepted (botanical) taxon.","The full scientific name, with authorship and date information if known, of the accepted (botanical) or valid (zoological) name in cases where the provided scientificName is considered by the reference indicated in the accordingTo property, or of the content provider, to be a synonym or misapplied name. When applied to an Organism or Occurrence, this term should be used in cases where a content provider regards the provided scientificName to be inconsistent with the taxonomic perspective of the content provider. For example, there are many discrepancies within specimen collections and observation datasets between the recorded name (e.g., the most recent identification from an expert who examined a specimen, or a field identification for an observed organism), and the name asserted by the content provider to be taxonomically accepted.",`Tamias minimus` (valid name for Eutamias minimus).,http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2009-09-21,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2017-10-06,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2021-07-15,acceptedNameUsageID,Accepted Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) of the currently valid (zoological) or accepted (botanical) taxon.,This term should be used for synonyms or misapplied names to refer to the taxonID of a Taxon record that represents the accepted (botanical) or valid (zoological) name. For Darwin Core Archives the related record should be present locally in the same archive.,"`tsn:41107` (ITIS), `urn:lsid:ipni.org:names:320035-2` (IPNI), `2704179` (GBIF), `6W3C4` (COL)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/acceptedNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/acceptedScientificName-2009-07-06,acceptedScientificName,Accepted Scientific Name,The currently valid (zoological) or accepted (botanical) name for the scientificName.,"Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedScientificName,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedScientificNameID-2009-07-06,acceptedScientificNameID,Accepted Scientific Name ID,A unique identifier for the acceptedScientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedTaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedScientificNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/AcceptedTaxon-2008-11-19,AcceptedTaxon,Accepted Taxon,The currently valid (zoological) or accepted (botanical) name for the ScientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AcceptedTaxon,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/AcceptedTaxonID-2009-01-21,AcceptedTaxonID,Accepted Taxon ID,A global unique identifier for the parent to the AcceptedTaxon.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AcceptedTaxonID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedTaxonID-2009-08-24,acceptedTaxonID,Accepted Taxon ID,An identifier for the name of the currently valid (zoological) or accepted (botanical) taxon. See acceptedTaxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,deprecated,http://rs.tdwg.org/dwc/terms/version/acceptedScientificNameID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedTaxonName-2009-04-24,acceptedTaxonName,Accepted Taxon Name,The currently valid (zoological) or accepted (botanical) name for the scientificName.,"Example: ""Tamias minimus"" valid name for ""Eutamias minimus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/AcceptedTaxon-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonName,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/acceptedTaxonNameID-2009-04-24,acceptedTaxonNameID,Accepted Taxon Name ID,A unique identifier for the acceptedTaxonName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/AcceptedTaxonID-2009-01-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/acceptedTaxonNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/AccessConstraints-2008-11-19,AccessConstraints,Access Constraints,A description of constraints on the use of the data as shared or access to further data that is not shared.,"Example: ""not-for-profit use only"".",,http://rs.tdwg.org/dwc/terms/Sample,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/AccessConstraints,DataSets/DataSet/Units/Unit/IPRStatements, +http://rs.tdwg.org/dwc/terms/version/accordingTo-2009-01-21,accordingTo,According To,Abstract term to attribute information to a source.,,,,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/accordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/accuracy-2009-01-21,accuracy,Accuracy,Abstract term to capture error information about a measurement or fact.,,,,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/accuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/associatedMedia-2009-04-24,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.","Example: ""http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/ImageURL-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects, +http://rs.tdwg.org/dwc/terms/version/associatedMedia-2014-10-23,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG"", ""http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects, +http://rs.tdwg.org/dwc/terms/version/associatedMedia-2017-10-06,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.",,"`http://arctos.database.museum/SpecimenImages/UAMObs/Mamm/2/P7291179.JPG`, `http://204.140.246.24/Fish/Collection%20Pictures/10118-00.jpg | http://204.140.246.24/Fish/Collection%20Pictures/10118-00a.jpg`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects,simple +http://rs.tdwg.org/dwc/terms/version/associatedMedia-2020-08-12,associatedMedia,Associated Media,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of media associated with the Occurrence.",,`https://arctos.database.museum/media/10520962 | https://arctos.database.museum/media/10520964`,http://rs.tdwg.org/dwc/terms/Occurrence,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/associatedMedia-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedMedia,DataSets/DataSet/Units/Unit/MultimediaObjects,simple +http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2009-04-24,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,"Example: ""sibling of FMNH:Mammal:1234; sibling of FMNH:Mammal:1235""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/RelatedCatalogedItems-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, +http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2014-10-23,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,The recommended best practice is to separate the values with a vertical bar (' | ').,,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, +http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2017-10-06,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,,`http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392 | http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,simple +http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2021-07-15,associatedOccurrences,Associated Occurrences,A list (concatenated and separated) of identifiers of other Occurrence records and their associations to this Occurrence.,"This term can be used to provide a list of associations to other Occurrences. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).","`""parasite collected from"":""https://arctos.database.museum/guid/MSB:Mamm:215895?seid=950760""`, `""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3175067"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177393"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177394"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3177392"" | ""encounter previous to"":""http://arctos.database.museum/guid/MSB:Mamm:292063?seid=3609139""`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOccurrences-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOccurrences,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID,simple +http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2014-10-23,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""sibling of MXA-232"", ""mother of MXA-231 | mother of MXA-232""",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2017-10-06,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and their associations to this Organism.,,"`""sibling of"":""DMNS:Mamm http://arctos.database.museum/guid/DMNS:Mamm:14171""`, `""parent of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:196208"" | ""parent of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:196523"" | ""sibling of"":""MSB:Mamm http://arctos.database.museum/guid/MSB:Mamm:142638""`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2021-07-15,associatedOrganisms,Associated Organisms,A list (concatenated and separated) of identifiers of other Organisms and the associations of this Organism to each of them.,"This term can be used to provide a list of associations to other Organisms. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).","`""sibling of"":""http://arctos.database.museum/guid/DMNS:Mamm:14171""`, `""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196208"" | ""parent of"":""http://arctos.database.museum/guid/MSB:Mamm:196523"" | ""sibling of"":""http://arctos.database.museum/guid/MSB:Mamm:142638""`",http://rs.tdwg.org/dwc/terms/Organism,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/associatedOrganisms-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedOrganisms,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/associatedReferences-2009-04-24,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","Examples: ""http://www.sciencemag.org/cgi/content/abstract/322/5899/261"", ""Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences, +http://rs.tdwg.org/dwc/terms/version/associatedReferences-2014-10-23,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://www.sciencemag.org/cgi/content/abstract/322/5899/261"", ""Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767."", ""Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources."".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences, +http://rs.tdwg.org/dwc/terms/version/associatedReferences-2017-10-06,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.",,"`http://www.sciencemag.org/cgi/content/abstract/322/5899/261`, `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`, `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences,simple +http://rs.tdwg.org/dwc/terms/version/associatedReferences-2021-07-15,associatedReferences,Associated References,"A list (concatenated and separated) of identifiers (publication, bibliographic reference, global unique identifier, URI) of literature associated with the Occurrence.","Recommended best practice is to separate the values in a list with space vertical bar space ( | ). Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. Note also that the intended usage of the term dcterms:references in Darwin Core when applied to an Occurrence is to point to the definitive source representation of that Occurrence if one is available. Note also that the intended usage of dcterms:bibliographicCitation in Darwin Core when applied to an Occurrence is to provide the preferred way to cite the Occurrence itself.","`http://www.sciencemag.org/cgi/content/abstract/322/5899/261`, `Christopher J. Conroy, Jennifer L. Neuwald. 2008. Phylogeographic study of the California vole, Microtus californicus Journal of Mammalogy, 89(3):755-767.`, `Steven R. Hoofer and Ronald A. Van Den Bussche. 2001. Phylogenetic Relationships of Plecotine Bats and Allies Based on Mitochondrial Ribosomal Sequences. Journal of Mammalogy 82(1):131-137. | Walker, Faith M., Jeffrey T. Foster, Kevin P. Drees, Carol L. Chambers. 2014. Spotted bat (Euderma maculatum) microsatellite discovery using illumina sequencing. Conservation Genetics Resources.`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/associatedReferences-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedReferences,DataSets/DataSet/Units/Unit/UnitReferences,simple +http://rs.tdwg.org/dwc/terms/version/associatedSequences-2009-04-24,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.","Example: ""GenBank: U34853.1""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/GenBankNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, +http://rs.tdwg.org/dwc/terms/version/associatedSequences-2014-10-23,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""http://www.ncbi.nlm.nih.gov/nuccore/U34853.1"", ""http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedSequences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant, +http://rs.tdwg.org/dwc/terms/version/associatedSequences-2017-10-06,associatedSequences,Associated Sequences,"A list (concatenated and separated) of identifiers (publication, global unique identifier, URI) of genetic sequence information associated with the Occurrence.",,"`http://www.ncbi.nlm.nih.gov/nuccore/U34853.1`, `http://www.ncbi.nlm.nih.gov/nuccore/GU328060 | http://www.ncbi.nlm.nih.gov/nuccore/AF326093`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedSequences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedSequences,DataSets/DataSet/Units/Unit/Sequences/Sequence/ID-in-Database + constant,simple +http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2009-04-24,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,"Example: ""host: Quercus alba""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa, +http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2014-10-23,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,"The recommended best practice is to separate the values with a vertical bar (' | '), and to separate the relationship from the taxon with a colon (':'). Examples: ""host: Quercus alba"", ""parasitoid of:Cyclocephala signaticollis | predator of Apis mellifera"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa, +http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2017-10-06,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and their associations with the Occurrence.,,"`""host"":""Quercus alba""`, `""parasitoid of"":""Cyclocephala signaticollis"" | ""predator of"":""Apis mellifera""`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa,simple +http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2021-07-15,associatedTaxa,Associated Taxa,A list (concatenated and separated) of identifiers or names of taxa and the associations of this Occurrence to each of them.,"This term can be used to provide a list of associations to Taxa other than the one defined in the Occurrence. Note that the ResourceRelationship class is an alternative means of representing associations, and with more detail. This term is not apt for establishing relationships between Taxa, only between specific Occurrences of an Organism with other Taxa. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).","`""host"":""Quercus alba""`, `""host"":""gbif.org/species/2879737""`,`""parasitoid of"":""Cyclocephala signaticollis"" | ""predator of"":""Apis mellifera""`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/associatedTaxa-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/associatedTaxa,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa,simple +http://rs.tdwg.org/dwc/terms/version/basionym-2009-04-24,basionym,Basionym,The basionym (botany) or basonym (bacteriology) of the scientificName.,"Example: ""Pinus abies""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basionym,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/basionymID-2009-04-24,basionymID,Basionym ID,A unique identifier for the basionym (botany) or basonym (bacteriology) of the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basionymID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-04-24,basisOfRecord,Basis of Record,The specific nature of the data record - a subtype of the dcterms:type. Recommended best practice is to use a controlled vocabulary such as the Darwin Core Type Vocabulary (http://rs.tdwg.org/dwc/terms/type-vocabulary/index.htm).,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/BasisOfRecord-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-09-11,basisOfRecord,Basis of Record,The specific nature of the data record - a subtype of the dcterms:type. Recommended best practice is to use a controlled vocabulary.,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-12-07,basisOfRecord,Basis of Record,The specific nature of the data record. Recommended best practice is to use a controlled vocabulary such as the Darwin Core Type Vocabulary (http://rs.tdwg.org/dwc/terms/type-vocabulary/index.htm).,"Examples: ""PreservedSpecimen"", ""FossilSpecimen"", ""LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2009-12-07,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2014-10-23,basisOfRecord,Basis of Record,The specific nature of the data record.,"Recommended best practice is to use a controlled vocabulary such as the list of Darwin Core classes. Examples: ""PreservedSpecimen"", ""FossilSpecimen"", ""LivingSpecimen"", ""HumanObservation"", ""MachineObservation""",,http://rs.tdwg.org/dwc/terms/all,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2009-12-07,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis, +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2017-10-06,basisOfRecord,Basis of Record,The specific nature of the data record.,Recommended best practice is to use the standard label of one of the Darwin Core classes.,"`PreservedSpecimen`, `FossilSpecimen`, `LivingSpecimen`, `MaterialSample`, `Event`, `HumanObservation`, `MachineObservation`, `Taxon`, `Occurrence`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis,simple +http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2021-07-15,basisOfRecord,Basis of Record,The specific nature of the data record.,Recommended best practice is to use the standard label of one of the Darwin Core classes.,"`PreservedSpecimen`, `FossilSpecimen`, `LivingSpecimen`, `MaterialSample`, `Event`, `HumanObservation`, `MachineObservation`, `Taxon`, `Occurrence`, `MaterialCitation`",http://rs.tdwg.org/dwc/terms/,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/basisOfRecord-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/basisOfRecord,DataSets/DataSet/Units/Unit/RecordBasis,simple +http://rs.tdwg.org/dwc/terms/version/bed-2009-04-24,bed,Bed,The full name of the lithostratigraphic bed from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Bed-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/bed,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/behavior-2009-04-24,behavior,Behavior,A description of the behavior shown by the subject at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.,"Examples: ""roosting"", ""foraging"", ""running""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/behavior,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/behavior-2017-10-06,behavior,Behavior,The behavior shown by the subject at the time the Occurrence was recorded.,,"`roosting`, `foraging`, `running`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/behavior-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/behavior,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/binomial-2008-11-19,binomial,Binomial,The combination of genus and first (species) epithet of the scientificName.,"Example: ""Ctenomys sociabilis""",,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/binomial,DataSets/DataSet/Units/Unit/Gathering/Synecology/AssociatedTaxa/TaxonIdentified/ScientificName/FullScientificNameString, +http://rs.tdwg.org/dwc/terms/version/catalogNumber-2009-04-24,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,"Examples: ""2008.1334"", ""145732a"", ""145732""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CatalogNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID, +http://rs.tdwg.org/dwc/terms/version/catalogNumber-2017-10-06,catalogNumber,Catalog Number,An identifier (preferably unique) for the record within the data set or collection.,,"`145732`, `145732a`, `2008.1334`, `R-4313`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/catalogNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/catalogNumber,DataSets/DataSet/Units/Unit/UnitID,simple +http://rs.tdwg.org/dwc/terms/version/CatalogNumberNumeric-2008-11-19,CatalogNumberNumeric,Catalog Number Numeric,"The numeric value of the catalogNumber, used to facilitate numerical sorting and searching by ranges.",,,http://rs.tdwg.org/dwc/terms/Occurrence,2008-11-19,deprecated,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CatalogNumberNumeric-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/CatalogNumberNumeric,DataSets/DataSet/Units/Unit/UnitIDNumeric, +http://rs.tdwg.org/dwc/terms/version/class-2009-04-24,class,Class,The name of the class in which the scientificName is classified.,"Example: ""Mammalia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Class-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, +http://rs.tdwg.org/dwc/terms/version/class-2009-08-24,class,Class,The full scientific name of the class in which the taxon is classified.,"Examples: ""Mammalia"", ""Hepaticopsida""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/class-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis, +http://rs.tdwg.org/dwc/terms/version/class-2017-10-06,class,Class,The full scientific name of the class in which the taxon is classified.,,"`Mammalia`, `Hepaticopsida`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/class-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/class,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = classis,simple +http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-04-24,collectionCode,Collection Code,The name (or acronym) identifying the collection or data set from which the record was derived.,"Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CollectionCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-08-24,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.","Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-09-11,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.","Examples: ""Mammals"", ""Hildebrandt"", ""eBird""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/collectionCode-2017-10-06,collectionCode,Collection Code,"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived.",,"`Mammals`, `Hildebrandt`, `EBIRD`, `VP`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/collectionCode-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionCode,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/collectionID-2009-04-24,collectionID,Collection ID,"An identifier for the collection or dataset from which the record was derived. For physical specimens, the recommended best practice is to use the identifier in a collections registry such as the Biodiversity Collections Index (http://www.biodiversitycollectionsindex.org/).","Example: ""urn:lsid:biocol.org:col:34818""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/collectionID-2009-09-11,collectionID,Collection ID,An identifier for the collection or dataset from which the record was derived.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: ""http://biocol.org/urn:lsid:biocol.org:col:1001"", ""http://grbio.org/cool/p5fp-c036"".",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/collectionID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/collectionID-2017-10-06,collectionID,Collection ID,An identifier for the collection or dataset from which the record was derived.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).","`http://biocol.org/urn:lsid:biocol.org:col:1001`, `http://grbio.org/cool/p5fp-c036`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/collectionID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/collectionID,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/continent-2009-04-24,continent,Continent,The name of the continent in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Africa"", ""Antarctica"", ""Asia"", ""Europe"", ""North America"", ""Oceania"", ""South America""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Continent-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent, +http://rs.tdwg.org/dwc/terms/version/continent-2017-10-06,continent,Continent,The name of the continent in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Africa`, `Antarctica`, `Asia`, `Europe`, `North America`, `Oceania`, `South America`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/continent-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/continent,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Continent,simple +http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2009-04-24,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.,"Examples: ""0.00001"" (normal GPS limit for decimal degrees), ""0.000278"" (nearest second), ""0.01667"" (nearest minute), ""1.0"" (nearest degree)",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/CoordinatePrecision-2003-06-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement, +http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2017-10-06,coordinatePrecision,Coordinate Precision,A decimal representation of the precision of the coordinates given in the decimalLatitude and decimalLongitude.,,`0.00001` (normal GPS limit for decimal degrees). `0.000278` (nearest second). `0.01667` (nearest minute). `1.0` (nearest degree).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/coordinatePrecision-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinatePrecision,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/ISOAccuracy or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLong/AccuracyStatement,simple +http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2009-04-24,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.","Examples: ""30"" (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time), ""71"" (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/CoordinateUncertaintyInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters, +http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2017-10-06,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.",,`30` (reasonable lower limit of a GPS reading under good conditions if the actual precision was not recorded at the time). `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple +http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2021-07-15,coordinateUncertaintyInMeters,Coordinate Uncertainty In Meters,"The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the 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.",,`30` (reasonable lower limit on or after 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). `100` (reasonable lower limit before 2020-05-01 of a GPS reading under good conditions if the actual precision was not recorded at the time). `71` (uncertainty for a UTM coordinate having 100 meter precision and a known spatial reference system).,http://purl.org/dc/terms/Location,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/coordinateUncertaintyInMeters-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/coordinateUncertaintyInMeters,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinateErrorDistanceInMeters,simple +http://rs.tdwg.org/dwc/terms/version/country-2009-04-24,country,Country,The name of the country or major administrative unit in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Denmark"", ""Colombia"", ""España""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Country-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name, +http://rs.tdwg.org/dwc/terms/version/country-2017-10-06,country,Country,The name of the country or major administrative unit in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Denmark`, `Colombia`, `España`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/country-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name,simple +http://rs.tdwg.org/dwc/terms/version/country-2021-07-15,country,Country,The name of the country or major administrative unit in which the Location occurs.,"Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names. Recommended best practice is to leave this field blank if the Location spans multiple entities at this administrative level or if the Location might be in one or another of multiple possible entities at this level. Multiplicity and uncertainty of the geographic entity can be captured either in the term higherGeography or in the term locality, or both.","`Denmark`, `Colombia`, `España`",http://purl.org/dc/terms/Location,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/country-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/country,DataSets/DataSet/Units/Unit/Gathering/Country/Name,simple +http://rs.tdwg.org/dwc/terms/version/countryCode-2009-04-24,countryCode,Country Code,The standard code for the country in which the Location occurs. Recommended best practice is to use ISO 3166-1-alpha-2 country codes.,"Examples: ""AR"" for Argentina, ""SV"" for El Salvador",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/countryCode,DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code, +http://rs.tdwg.org/dwc/terms/version/countryCode-2017-10-06,countryCode,Country Code,The standard code for the country in which the Location occurs.,Recommended best practice is to use an ISO 3166-1-alpha-2 country code.,"`AR`, `SV`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/countryCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/countryCode,DataSets/DataSet/Units/Unit/Gathering/Country/ISO3166Code,simple +http://rs.tdwg.org/dwc/terms/version/county-2009-04-24,county,County,"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.","Examples: ""Missoula"", ""Los Lagos"", ""Mataró""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/County-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/county,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County, +http://rs.tdwg.org/dwc/terms/version/county-2017-10-06,county,County,"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Missoula`, `Los Lagos`, `Mataró`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/county-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/county,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= County,simple +http://rs.tdwg.org/dwc/terms/version/cultivarEpithet-2021-07-15,cultivarEpithet,Cultivar Epithet,"Part of the name of a cultivar, cultivar group or grex that follows the scientific name.","According to the Rules of the Cultivated Plant Code, a cultivar name consists of a botanical name followed by a cultivar epithet. The value given as the cultivarEpithet should exclude any quotes. The term taxonRank should be used to indicate which type of cultivated plant name (e.g. cultivar, cultivar group, grex) is concerned. This epithet, including any enclosing apostrophes or suffix, should be provided in scientificName as well.","`King Edward` (for scientificName ""Solanum tuberosum 'King Edward'"" and taxonRank ""cultivar""); `Mishmiense` (for scientificName ""Rhododendron boothii Mishmiense Group"" and taxonRank ""cultivar group""); `Atlantis` (for scientificName ""Paphiopedilum Atlantis grex"" and taxonRank ""grex"").",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/cultivarEpithet,http://rs.tdwg.org/abcd/terms/cultivarName or http://rs.tdwg.org/abcd/terms/cultivarGroupName or http://rs.tdwg.org/abcd/terms/breed (ABCD 3.0),simple +http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2009-04-24,dataGeneralizations,Data Generalizations,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.,"Example: ""Coordinates generalized from original GPS coordinates to the nearest half degree grid cell""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/Generalizations-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2017-10-06,dataGeneralizations,Data Generalizations,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.,,`Coordinates generalized from original GPS coordinates to the nearest half degree grid cell`.,http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/dataGeneralizations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dataGeneralizations,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/Dataset-2008-11-19,Dataset,Dataset,The category of information pertaining to a logical set of records.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Dataset,DataSets/DataSet, +http://rs.tdwg.org/dwc/terms/version/datasetID-2009-04-24,datasetID,Dataset ID,An identifier for the data set. May be a global unique identifier or an identifier specific to a collection or institution.,,,http://rs.tdwg.org/dwc/terms/Dataset,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID, +http://rs.tdwg.org/dwc/terms/version/datasetID-2009-09-11,datasetID,Dataset ID,An identifier for the set of data. May be a global unique identifier or an identifier specific to a collection or institution.,,,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/datasetID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetID,DataSets/DataSet/DataSetGUID, +http://rs.tdwg.org/dwc/terms/version/datasetName-2009-09-11,datasetName,Dataset Name,The name identifying the data set from which the record was derived.,"Examples: ""Grinnell Resurvey Mammals"", ""Lacey Ctenomys Recaptures""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetName,DataSets/DataSet/Units/Unit/SourceID, +http://rs.tdwg.org/dwc/terms/version/datasetName-2017-10-06,datasetName,Dataset Name,The name identifying the data set from which the record was derived.,,"`Grinnell Resurvey Mammals`, `Lacey Ctenomys Recaptures`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/datasetName-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/datasetName,DataSets/DataSet/Units/Unit/SourceID,simple +http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-04-24,dateIdentified,Date Identified,"The date on which the subject was identified as representing the taxon given in the scientificName. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/DateIdentified-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, +http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-08-24,dateIdentified,Date Identified,"The date on which the subject was identified as representing the Taxon. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Identification,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText, +http://rs.tdwg.org/dwc/terms/version/dateIdentified-2017-10-06,dateIdentified,Date Identified,The date on which the subject was identified as representing the Taxon.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText,simple +http://rs.tdwg.org/dwc/terms/version/dateIdentified-2020-08-12,dateIdentified,Date Identified,The date on which the subject was determined as representing the Taxon.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Identification,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/dateIdentified-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dateIdentified,DataSets/DataSet/Units/Unit/Identifications/Identification/Date/DateText,simple +http://rs.tdwg.org/dwc/terms/version/day-2009-04-24,day,Day,The integer day of the month on which the Event occurred.,"Examples: ""9"", ""28""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/DayCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/day-2017-10-06,day,Day,The integer day of the month on which the Event occurred.,,"`9`, `28`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/day-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/day,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2009-04-24,decimalLatitude,Decimal Latitude,"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.","Example: ""-41.0983423""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/DecimalLatitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal, +http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2017-10-06,decimalLatitude,Decimal Latitude,"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are north of the Equator, negative values are south of it. Legal values lie between -90 and 90, inclusive.",,`-41.0983423`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/decimalLatitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LatitudeDecimal,simple +http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2009-04-24,decimalLongitude,Decimal Longitude,"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.","Example: ""-121.1761111""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/DecimalLongitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal, +http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2017-10-06,decimalLongitude,Decimal Longitude,"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location. Positive values are east of the Greenwich Meridian, negative values are west of it. Legal values lie between -180 and 180, inclusive.",,`-121.1761111`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/decimalLongitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/decimalLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/LongitudeDecimal,simple +http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2020-10-13,degreeOfEstablishment,Degree of Establishment,"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcdoe/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `captive`, `cultivated`, `released`, `failing`, `casual`, `reproducing`, `established`, `colonising`, `invasive`, `widespreadInvasive`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/degreeOfEstablishment,,simple +http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2021-03-29,degreeOfEstablishment,Degree of Establishment,"The degree to which an Organism survives, reproduces, and expands its range at the given place and time.","Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/doe/. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `captive`, `cultivated`, `released`, `failing`, `casual`, `reproducing`, `established`, `colonising`, `invasive`, `widespreadInvasive`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,superseded,http://rs.tdwg.org/dwc/terms/version/degreeOfEstablishment-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/degreeOfEstablishment,,simple +http://rs.tdwg.org/dwc/terms/version/disposition-2009-04-24,disposition,Disposition,The current state of a specimen with respect to the collection identified in collectionCode or collectionID. Recommended best practice is to use a controlled vocabulary.,"Examples: ""in collection"", ""missing"", ""voucher elsewhere"", ""duplicates elsewhere""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/Disposition-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition, +http://rs.tdwg.org/dwc/terms/version/disposition-2017-10-06,disposition,Disposition,The current state of a specimen with respect to the collection identified in collectionCode or collectionID.,Recommended best practice is to use a controlled vocabulary.,"`in collection`, `missing`, `voucher elsewhere`, `duplicates elsewhere`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/disposition-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/disposition,DataSets/DataSet/Units/Unit/SpecimenUnit/Disposition,simple +http://rs.tdwg.org/dwc/terms/version/DwCType-2008-11-19,DwCType,Darwin Core Type,"The set of classes specified by the Darwin Core Type Vocabulary, used to categorize the nature or genre of the resource.",,,,2008-11-19,deprecated,,http://purl.org/dc/dcam/VocabularyEncodingScheme,http://rs.tdwg.org/dwc/terms/DwCType,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2009-04-24,dynamicProperties,Dynamic Properties,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content such as key-value pairs.","Examples: ""tragusLengthInMeters=0.014; weightInGrams=120"", ""heightInMeters=1.5"", ""natureOfID=expert identification; identificationEvidence=cytochrome B sequence"", ""relativeHumidity=28; airTemperatureInC=22; sampleSizeInKilograms=10"", ""aspectHeading=277; slopeInDegrees=6"", ""iucnStatus=vulnerable; taxonDistribution=Neuquen, Argentina""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2014-10-23,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.","The recommended best practice is to use a key:value encoding schema such as JSON. Examples: ""{""heightInMeters"":1.5}"", ""{""tragusLengthInMeters"":0.014, ""weightInGrams"":120}"", ""{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}"", ""{""relativeHumidity"":28, ""airTemperatureInCelcius"":22, ""sampleSizeInKilograms"":10}"", ""{""aspectHeading"":277, ""slopeInDegrees"":6}"", ""{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}"".",,http://rs.tdwg.org/dwc/terms/all,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2017-10-06,dynamicProperties,Dynamic Properties,"A list of additional measurements, facts, characteristics, or assertions about the record. Meant to provide a mechanism for structured content.",Recommended best practice is to use a key:value encoding schema for a data interchange format such as JSON.,"`{""heightInMeters"":1.5}`, `{""tragusLengthInMeters"":0.014, ""weightInGrams"":120}`, `{""natureOfID"":""expert identification"", ""identificationEvidence"":""cytochrome B sequence""}`, `{""relativeHumidity"":28, ""airTemperatureInCelsius"":22, ""sampleSizeInKilograms"":10}`, `{""aspectHeading"":277, ""slopeInDegrees"":6}`, `{""iucnStatus"":""vulnerable"", ""taxonDistribution"":""Neuquén, Argentina""}`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/dynamicProperties-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/dynamicProperties,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2009-04-24,earliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,"Examples: ""Atlantic"", ""Boreal"", ""Skullrockian""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestAgeOrLowestStage-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2017-10-06,earliestAgeOrLowestStage,Earliest Age Or Lowest Stage,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.,,"`Atlantic`, `Boreal`, `Skullrockian`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/earliestAgeOrLowestStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestAgeOrLowestStage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/EarliestDateCollected-2008-11-19,EarliestDateCollected,Earliest Date Collected,"The earliest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://rs.tdwg.org/dwc/dwcore/version/EarliestDateCollected-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EarliestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2009-04-24,earliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.","Examples: ""Phanerozoic"", ""Proterozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEonOrLowestEonothem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2017-10-06,earliestEonOrLowestEonothem,Earliest Eon Or Lowest Eonothem,"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.",,"`Phanerozoic`, `Proterozoic`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/earliestEonOrLowestEonothem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEonOrLowestEonothem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2009-04-24,earliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,"Examples: ""Holocene"", ""Pleistocene"", ""Ibexian Series""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEpochOrLowestSeries-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2017-10-06,earliestEpochOrLowestSeries,Earliest Epoch Or Lowest Series,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.,,"`Holocene`, `Pleistocene`, `Ibexian Series`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/earliestEpochOrLowestSeries-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEpochOrLowestSeries,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2009-04-24,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,"Examples: ""Cenozoic"", ""Mesozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestEraOrLowestErathem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2017-10-06,earliestEraOrLowestErathem,Earliest Era Or Lowest Erathem,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.,,"`Cenozoic`, `Mesozoic`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/earliestEraOrLowestErathem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestEraOrLowestErathem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2009-04-24,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,"Examples: ""Neogene"", ""Tertiary"", ""Quaternary""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/EarliestPeriodOrLowestSystem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2017-10-06,earliestPeriodOrLowestSystem,Earliest Period Or Lowest System,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.,,"`Neogene`, `Tertiary`, `Quaternary`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/earliestPeriodOrLowestSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/earliestPeriodOrLowestSystem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd, +http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,endDayOfYear,End Day Of Year,"The latest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple +http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2020-08-20,endDayOfYear,End Day Of Year,"The latest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `32` (1 February). `366` (31 December). `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/endDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/endDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberEnd,simple +http://rs.tdwg.org/dwc/terms/version/EndTimeOfDay-2008-11-19,EndTimeOfDay,End Time of Day,"The time of day when the event ended, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/EndTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EndTimeOfDay,DataSets/DataSet/Units/Unit/Gathering/DateTime/TimeOfDayEnd, +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2009-04-24,establishmentMeans,Establishment Means,The process by which the biological individual(s) represented in the Occurrence became established at the location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""native"", ""introduced"", ""naturalised"", ""invasive"", ""managed""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans, +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2017-10-06,establishmentMeans,Establishment Means,The process by which the biological individual(s) represented in the Occurrence became established at the location.,Recommended best practice is to use a controlled vocabulary.,"`native`, `introduced`, `naturalised`, `invasive`, `managed`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-13,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, uncertain`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-28,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcem/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, `uncertain`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-28,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple +http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2021-03-29,establishmentMeans,Establishment Means,Statement about whether an organism or organisms have been introduced to a given place and time through the direct or indirect activity of modern humans.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/em/. For details, refer to https://doi.org/10.3897/biss.3.38084","`native`, `nativeReintroduced`, `introduced`, `introducedAssistedColonisation`, `vagrant`, `uncertain`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,superseded,http://rs.tdwg.org/dwc/terms/version/establishmentMeans-2020-10-28,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/establishmentMeans,DataSets/DataSet/Units/Unit/Gathering/EstablishmentMeans,simple +http://rs.tdwg.org/dwc/terms/version/Event-2009-04-29,Event,Event,The category of information pertaining to an event (an action that occurs at a place and during a period of time).,,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingEvent-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering, +http://rs.tdwg.org/dwc/terms/version/Event-2014-10-23,Event,Event,An action that occurs at some location during some time.,Examples: A specimen collection process. A machine observation.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Event-2009-04-29,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Event,DataSets/DataSet/Units/Unit/Gathering, +http://rs.tdwg.org/dwc/terms/version/EventAttribute-2008-11-19,EventAttribute,Event Attribute,Container class for information about attributes related to a given sampling event.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/EventAttribute,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/EventAttributeAccuracy-2009-01-18,EventAttributeAccuracy,Event Attribute Accuracy,The description of the error associated with the EventAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeAccuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedBy-2009-01-23,EventAttributeDeterminedBy,Event Attribute Determined By,The agent responsible for having determined the value of the measurement or characteristic of the sampling event.,"Example: ""Robert Hijmans""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedBy,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedDate-2009-01-23,EventAttributeDeterminedDate,Event Attribute Determined Date,The date on which the the measurement or characteristic of the sampling event was made.,"Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/EventAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeDeterminedDate,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/EventAttributeID-2008-11-19,EventAttributeID,Event Attribute ID,An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/EventAttributeRemarks-2008-11-19,EventAttributeRemarks,Event Attribute Remarks,Comments or notes accompanying the measurement or characteristic of the sampling event.,"Example: ""temperature taken at 15:00""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/eventAttributes-2009-04-24,eventAttributes,Event Attributes,A list (concatenated and separated) of additional measurements or characteristics of the Event.,"Example: ""Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventAttributes,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19,EventAttributeType,Event Attribute Type,The nature of the measurement or characteristic of the sampling event. Recommended best practice is to use a controlled vocabulary.,"Example: ""Temperature""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeType,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/EventAttributeUnit-2008-11-19,EventAttributeUnit,Event Attribute Unit,The units for the value of the measurement or characteristic of the sampling event. Recommended best practice is to use International System of Units (SI) units.,"Example: ""C""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/EventAttributeValue-2008-11-19,EventAttributeValue,Event Attribute,The value of the measurement or characteristic of the sampling event.,"Example: ""22""",,http://rs.tdwg.org/dwc/terms/EventAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/EventAttributeValue,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/eventDate-2009-04-24,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EarliestDateCollected-2008-11-19|http://rs.tdwg.org/dwc/terms/version/LatestDateCollected-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/eventDate-2017-10-06,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.",Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/eventDate-2020-08-12,eventDate,Event Date,"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded. Not suitable for a time in a geological context.",Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/eventDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventDate,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple +http://rs.tdwg.org/dwc/terms/version/eventID-2009-04-24,eventID,Event ID,An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingEventID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventID,DataSets/DataSet/Units/Unit/Gathering/Code, +http://rs.tdwg.org/dwc/terms/version/eventID-2017-10-06,eventID,Event ID,An identifier for the set of information associated with an Event (something that occurs at a place and time). May be a global unique identifier or an identifier specific to the data set.,,`INBO:VIS:Ev:00009375`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventID,DataSets/DataSet/Units/Unit/Gathering/Code,simple +http://rs.tdwg.org/dwc/terms/version/EventMeasurement-2008-11-19,EventMeasurement,Event Measurement,The category of information pertaining to measurements associated with an event.,,,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/EventMeasurement,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementAccuracy-2009-04-24,eventMeasurementAccuracy,Event Measurement Accuracy,The description of the error associated with the EventAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeAccuracy-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementAccuracy,DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedBy-2009-04-24,eventMeasurementDeterminedBy,Event Measurement Determined By,The agent responsible for having determined the value of the measurement or characteristic of the event.,"Example: ""Robert Hijmans""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedBy-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedBy,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedDate-2009-04-24,eventMeasurementDeterminedDate,Event Measurement Determined Date,"The date on which the the measurement or characteristic of the event was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeDeterminedDate-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementDeterminedDate,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementID-2009-04-24,eventMeasurementID,Event Measurement ID,An identifier for the event attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementRemarks-2009-04-24,eventMeasurementRemarks,Event Measurement Remarks,Comments or notes accompanying the measurement or characteristic of the event.,"Example: ""temperature taken at 15:00""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementType-2009-04-24,eventMeasurementType,Event Measurement Type,The nature of the measurement or characteristic of the event. Recommended best practice is to use a controlled vocabulary.,"Example: ""temperature""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementType,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementUnit-2009-04-24,eventMeasurementUnit,Event Measurement Unit,The units for the value of the measurement or characteristic of the event. Recommended best practice is to use International System of Units (SI) units.,"Example: ""C""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeUnit-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/eventMeasurementValue-2009-04-24,eventMeasurementValue,Event Measurement Value,The value of the measurement or characteristic of the event.,"Example: ""22""",,http://rs.tdwg.org/dwc/terms/EventMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeValue-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventMeasurementValue,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/eventRemarks-2009-04-24,eventRemarks,Event Remarks,Comments or notes about the Event.,"Example: ""after the recent rains the river is nearly at flood stage""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventRemarks,DataSets/DataSet/Units/Unit/Gathering/Notes, +http://rs.tdwg.org/dwc/terms/version/eventRemarks-2017-10-06,eventRemarks,Event Remarks,Comments or notes about the Event.,,`After the recent rains the river is nearly at flood stage.`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventRemarks,DataSets/DataSet/Units/Unit/Gathering/Notes,simple +http://rs.tdwg.org/dwc/terms/version/eventTime-2009-04-24,eventTime,Event Time,"The time or interval during which an Event occurred. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""14:07-0600"" is 2:07pm in the time zone six hours earlier than UTC, ""08:40:21Z"" is 8:40:21am UTC, ""13:00:00Z/15:30:00Z"" is the interval between 1pm UTC and 3:30pm UTC.",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EndTimeOfDay-2008-11-19|http://rs.tdwg.org/dwc/terms/version/StartTimeOfDay-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, +http://rs.tdwg.org/dwc/terms/version/eventTime-2017-10-06,eventTime,Event Time,The time or interval during which an Event occurred.,Recommended best practice is to use a time that conforms to ISO 8601:2004(E).,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC). `08:40:21Z` (8:40:21am UTC). `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/eventTime-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple +http://rs.tdwg.org/dwc/terms/version/eventTime-2020-08-12,eventTime,Event Time,The time or interval during which an Event occurred.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`14:07-0600` (2:07pm in the time zone six hours earlier than UTC). `08:40:21Z` (8:40:21am UTC). `13:00:00Z/15:30:00Z` (the interval between 1pm UTC and 3:30pm UTC).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/eventTime-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/eventTime,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin and DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd,simple +http://rs.tdwg.org/dwc/terms/version/family-2009-04-24,family,Family,The name of the family in which the scientificName is classified.,"Example: ""Ctenomyidae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Family-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, +http://rs.tdwg.org/dwc/terms/version/family-2009-08-24,family,Family,The full scientific name of the family in which the taxon is classified.,"Examples: ""Felidae"", ""Monocleaceae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/family-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia, +http://rs.tdwg.org/dwc/terms/version/family-2017-10-06,family,Family,The full scientific name of the family in which the taxon is classified.,,"`Felidae`, `Monocleaceae`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/family-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/family,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = familia,simple +http://rs.tdwg.org/dwc/terms/version/fieldNotes-2009-04-24,fieldNotes,Field Notes,"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 Event.","Example: ""notes available in Grinnell-Miller Library""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNotes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes, +http://rs.tdwg.org/dwc/terms/version/fieldNotes-2017-10-06,fieldNotes,Field Notes,"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 Event.",,`Notes available in the Grinnell-Miller Library.`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/fieldNotes-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNotes,DataSets/DataSet/Units/Unit/FieldNotes,simple +http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,"Example: ""RV Sol 87-03-08""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/FieldNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code, +http://rs.tdwg.org/dwc/terms/version/fieldNumber-2017-10-06,fieldNumber,Field Number,An identifier given to the event in the field. Often serves as a link between field notes and the Event.,,`RV Sol 87-03-08`,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/fieldNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/fieldNumber,DataSets/DataSet/Units/Unit/Gathering/Code,simple +http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b), +http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left blank) if the original representation is a point and the given georeference is not that same point. If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit (ABCD v2.06b),simple +http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2020-08-20,footprintSpatialFit,Footprint Spatial Fit,"The ratio of the area of the footprint (footprintWKT) to the area of the true (original, or most specific) spatial representation of the 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 footprint does not completely contain the original representation. The footprintSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the footprintSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).","`0`, `1`, `1.5708`",http://purl.org/dc/terms/Location,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSpatialFit,DataSets/DataSet/Units/Unit/Gathering/FootprintSpatialFit,simple +http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.","Example: The WKT for the standard WGS84 SRS (EPSG:4326) is ""GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]"" without the enclosing quotes.",,http://purl.org/dc/terms/Location,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"",DATUM[""D_WGS_1984"",SPHEROID[""WGS_1984"",6378137,298.257223563]],PRIMEM[""Greenwich"",0],UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/footprintSRS-2018-09-06,footprintSRS,Footprint SRS,"A Well-Known Text (WKT) representation of the Spatial Reference System (SRS) for the footprintWKT of the Location. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, even if it is the same as for the footprintWKT - use the geodeticDatum instead.",,"`GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326).",http://purl.org/dc/terms/Location,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/footprintSRS-2021-07-15,footprintSRS,Footprint SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geometry given in footprintWKT is based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`. It is also permitted to provide the SRS in Well-Known-Text, especially if no EPSG code provides the necessary values for the attributes of the SRS. Do not use this term to describe the SRS of the decimalLatitude and decimalLongitude, nor of any verbatim coordinates - use the geodeticDatum and verbatimSRS instead.","`epsg:4326`, `GEOGCS[""GCS_WGS_1984"", DATUM[""D_WGS_1984"", SPHEROID[""WGS_1984"",6378137,298.257223563]], PRIMEM[""Greenwich"",0], UNIT[""Degree"",0.0174532925199433]]` (WKT for the standard WGS84 Spatial Reference System EPSG:4326)",http://purl.org/dc/terms/Location,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/footprintSRS-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.","Example: the one-degree bounding box with opposite corners at (longitude=10, latitude=20) and (longitude=11, latitude=21) would be expressed in well-known text as POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/FootprintWKT-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b), +http://rs.tdwg.org/dwc/terms/version/footprintWKT-2017-10-06,footprintWKT,Footprint WKT,"A Well-Known Text (WKT) representation of the shape (footprint, geometry) that defines the Location. A Location may have both a point-radius representation (see decimalLatitude) and a footprint representation, and they may differ from each other.",,"`POLYGON ((10 20, 11 20, 11 21, 10 21, 10 20))` (the one-degree bounding box with opposite corners at longitude=10, latitude=20 and longitude=11, latitude=21)",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/footprintWKT-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/footprintWKT,DataSets/DataSet/Units/Unit/Gathering/FootprintWKT (ABCD v2.06b),simple +http://rs.tdwg.org/dwc/terms/version/formation-2009-04-24,formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,"Examples: ""Notch Peak Fromation"", ""House Limestone"", ""Fillmore Formation""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Formation-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/formation,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/formation-2017-10-06,formation,Formation,The full name of the lithostratigraphic formation from which the cataloged item was collected.,,"`Notch Peak Formation`, `House Limestone`, `Fillmore Formation`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/formation-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/formation,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2014-10-23,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/FossilSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen, +http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2017-10-06,FossilSpecimen,Fossil Specimen,A preserved specimen that is a fossil.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/FossilSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/FossilSpecimen,RecordBasisEnum/FossileSpecimen, +http://rs.tdwg.org/dwc/terms/version/Generalizations-2008-11-19,Generalizations,Generalizations,Actions taken to make the data as shared less specific or complete than in its original form. Suggests that alternative data of highly quality may be available on request.,"Examples: ""Coordinates generalized from original GPS coordinates to the nearest half degree grid cell"", ""locality information given only to nearest county"".",,http://rs.tdwg.org/dwc/terms/all,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/Generalizations,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/genericName-2021-07-15,genericName,Generic Name,The genus part of the scientificName without authorship.,For synonyms the accepted genus and the genus part of the name may be different. The term genericName should be used together with specificEpithet to form a binomial and with infraspecificEpithet to form a trinomial. The term genericName should only be used for combinations. Uninomials of generic rank do not have a genericName.,"`Felis` (for scientificName ""Felis concolor"", with accompanying values of ""Puma concolor"" in acceptedNameUsage and ""Puma"" in genus).",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genericName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/genus-2009-04-24,genus,Genus,The name of the genus in which the scientificName is classified.,"Example: ""Quercus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Genus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, +http://rs.tdwg.org/dwc/terms/version/genus-2009-08-24,genus,Genus,The full scientific name of the genus in which the taxon is classified.,"Examples: ""Puma"", ""Monoclea""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/genus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial}, +http://rs.tdwg.org/dwc/terms/version/genus-2017-10-06,genus,Genus,The full scientific name of the genus in which the taxon is classified.,,"`Puma`, `Monoclea`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/genus-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/genus,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Viral/GenusOrMonomial or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/GenusOrMonomial},simple +http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2009-04-24,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value ""unknown"".","Examples: ""EPSG:4326"", ""WGS84"", ""NAD27"", ""Campo Inchauspe"", ""European 1950"", ""Clarke 1866""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeodeticDatum-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum, +http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2017-10-06,geodeticDatum,Geodetic Datum,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.","`EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866`, `unknown`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/geodeticDatum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geodeticDatum,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/SpatialDatum,simple +http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2009-07-06,GeologicalContext,Geological Context,"The category of information pertaining to a location within a geological context, such as stratigraphy.",,,,2009-07-06,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, +http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2014-10-23,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",Example: A lithostratigraphic layer.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2009-07-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, +http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2017-10-06,GeologicalContext,Geological Context,"Geological information, such as stratigraphy, that qualifies a region or place.",,A lithostratigraphic layer.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/GeologicalContext-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/GeologicalContext,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy, +http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2009-07-06,geologicalContextID,Geological Context ID,"An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.",,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geologicalContextID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2017-10-06,geologicalContextID,Geological Context ID,"An identifier for the set of information associated with a GeologicalContext (the location within a geological context, such as stratigraphy). May be a global unique identifier or an identifier specific to the data set.",,`https://opencontext.org/subjects/e54377f7-4452-4315-b676-40679b10c4d9`,http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/geologicalContextID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/geologicalContextID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2009-04-24,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.","Examples: ""Kristina Yamamoto (MVZ); Janet Fang (MVZ)"", ""Brad Millen (ROM)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Brad Millen (ROM)"", ""Kristina Yamamoto (MVZ) | Janet Fang (MVZ)"".",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2017-10-06,georeferencedBy,Georeferenced By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the georeference (spatial representation) for the Location.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Brad Millen (ROM)`, `Kristina Yamamoto | Janet Fang`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedBy,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,georeferencedDate,Georeferenced Date,"The date on which the Location was georeferenced. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://purl.org/dc/terms/Location,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2020-08-12,georeferencedDate,Georeferenced Date,The date on which the Location was georeferenced.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://purl.org/dc/terms/Location,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/georeferencedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferencedDate,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.","Examples: ""Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility."", ""MaNIS/HerpNet/ORNIS Georeferencing Guidelines"", ""Georeferencing Quick Reference Guide""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceProtocol-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod, +http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Guide to Best Practices for Georeferencing. (Chapman and Wieczorek, eds. 2006). Global Biodiversity Information Facility.`, `MaNIS/HerpNet/ORNIS Georeferencing Guidelines`, `Georeferencing Quick Reference Guide`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2020-08-20,georeferenceProtocol,Georeference Protocol,"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties.",,"`Georeferencing Quick Reference Guide (Zermoglio et al. 2020, https://doi.org/10.35035/e09p-h128)`",http://purl.org/dc/terms/Location,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceProtocol-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceProtocol,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinateMethod,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,georeferenceRemarks,Georeference Remarks,"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 georeferenceProtocol.","Example: ""assumed distance by road (Hwy. 101)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceRemarks-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks, +http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2017-10-06,georeferenceRemarks,Georeference Remarks,"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 georeferenceProtocol.",,`Assumed distance by road (Hwy. 101)`.,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceRemarks,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceRemarks,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","Examples: ""USGS 1:24000 Florence Montana Quad; Terrametrics 2008 on Google Earth""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceSources-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, +http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""GeoLocate"", ""USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth"".",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources, +http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2017-10-06,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`https://www.geonames.org/`, `USGS 1:24000 Florence Montana Quad | Terrametrics 2008 on Google Earth`, `GeoLocate`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2020-10-28,georeferenceSources,Georeference Sources,"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`https://www.geonames.org/`, `USGS 1:24000 Florence Montana Quad 1967 | Terrametrics 2008 on Google Earth`, `GeoLocate`",http://purl.org/dc/terms/Location,2020-10-28,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceSources-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceSources,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceSources,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2009-04-24,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description. Recommended best practice is to use a controlled vocabulary.,"Examples: ""requires verification"", ""verified by collector"", ""verified by curator"".",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/GeoreferenceVerificationStatus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus, +http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2017-10-06,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description.,Recommended best practice is to use a controlled vocabulary.,"`requires verification`, `verified by collector`, `verified by curator`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple +http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2021-07-15,georeferenceVerificationStatus,Georeference Verification Status,A categorical description of the extent to which the georeference has been verified to represent the best possible spatial description for the Location of the Occurrence.,Recommended best practice is to use a controlled vocabulary.,"`unable to georeference`, `requires georeference`, `requires verification`, `verified by data custodian`, `verified by contributor`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/georeferenceVerificationStatus-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/georeferenceVerificationStatus,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/GeoreferenceVerificationStatus,simple +http://rs.tdwg.org/dwc/terms/version/group-2009-04-24,group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Group-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/group,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/group-2017-10-06,group,Group,The full name of the lithostratigraphic group from which the cataloged item was collected.,,"`Bathurst`, `Lower Wealden`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/group-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/group,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/habitat-2009-04-24,habitat,Habitat,A category or description of the habitat in which the Event occurred.,"Examples: ""oak savanna"", ""pre-cordilleran steppe""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/habitat,DataSets/DataSet/Units/Unit/Gathering/Biotope/Text, +http://rs.tdwg.org/dwc/terms/version/habitat-2017-10-06,habitat,Habitat,A category or description of the habitat in which the Event occurred.,,"`oak savanna`, `pre-cordilleran steppe`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/habitat-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/habitat,DataSets/DataSet/Units/Unit/Gathering/Biotope/Text,simple +http://rs.tdwg.org/dwc/terms/version/higherClassification-2009-08-24,higherClassification,Higher Classification,"A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record. Recommended best practice is to order the list starting with the highest rank and separating the names for each rank with a semi-colon ("";"").","Example: ""Animalia;Chordata;Vertebrata;Mammalia;Theria;Eutheria;Rodentia;Hystricognatha;Hystricognathi;Ctenomyidae;Ctenomyini;Ctenomys""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/higherTaxonName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/higherClassification-2014-10-23,higherClassification,Higher Classification,A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.,"The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from the highest taxonomic rank to the lowest. Examples: ""Animalia"", ""Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys"".",,http://rs.tdwg.org/dwc/terms/Taxon,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/higherClassification-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/higherClassification-2017-10-06,higherClassification,Higher Classification,A list (concatenated and separated) of taxa names terminating at the rank immediately superior to the taxon referenced in the taxon record.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from the highest taxonomic rank to the lowest.","`Plantae | Tracheophyta | Magnoliopsida | Ranunculales | Ranunculaceae | Ranunculus`, `Animalia`, `Animalia | Chordata | Vertebrata | Mammalia | Theria | Eutheria | Rodentia | Hystricognatha | Hystricognathi | Ctenomyidae | Ctenomyini | Ctenomys`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/higherClassification-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherClassification,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/higherGeography-2009-04-24,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"Example: ""South America; Argentina; Patagonia; Parque Nacional Nahuel Huapi; Neuquén; Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and Los Lagos in County.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/HigherGeography-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, +http://rs.tdwg.org/dwc/terms/version/higherGeography-2014-10-23,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"The recommended best practice is to separate the values with a vertical bar (' | '), with terms in order from least specific to most specific. Examples: ""North Atlantic Ocean"", ""South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos"" with accompanying values ""South America"" in Continent, ""Argentina"" in Country, ""Neuquén"" in StateProvince, and ""Los Lagos"" in County.",,http://purl.org/dc/terms/Location,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/higherGeography-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName}, +http://rs.tdwg.org/dwc/terms/version/higherGeography-2017-10-06,higherGeography,Higher Geography,A list (concatenated and separated) of geographic names less specific than the information captured in the locality term.,"Recommended best practice is to separate the values in a list with space vertical bar space (` | `), with terms in order from least specific to most specific.","`North Atlantic Ocean`. `South America | Argentina | Patagonia | Parque Nacional Nahuel Huapi | Neuquén | Los Lagos` (with accompanying values `South America` in continent, `Argentina` in country, `Neuquén` in stateProvince, and `Los Lagos` in county.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/higherGeography-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeography,{DataSets/DataSet/Units/Unit/Gathering/LocalityText or DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName},simple +http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2009-04-24,higherGeographyID,Higher Geography ID,An identifier for the geographic region within which the Location occurred. Recommended best practice is to use an persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Example: ""TGN: 1002002"" for Prov. Tierra del Fuego, Argentina",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeographyID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2017-10-06,higherGeographyID,Higher Geography ID,An identifier for the geographic region within which the Location occurred.,Recommended best practice is to use a persistent identifier from a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`http://vocab.getty.edu/tgn/1002002` (Antártida e Islas del Atlántico Sur, Territorio Nacional de la Tierra del Fuego, Argentina).",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/higherGeographyID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherGeographyID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/HigherTaxon-2009-01-21,HigherTaxon,Higher Taxon,A list (concatenated and separated) of the names for the taxonomic ranks less specific than the ScientificName.,"Example: ""Animalia, Chordata, Vertebrata, Mammalia, Theria, Eutheria, Rodentia, Hystricognatha, Hystricognathi, Ctenomyidae, Ctenomyini, Ctenomys"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/HigherTaxon,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, +http://rs.tdwg.org/dwc/terms/version/higherTaxonconceptID-2009-04-24,higherTaxonconceptID,Higher Taxon Concept ID,A unique identifier for the taxon concept less specific than that given in the taxonConceptID.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonconceptID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/HigherTaxonID-2009-01-21,HigherTaxonID,Higher Taxon ID,A global unique identifier for the parent to the taxon.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-01-21,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/HigherTaxonID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/higherTaxonName-2009-04-24,higherTaxonName,Higher Taxon Name,A list (concatenated and separated) of the names for the taxonomic ranks less specific than that given in the scientificName.,"Example: ""Animalia; Chordata; Vertebrata; Mammalia; Theria; Eutheria; Rodentia; Hystricognatha; Hystricognathi; Ctenomyidae; Ctenomyini; Ctenomys""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/HigherTaxon-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, +http://rs.tdwg.org/dwc/terms/version/higherTaxonNameID-2009-04-24,higherTaxonNameID,Higher Taxon Name ID,A unique identifier for the name of the next higher rank than the scientificName in a taxonomic classification. See higherTaxonName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/HigherTaxonID-2009-01-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/higherTaxonNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/highestBiostratigraphicZone-2009-04-24,highestBiostratigraphicZone,Highest Biostratigraphic Zone,The full name of the highest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/HighestBiostratigraphicZone-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/highestBiostratigraphicZone,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/HumanObservation-2014-10-23,HumanObservation,Human Observation,An output of a human observation process.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/HumanObservation-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation, +http://rs.tdwg.org/dwc/terms/version/HumanObservation-2017-10-06,HumanObservation,Human Observation,An output of a human observation process.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/HumanObservation-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/HumanObservation,RecordBasisEnum/HumanObservation, +http://rs.tdwg.org/dwc/terms/version/Identification-2008-11-19,Identification,Identification,The category of information pertaining to taxonomic determinations (the assignment of a scientific name).,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification, +http://rs.tdwg.org/dwc/terms/version/Identification-2014-10-23,Identification,Identification,"A taxonomic determination (e.g., the assignment to a taxon).",Example: A subspecies determination of an organism.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Identification-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification, +http://rs.tdwg.org/dwc/terms/version/Identification-2018-09-06,Identification,Identification,"A taxonomic determination (e.g., the assignment to a taxon).",,A subspecies determination of an organism.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/Identification-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Identification,DataSets/DataSet/Units/Unit/Identifications/Identification,extension +http://rs.tdwg.org/dwc/terms/version/identificationAttributes-2009-04-24,identificationAttributes,Identification Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Identification.","Example: ""natureOfID=expert identification; identificationEvidence=cytochrome B sequence""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationAttributes,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/identificationID-2009-04-24,identificationID,Identification ID,An identifier for the 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.,,,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/identificationID-2017-10-06,identificationID,Identification ID,An identifier for the 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.,,`9992`,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identificationID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2009-04-24,identificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to express the determiner's doubts about the Identification.","Examples: 1) For the determination ""Quercus aff. agrifolia var. oxyadenia"", identificationQualifier would be ""aff. agrifolia var. oxyadenia"" with accompanying values ""Quercus"" in genus, ""agrifolia"" in specificEpithet, ""oxyadenia"" in infraspecificEpithet, and ""var."" in rank. 2) For the determination ""Quercus agrifolia cf. var. oxyadenia"", identificationQualifier would be ""cf. var. oxyadenia "" with accompanying values ""Quercus"" in genus, ""agrifolia"" in specificEpithet, ""oxyadenia"" in infraspecificEpithet, and ""var."" in rank.",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/IdentificationQualifier-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier, +http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2017-10-06,identificationQualifier,Identification Qualifier,"A brief phrase or a standard term (""cf."", ""aff."") to express the determiner's doubts about the Identification.",,"`aff. agrifolia var. oxyadenia` (for `Quercus aff. agrifolia var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank. `cf. var. oxyadenia` for `Quercus agrifolia cf. var. oxyadenia` with accompanying values `Quercus` in genus, `agrifolia` in specificEpithet, `oxyadenia` in infraspecificEpithet, and `var.` in taxonRank.",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identificationQualifier-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationQualifier,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/IdentificationQualifier,simple +http://rs.tdwg.org/dwc/terms/version/identificationReferences-2009-04-24,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.","Example: ""Aves del Noroeste Patagonico. Christie et al. 2004.""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References, +http://rs.tdwg.org/dwc/terms/version/identificationReferences-2014-10-23,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Aves del Noroeste Patagonico. Christie et al. 2004."", ""Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). ''The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata).'' Herpetologica, 53(1), 30-49."".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/identificationReferences-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References, +http://rs.tdwg.org/dwc/terms/version/identificationReferences-2017-10-06,identificationReferences,Identification References,"A list (concatenated and separated) of references (publication, global unique identifier, URI) used in the Identification.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Aves del Noroeste Patagonico. Christie et al. 2004.`, `Stebbins, R. Field Guide to Western Reptiles and Amphibians. 3rd Edition. 2003. | Irschick, D.J. and Shaffer, H.B. (1997). The polytypic species revisited: Morphological differentiation among tiger salamanders (Ambystoma tigrinum) (Amphibia: Caudata). Herpetologica, 53(1), 30-49.`",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identificationReferences-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationReferences,DataSets/DataSet/Units/Unit/Identifications/Identification/References,simple +http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2009-04-24,identificationRemarks,Identification Remarks,Comments or notes about the Identification.,"Example: ""Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationRemarks,DataSets/DataSet/Units/Unit/Identifications/Identification/Notes, +http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2017-10-06,identificationRemarks,Identification Remarks,Comments or notes about the Identification.,,`Distinguished between Anthus correndera and Anthus hellmayri based on the comparative lengths of the uñas.`,http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identificationRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationRemarks,DataSets/DataSet/Units/Unit/Identifications/Identification/Notes,simple +http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2011-10-16,identificationVerificationStatus,Identification Verification Status,A categorical indicator of the extent to which the taxonomic identification has been verified to be correct. Recommended best practice is to use a controlled vocabulary such as that used in HISPID/ABCD.,"Examples: ""0"", ""4""",,http://rs.tdwg.org/dwc/terms/Identification,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationVerificationStatus,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2017-10-06,identificationVerificationStatus,Identification Verification Status,A categorical indicator of the extent to which the taxonomic identification has been verified to be correct.,Recommended best practice is to use a controlled vocabulary such as that used in HISPID and ABCD.,"`0` (""unverified"" in HISPID/ABCD).",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identificationVerificationStatus-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identificationVerificationStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-04-24,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the scientificName.","Example: ""James L. Patton"", ""Theodore Pappenfuss; Robert Macey""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/IdentifiedBy-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, +http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-08-24,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.","Examples: ""James L. Patton"", ""Theodore Pappenfuss; Robert Macey""",,http://rs.tdwg.org/dwc/terms/Identification,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, +http://rs.tdwg.org/dwc/terms/version/identifiedBy-2014-10-23,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""James L. Patton"", ""Theodore Pappenfuss | Robert Macey"".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText, +http://rs.tdwg.org/dwc/terms/version/identifiedBy-2017-10-06,identifiedBy,Identified By,"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`James L. Patton`, `Theodore Pappenfuss | Robert Macey`",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/identifiedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedBy,DataSets/DataSet/Units/Unit/Identifications/Identification/Identifiers/IdentifiersText,simple +http://rs.tdwg.org/dwc/terms/version/identifiedByID-2021-07-15,identifiedByID,Identified By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for assigning the Taxon to the subject.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, the order of the identifiers on the list should not be assumed to convey any semantics. Recommended best practice is to separate the values in a list with space vertical bar space ( | ).","`https://orcid.org/0000-0002-1825-0097` (for an individual), `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people). ",http://rs.tdwg.org/dwc/terms/Identification,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/identifiedByID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/individualCount-2009-04-24,individualCount,Individual Count,The number of individuals represented present at the time of the Occurrence.,"Examples: ""1"", ""25""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/IndividualCount-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/terms/version/individualCount-2017-10-06,individualCount,Individual Count,The number of individuals represented present at the time of the Occurrence.,,"`0`, `1`, `25`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/individualCount-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/individualCount-2021-07-15,individualCount,Individual Count,The number of individuals present at the time of the Occurrence.,,"`0`, `1`, `25`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/individualCount-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualCount,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/individualID-2009-04-24,individualID,Individual ID,An identifier for an individual or named group of individual organisms represented in the Occurrence. Meant to accommodate resampling of the same individual or group for monitoring purposes. May be a global unique identifier or an identifier specific to a data set.,"Examples: ""U.amer. 44"", ""Smedley"", ""Orca J 23""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/individualID,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/NamedIndividual or DataSets/DataSet/Units/Unit/ObservationUnit/ObservationUnitIdentifiers/ObservationUnitIdentifier or DataSets/DataSet/Units/Unit/SpecimenUnit/Accessions/AccessionNumber, +http://rs.tdwg.org/dwc/terms/version/informationWithheld-2009-04-24,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.","Examples: ""location information not given for endangered species"", ""collector identities withheld"", ""ask about tissue samples""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InformationWithheld-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld, +http://rs.tdwg.org/dwc/terms/version/informationWithheld-2017-10-06,informationWithheld,Information Withheld,"Additional information that exists, but that has not been shared in the given record.",,"`location information not given for endangered species`, `collector identities withheld | ask about tissue samples`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/informationWithheld-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/informationWithheld,DataSets/DataSet/Units/Unit/InformationWithheld,simple +http://rs.tdwg.org/dwc/terms/version/infragenericEpithet-2021-07-15,infragenericEpithet,Infrageneric Epithet,The infrageneric part of a binomial name at ranks above species but below genus.,"The term infragenericEpithet should be used in conjunction with genericName, specificEpithet, infraspecificEpithet, taxonRank and scientificNameAuthorship to represent the individual elements of the complete scientificName. It can be used to indicate the subgenus placement of a species, which in zoology is often given in parentheses. Can also be used to share infrageneric names such as botanical sections (e.g., `Vicia sect. Cracca`).","`Abacetillus` (for scientificName ""Abacetus (Abacetillus) ambiguus"", `Cracca` (for scientificName ""Vicia sect. Cracca"")",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infragenericEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Bacterial/Subgenus (for bacterial names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus (for zoological names) or DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet (for botanical names),simple +http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-04-24,infraspecificEpithet,Infraspecific Epithet,The name of the second or subspecies epithet of the scientificName.,"Example: ""oxyadenia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InfraspecificEpithet-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, +http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-08-24,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.","Examples: ""concolor"", ""oxyadenia"", ""sayi""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet}, +http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2017-10-06,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.",,"`concolor`, `oxyadenia`, `sayi`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet},simple +http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2021-07-15,infraspecificEpithet,Infraspecific Epithet,"The name of the lowest or terminal infraspecific epithet of the scientificName, excluding any rank designation.","In botany, where there can be more than one infraspecific rank, name strings may be provided, in literature and in identifications, that have more than two epithets. Only the last of these epithets is the infraspecificEpithet and only the first and the last epithets belong to the scientificName. For example: the infraspecificEpithet in the string ""Indigofera charlieriana subsp. sessilis var. scaberrima"" is `scaberrima` and the scientificName is `Indigophera charlieriana var. scaberrima`.","`concolor` (for scientificName ""Puma concolor concolor""), `oxyadenia` (for scientificName ""Quercus agrifolia var. oxyadenia""), `laxa` (for scientificName ""Cheilanthes hirta f. laxa""), `scaberrima` (for scientificName ""Indigofera charlieriana var. scaberrima"").",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/infraspecificEpithet-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/infraspecificEpithet,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SubspeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/SecondEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SubspeciesEpithet,simple +http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-04-24,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO""",,http://rs.tdwg.org/dwc/terms/all,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InstitutionCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, +http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-08-24,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO"", ""University of California Museum of Paleontology (UCMP)""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, +http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-09-11,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,"Examples: ""MVZ"", ""FMNH"", ""AKN-CLO"", ""University of California Museum of Paleontology (UCMP)""",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID, +http://rs.tdwg.org/dwc/terms/version/institutionCode-2017-10-06,institutionCode,Institution Code,The name (or acronym) in use by the institution having custody of the object(s) or information referred to in the record.,,"`MVZ`, `FMNH`, `CLO`, `UCMP`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/institutionCode-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionCode,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple +http://rs.tdwg.org/dwc/terms/version/institutionID-2009-09-11,institutionID,Institution ID,An identifier for the institution having custody of the object(s) or information referred to in the record.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/). Examples: ""http://biocol.org/urn:lsid:biocol.org:col:34777"", ""http://grbio.org/cool/km06-gtbn"".",,http://rs.tdwg.org/dwc/terms/all,2009-09-11,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionID,DataSets/DataSet/Units/Unit/SourceInstitutionID, +http://rs.tdwg.org/dwc/terms/version/institutionID-2017-10-06,institutionID,Institution ID,An identifier for the institution having custody of the object(s) or information referred to in the record.,"For physical specimens, the recommended best practice is to use an identifier from a collections registry such as the Global Registry of Biodiversity Repositories (http://grbio.org/).","`http://biocol.org/urn:lsid:biocol.org:col:34777`, `http://grbio.org/cool/km06-gtbn`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/institutionID-2009-09-11,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/institutionID,DataSets/DataSet/Units/Unit/SourceInstitutionID,simple +http://rs.tdwg.org/dwc/terms/version/island-2009-04-24,island,Island,The name of the island on or near which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Isla Victoria"", ""Vancouver"", ""Viti Levu"", ""Zanzibar""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Island-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island, +http://rs.tdwg.org/dwc/terms/version/island-2017-10-06,island,Island,The name of the island on or near which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Nosy Be`, `Bikini Atoll`, `Vancouver`, `Viti Levu`, `Zanzibar`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/island-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/island,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island,simple +http://rs.tdwg.org/dwc/terms/version/islandGroup-2009-04-24,islandGroup,Island Group,The name of the island group in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Alexander Archipelago"", ""Seychelles""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/IslandGroup-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/islandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group, +http://rs.tdwg.org/dwc/terms/version/islandGroup-2017-10-06,islandGroup,Island Group,The name of the island group in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Alexander Archipelago`, `Archipiélago Diego Ramírez`, `Seychelles`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/islandGroup-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/islandGroup,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Island group,simple +http://rs.tdwg.org/dwc/terms/version/kingdom-2009-04-24,kingdom,Kingdom,The name of the kingdom in which the scientificName is classified.,"Example: ""Animalia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Kingdom-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, +http://rs.tdwg.org/dwc/terms/version/kingdom-2009-08-24,kingdom,Kingdom,The full scientific name of the kingdom in which the taxon is classified.,"Examples: ""Animalia"", ""Plantae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/kingdom-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum, +http://rs.tdwg.org/dwc/terms/version/kingdom-2017-10-06,kingdom,Kingdom,The full scientific name of the kingdom in which the taxon is classified.,,"`Animalia`, `Archaea`, `Bacteria`, `Chromista`, `Fungi`, `Plantae`, `Protozoa`, `Viruses`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/kingdom-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/kingdom,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = regnum,simple +http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2009-04-24,latestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,"Examples: ""Atlantic"", ""Boreal"", ""Skullrockian""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestAgeOrHighestStage-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2017-10-06,latestAgeOrHighestStage,Latest AgeOr Highest Stage,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.,,"`Atlantic`, `Boreal`, `Skullrockian`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/latestAgeOrHighestStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestAgeOrHighestStage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/LatestDateCollected-2008-11-19,LatestDateCollected,Latest Date Collected,"The latest date-time in a period during which a event occurred. If the event is recorded as occurring at a single date-time, populate both EarliestDateCollected and LatestDateCollected with the same value. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://rs.tdwg.org/dwc/dwcore/version/LatestDateCollected-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/LatestDateCollected,DataSets/DataSet/Units/Unit/Gathering/ISODateTimeEnd, +http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2009-04-24,latestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.","Examples: ""Phanerozoic"", ""Proterozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/LatestEonOrLowestEonothem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2017-10-06,latestEonOrHighestEonothem,Latest Eon Or Highest Eonothem,"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.",,"`Phanerozoic`, `Proterozoic`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/latestEonOrHighestEonothem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEonOrHighestEonothem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2009-04-24,latestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,"Examples: ""Holocene"", ""Pleistocene"", ""Ibexian Series""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEpochOrHighestSeries-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2017-10-06,latestEpochOrHighestSeries,Latest Epoch Or Highest Series,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.,,"`Holocene`, `Pleistocene`, `Ibexian Series`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/latestEpochOrHighestSeries-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEpochOrHighestSeries,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2009-04-24,latestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,"Examples: ""Cenozoic"", ""Mesozoic""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestEraOrHighestErathem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2017-10-06,latestEraOrHighestErathem,Latest Era Or Highest Erathem,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.,,"`Cenozoic`, `Mesozoic`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/latestEraOrHighestErathem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestEraOrHighestErathem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2009-04-24,latestPeriodOrHighestSystem,Latest Period Or Highest System,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.,"Examples: ""Neogene"", ""Tertiary"", ""Quaternary""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LatestPeriodOrHighestSystem-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2017-10-06,latestPeriodOrHighestSystem,Latest Period Or Highest System,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.,,"`Neogene`, `Tertiary`, `Quaternary`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/latestPeriodOrHighestSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/latestPeriodOrHighestSystem,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/lifeStage-2009-04-24,lifeStage,Life Stage,The age class or life stage of the biological individual(s) at the time the Occurrence was recorded. Recommended best practice is to use a controlled vocabulary.,"Examples: ""egg"", ""eft"", ""juvenile"", ""adult"", ""2 adults 4 juveniles""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/LifeStage-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage", +http://rs.tdwg.org/dwc/terms/version/lifeStage-2017-10-06,lifeStage,Life Stage,The age class or life stage of the biological individual(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary.,"`egg`, `eft`, `juvenile`, `adult`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/lifeStage-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,"DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage (Note DwC spec uses ""MycologicalLifeStage"" or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage",simple +http://rs.tdwg.org/dwc/terms/version/lifeStage-2021-07-15,lifeStage,Life Stage,The age class or life stage of the Organism(s) at the time the Occurrence was recorded.,Recommended best practice is to use a controlled vocabulary.,"`zygote`, `larva`, `juvenile`, `adult`, `seedling`, `flowering`, `fruiting`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/lifeStage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lifeStage,DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalSexualStage or DataSets/DataSet/Units/Unit/MycologicalUnit/MycologicalLiveStages/MycologicalLiveStage or DataSets/DataSet/Units/Unit/ZoologicalUnit/PhasesOrStages/PhaseOrStage,simple +http://rs.tdwg.org/dwc/terms/version/lithostratigraphicTerms-2009-04-24,lithostratigraphicTerms,Lithostratigraphic Terms,The combination of all litho-stratigraphic names for the rock from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LithostratigraphicTerms-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lithostratigraphicTerms,DataSets/DataSet/Units/Unit/Gathering/Stratigraphy/LithostratigraphicTerms, +http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2014-10-23,LivingSpecimen,Living Specimen,A specimen that is alive.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/LivingSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen, +http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2017-10-06,LivingSpecimen,Living Specimen,A specimen that is alive.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/LivingSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/LivingSpecimen,RecordBasisEnum/LivingSpecimen, +http://rs.tdwg.org/dwc/terms/version/locality-2009-04-24,locality,Locality,"The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.","Example: ""Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Locality-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, +http://rs.tdwg.org/dwc/terms/version/locality-2017-10-06,locality,Locality,"The specific description of the place. Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.",,"`Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/locality-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/locality-2021-07-15,locality,Locality,The specific description of the place.,"Less specific geographic information can be provided in other geographic terms (higherGeography, continent, country, stateProvince, county, municipality, waterBody, island, islandGroup). This term may contain information modified from the original to correct perceived errors or standardize the description.","`Bariloche, 25 km NNE via Ruta Nacional 40 (=Ruta 237)`, `Queets Rainforest, Olympic National Park`",http://purl.org/dc/terms/Location,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/locality-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2009-08-24,locationAccordingTo,Location According To,"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.","Examples: ""Getty Thesaurus of Geographic Names"", ""GADM""",,http://purl.org/dc/terms/Location,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2017-10-06,locationAccordingTo,Location According To,"Information about the source of this Location information. Could be a publication (gazetteer), institution, or team of individuals.",,"`Getty Thesaurus of Geographic Names`, `GADM`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/locationAccordingTo-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAccordingTo,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/locationAttributes-2009-04-24,locationAttributes,Location Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the location.","Example: ""aspectheading=277; slopeindegrees=6""",,http://purl.org/dc/terms/Location,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationAttributes,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/locationID-2009-04-24,locationID,Location ID,An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.,,,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingLocationID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/locationID-2017-10-06,locationID,Location ID,An identifier for the set of location information (data associated with dcterms:Location). May be a global unique identifier or an identifier specific to the data set.,,`https://opencontext.org/subjects/768A875F-E205-4D0B-DE55-BAB7598D0FD1`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/locationID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/locationRemarks-2009-04-24,locationRemarks,Location Remarks,Comments or notes about the Location.,"Example: ""under water since 2005""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SamplingLocationRemarks-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, +http://rs.tdwg.org/dwc/terms/version/locationRemarks-2017-10-06,locationRemarks,Location Remarks,Comments or notes about the Location.,,`under water since 2005`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/locationRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/locationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail,simple +http://rs.tdwg.org/dwc/terms/version/lowestBiostratigraphicZone-2009-04-24,lowestBiostratigraphicZone,Lowest Biostratigraphic Zone,The full name of the lowest possible geological biostratigraphic zone of the stratigraphic horizon from which the cataloged item was collected.,,,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/LowestBiostratigraphicZone-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/lowestBiostratigraphicZone,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/MachineObservation-2014-10-23,MachineObservation,Machine Observation,An output of a machine observation process.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/MachineObservation-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation, +http://rs.tdwg.org/dwc/terms/version/MachineObservation-2017-10-06,MachineObservation,Machine Observation,An output of a machine observation process.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MachineObservation-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MachineObservation,RecordBasisEnum/MachineObservation, +http://rs.tdwg.org/dwc/terms/version/MaterialSample-2013-03-28,MaterialSample,Material Sample,"The category of information pertaining to the physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,,,2013-03-28,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/MaterialSample-2014-10-23,MaterialSample,Material Sample,"A physical results of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",Examples: A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2013-03-28|http://rs.tdwg.org/dwc/dwctype/version/MaterialSample-2013-06-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/MaterialSample-2017-10-06,MaterialSample,Material Sample,"A physical result of a sampling (or subsampling) event. In biological collections, the material sample is typically collected, and either preserved or destructively processed.",,A whole organism preserved in a collection. A part of an organism isolated for some purpose. A soil sample. A marine microbial sample.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MaterialSample-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MaterialSample,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/materialSampleID-2013-05-25,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.",,,http://rs.tdwg.org/dwc/terms/MaterialSample,2013-05-25,superseded,http://gensc.org/ns/mixs/version/source_mat_id-2011-01-26,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/materialSampleID-2017-10-06,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.",,`06809dc5-f143-459a-be1a-6f03e63fc083`,http://rs.tdwg.org/dwc/terms/MaterialSample,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/materialSampleID-2013-05-25,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/materialSampleID-2020-10-28,materialSampleID,Material Sample ID,"An identifier for the MaterialSample (as opposed to a particular digital record of the material sample). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the materialSampleID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.",`06809dc5-f143-459a-be1a-6f03e63fc083`,http://rs.tdwg.org/dwc/terms/MaterialSample,2020-10-28,superseded,http://rs.tdwg.org/dwc/terms/version/materialSampleID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/materialSampleID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2009-04-24,maximumDepthInMeters,Maximum Depth In Meters,"The greater depth of a range of depth below the local surface, in meters.","Example: ""200""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MaximumDepthInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2017-10-06,maximumDepthInMeters,Maximum Depth In Meters,"The greater depth of a range of depth below the local surface, in meters.",,"`0`, `200`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/maximumDepthInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2009-04-24,maximumDistanceAboveSurfaceInMeters,Maximum Distance Above Surface In Meters,"The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.","Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: ""300m"" MinimumElevationInMeters: ""300"", MaximumElevationInMeters: ""300"", VerbatimDepth: ""20m"", MinimumDepthInMeters: ""20"", MaximumDepthInMeters: ""20"", minimumDistanceAboveSurfaceInMeters: ""0"", maximumDistanceAboveSurfaceInMeters: ""-1.5""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2017-10-06,maximumDistanceAboveSurfaceInMeters,Maximum Distance Above Surface In Meters,"The greater distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface). `4.2` (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/maximumDistanceAboveSurfaceInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2009-04-24,maximumElevationInMeters,Maximum Elevation In Meters,"The upper limit of the range of elevation (altitude, usually above sea level), in meters.","Example: ""200""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MaximumElevationInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2017-10-06,maximumElevationInMeters,Maximum Elevation In Meters,"The upper limit of the range of elevation (altitude, usually above sea level), in meters.",,"`-205`, `1236`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/maximumElevationInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/maximumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue,simple +http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2009-04-24,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,"Examples: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementAccuracy-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementAccuracy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2017-10-06,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,,"`0.01`, `normal distribution with variation of 2 m`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2018-09-06,measurementAccuracy,Measurement Accuracy,The description of the potential error associated with the measurementValue.,,"`0.01`, `normal distribution with variation of 2 m`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementAccuracy-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Aspect/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Accuracy or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy,extension +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2009-04-24,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.","Examples: ""Javier de la Torre"", ""Julie Woodruff; Eileen Lacey""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedBy-2009-04-24|http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2014-10-23,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Rob Guralnick"", ""Julie Woodruff | Eileen Lacey"".",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2017-10-06,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Rob Guralnick`, `Peter Desmet | Stijn Van Hoey`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2018-09-06,measurementDeterminedBy,Measurement Determined By,"A list (concatenated and separated) of names of people, groups, or organizations who determined the value of the MeasurementOrFact.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Rob Guralnick`, `Peter Desmet | Stijn Van Hoey`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedBy-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasuredBy,extension +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2009-04-24,measurementDeterminedDate,Measurement Determined Date,"The date on which the MeasurementOrFact was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedDate-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementDeterminedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2017-10-06,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2018-09-06,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime,extension +http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2020-08-12,measurementDeterminedDate,Measurement Determined Date,The date on which the MeasurementOrFact was made.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/measurementDeterminedDate-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/MeasurementDateTime,extension +http://rs.tdwg.org/dwc/terms/version/measurementID-2009-04-24,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementID-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/measurementID-2017-10-06,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,`9c752d22-b09a-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/measurementID-2018-09-06,measurementID,Measurement ID,"An identifier for the MeasurementOrFact (information pertaining to measurements, facts, characteristics, or assertions). May be a global unique identifier or an identifier specific to the data set.",,`9c752d22-b09a-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/measurementMethod-2009-04-24,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.","Examples: ""minimum convex polygon around burrow entrances"" for a home range area, ""barometric altimeter"" for an elevation",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method, +http://rs.tdwg.org/dwc/terms/version/measurementMethod-2017-10-06,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.",,`minimum convex polygon around burrow entrances` (for a home range area). `barometric altimeter` (for an elevation).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementMethod-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method, +http://rs.tdwg.org/dwc/terms/version/measurementMethod-2018-09-06,measurementMethod,Measurement Method,"A description of or reference to (publication, URI) the method or protocol used to determine the measurement, fact, characteristic, or assertion.",,`minimum convex polygon around burrow entrances` (for a home range area). `barometric altimeter` (for an elevation).,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementMethod-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementMethod,/DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/Method or /DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/Method,extension +http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2009-04-24,MeasurementOrFact,Measurement Or Fact,"The category of information pertaining to measurements, facts, characteristics, or assertions about a resource (instance of data record, such as Occurrence, Taxon, Location, Event).",,,,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/EventMeasurement-2008-11-19|http://rs.tdwg.org/dwc/terms/version/OccurrenceMeasurement-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2014-10-23,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Examples: The weight of an organism in grams. The number of placental scars.",,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2009-04-24,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2017-10-06,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",The weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2018-09-06,MeasurementOrFact,Measurement or Fact,A measurement of or fact about an rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource).,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",The weight of an organism in grams. The number of placental scars. Surface water temperature in Celsius.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/MeasurementOrFact-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,Datasets/Dataset/Units/Unit/MeasurementsOrFacts or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts,extension +http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2009-04-24,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementRemarks-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2017-10-06,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,,`tip of tail missing`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2018-09-06,measurementRemarks,Measurement Remarks,Comments or notes accompanying the MeasurementOrFact.,,`tip of tail missing`,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementRemarks-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementRemarks,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/measurementType-2009-04-24,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion. Recommended best practice is to use a controlled vocabulary.","Examples: ""tail length"", ""temperature"", ""trap line length"", ""survey area"", ""trap type""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementType-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementType-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/measurementType-2017-10-06,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary.,"`tail length`, `temperature`, `trap line length`, `survey area`, `trap type`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementType-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/measurementType-2018-09-06,measurementType,Measurement Type,"The nature of the measurement, fact, characteristic, or assertion.",Recommended best practice is to use a controlled vocabulary.,"`tail length`, `temperature`, `trap line length`, `survey area`, `trap type`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementType-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter,extension +http://rs.tdwg.org/dwc/terms/version/measurementUnit-2009-04-24,measurementUnit,Measurement Unit,The units associated with the measurementValue. Recommended best practice is to use the International System of Units (SI).,"Examples: ""mm"", ""C"", ""km"", ""ha""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementUnit-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementUnit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/measurementUnit-2017-10-06,measurementUnit,Measurement Unit,The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,"`mm`, `C`, `km`, `ha`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementUnit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/measurementUnit-2018-09-06,measurementUnit,Measurement Unit,The units associated with the measurementValue.,Recommended best practice is to use the International System of Units (SI).,"`mm`, `C`, `km`, `ha`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementUnit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement,extension +http://rs.tdwg.org/dwc/terms/version/measurementValue-2009-04-24,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.","Examples: ""45"", ""20"", ""1"", ""14.5"", ""UV-light""",,http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementValue-2009-04-24|http://rs.tdwg.org/dwc/terms/version/eventMeasurementValue-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/measurementValue-2017-10-06,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.",,"`45`, `20`, `1`, `14.5`, `UV-light`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementValue-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/measurementValue-2018-09-06,measurementValue,Measurement Value,"The value of the measurement, fact, characteristic, or assertion.",,"`45`, `20`, `1`, `14.5`, `UV-light`",http://rs.tdwg.org/dwc/terms/MeasurementOrFact,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/measurementValue-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/measurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/SiteMeasurementOrFact/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Biotope/MeasurementsOrFacts/MeasurementOrFactAtomised/UpperValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/UpperValue,extension +http://rs.tdwg.org/dwc/terms/version/member-2009-04-24,member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,"Examples: ""Lava Dam Member"", ""Hellnmaria Member""",,http://rs.tdwg.org/dwc/terms/GeologicalContext,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/extension/paleontology/1.0/version/Member-2005-07-03,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/member,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/member-2017-10-06,member,Member,The full name of the lithostratigraphic member from which the cataloged item was collected.,,"`Lava Dam Member`, `Hellnmaria Member`",http://rs.tdwg.org/dwc/terms/GeologicalContext,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/member-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/member,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2009-04-24,minimumDepthInMeters,Minimum Depth In Meters,"The lesser depth of a range of depth below the local surface, in meters.","Example: ""100""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MinimumDepthInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2017-10-06,minimumDepthInMeters,Minimum Depth In Meters,"The lesser depth of a range of depth below the local surface, in meters.",,"`0`, `100`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/minimumDepthInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDepthInMeters,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2009-04-24,minimumDistanceAboveSurfaceInMeters,Minimum Distance Above Surface In Meters,"The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.","Example: 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation; VerbatimElevation: ""300m"" MinimumElevationInMeters: ""300"", MaximumElevationInMeters: ""300"", VerbatimDepth: ""20m"", MinimumDepthInMeters: ""20"", MaximumDepthInMeters: ""20"", minimumDistanceAboveSurfaceInMeters: ""0"", maximumDistanceAboveSurfaceInMeters: ""-1.5""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2017-10-06,minimumDistanceAboveSurfaceInMeters,Minimum Distance Above Surface In Meters,"The lesser distance in a range of distance from a reference surface in the vertical direction, in meters. Use positive values for locations above the surface, negative values for locations below. If depth measures are given, the reference surface is the location given by the depth, otherwise the reference surface is the location given by the elevation.",,"`-1.5` (below the surface). `4.2` (above the surface). For a 1.5 meter sediment core from the bottom of a lake (at depth 20m) at 300m elevation: verbatimElevation: `300m` minimumElevationInMeters: `300`, maximumElevationInMeters: `300`, verbatimDepth: `20m`, minimumDepthInMeters: `20`, maximumDepthInMeters: `20`, minimumDistanceAboveSurfaceInMeters: `0`, maximumDistanceAboveSurfaceInMeters: `-1.5`.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/minimumDistanceAboveSurfaceInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumDistanceAboveSurfaceInMeters,DataSets/DataSet/Units/Unit/Gathering/Height/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2009-04-24,minimumElevationInMeters,Minimum Elevation In Meters,"The lower limit of the range of elevation (altitude, usually above sea level), in meters.","Example: ""100""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/MinimumElevationInMeters-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue, +http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2017-10-06,minimumElevationInMeters,Minimum Elevation In Meters,"The lower limit of the range of elevation (altitude, usually above sea level), in meters.",,"`-100`, `802`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/minimumElevationInMeters-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/minimumElevationInMeters,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactAtomised/LowerValue,simple +http://rs.tdwg.org/dwc/terms/version/month-2009-04-24,month,Month,The ordinal month in which the Event occurred.,"Examples: ""1"" (=January), ""10"" (=October)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/MonthCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/month-2017-10-06,month,Month,The ordinal month in which the Event occurred.,,`1` (January). `10` (October).,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/month-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/month-2020-08-12,month,Month,The integer month in which the Event occurred.,,`1` (January). `10` (October).,http://rs.tdwg.org/dwc/terms/Event,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/month-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/month,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple +http://rs.tdwg.org/dwc/terms/version/municipality-2009-08-24,municipality,Municipality,"The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.","Examples: ""Holzminden""",,http://purl.org/dc/terms/Location,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/municipality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, +http://rs.tdwg.org/dwc/terms/version/municipality-2017-10-06,municipality,Municipality,"The full, unabbreviated name of the next smaller administrative region than county (city, municipality, etc.) in which the Location occurs. Do not use this term for a nearby named place that does not contain the actual location.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Holzminden`, `Araçatuba`, `Ga-Segonyana`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/municipality-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/municipality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2009-09-21,nameAccordingTo,Name According To,"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.","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""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/taxonAccordingTo-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2017-10-06,nameAccordingTo,Name According To,"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.",,"`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`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2021-07-15,nameAccordingTo,Name According To,"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.","This term provides context to the `scientificName`. Together with the `scientificName`, separated by ‘sensu’ or ‘sec.’, it forms the taxon concept label, which may be seen as having the same relationship to `taxonConceptID` as, for example, `acceptedNameUsage` has to `acceptedNameUsageID`. When not provided, in Taxon Core data sets the `nameAccordingTo` can be taken to be the data set. In this case the data set mostly provides sufficient context to infer the delimitation of the taxon and its relationship with other taxa. In Occurrence Core data sets, when not provided, `nameAccordingTo` can be an underlying taxonomy of the data set, e.g. Plants of the World Online (http://powo.science.kew.org/) for vascular plant records in iNaturalist (in which case it should be provided), or, which is the case for most `PreservedSpecimen` data sets, the `Identification`, in which case there is no further context.","`Franz NM, Cardona-Duque J (2013) Description of two new species and phylogenetic reassessment of Perelleschus Wibmer & O’Brien, 1986 (Coleoptera: Curculionidae), with a complete taxonomic concept history of Perelleschus sec. Franz & Cardona-Duque, 2013. Syst Biodivers. 11: 209–236.` (as the full citation of the Franz & Cardona-Duque (2013) in Perelleschus splendida sec. Franz & Cardona-Duque (2013))",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/nameAccordingTo-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingTo,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2009-09-21,nameAccordingToID,Name According To ID,An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.,"Example: ""doi:10.1016/S0269-915X(97)80026-2""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingToID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2017-10-06,nameAccordingToID,Name According To ID,An identifier for the source in which the specific taxon concept circumscription is defined or implied. See nameAccordingTo.,,`https://doi.org/10.1016/S0269-915X(97)80026-2`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/nameAccordingToID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nameAccordingToID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/namePublicationID-2009-05-18,namePublicationID,Name Publication ID,A resolvable globally unique identifier for the original publication of the scientificName.,"Example: ""http://hdl.handle.net/10199/7""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-05-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublicationID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-04-24,namePublishedIn,Name Published In,A full reference to the original publication of the scientificName.,"Examples: ""Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation, +http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-09-21,namePublishedIn,Name Published In,A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Examples: ""Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation, +http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2017-10-06,namePublishedIn,Name Published In,A reference for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,"`Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`, `Forel, Auguste, Diagnosies provisoires de quelques espèces nouvelles de fourmis de Madagascar, récoltées par M. Grandidier., Annales de la Societe Entomologique de Belgique, Comptes-rendus des Seances 30, 1886`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedIn-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedIn,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2009-09-21,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Example: ""http://hdl.handle.net/10199/7""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/namePublicationID-2009-05-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2017-10-06,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,`http://hdl.handle.net/10199/7`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2020-08-12,namePublishedInID,Name Published In ID,An identifier for the publication in which the scientificName was originally established under the rules of the associated nomenclaturalCode.,,,http://rs.tdwg.org/dwc/terms/Taxon,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedInID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2011-10-16,namePublishedInYear,Name Published In Year,The four-digit year in which the scientificName was published.,"Examples: ""1915"", ""2008""",,http://rs.tdwg.org/dwc/terms/Taxon,2011-10-16,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInYear,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2017-10-06,namePublishedInYear,Name Published In Year,The four-digit year in which the scientificName was published.,,"`1915`, `2008`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/namePublishedInYear-2011-10-16,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/namePublishedInYear,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-04-24,nomenclaturalCode,Nomenclatural Code,The nomenclatural code under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.,"Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/NomenclaturalCode-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, +http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-09-21,nomenclaturalCode,Nomenclatural Code,The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed. Recommended best practice is to use a controlled vocabulary.,"Examples: ""ICBN"", ""ICZN"", ""BC"", ""ICNCP"", ""BioCode"", ""ICZN; ICBN""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code, +http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2017-10-06,nomenclaturalCode,Nomenclatural Code,The nomenclatural code (or codes in the case of an ambiregnal name) under which the scientificName is constructed.,Recommended best practice is to use a controlled vocabulary.,"`ICN`, `ICZN`, `BC`, `ICNCP`, `BioCode`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/nomenclaturalCode-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalCode,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/Code,simple +http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2009-04-24,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,"Examples: ""nom. ambig."", ""nom. illeg."", ""nom. subnud.""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte, +http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2017-10-06,nomenclaturalStatus,Nomenclatural Status,The status related to the original publication of the name and its conformance to the relevant rules of nomenclature. It is based essentially on an algorithm according to the business rules of the code. It requires no taxonomic opinion.,,"`nom. ambig.`, `nom. illeg.`, `nom. subnud.`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/nomenclaturalStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/nomenclaturalStatus,(DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeDesignation/NomenclaturalReference/TitleCitation) pro parte,simple +http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,Occurrence,Occurrence,"The category of information pertaining to evidence of an occurrence in nature, in a collection, or in a dataset (specimen, observation, etc.).",,,,2009-04-29,superseded,http://rs.tdwg.org/dwc/terms/version/Sample-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,Examples: A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2009-04-29,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in a the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension +http://rs.tdwg.org/dwc/terms/version/Occurrence-2020-08-20,Occurrence,Occurrence,An existence of an Organism (sensu http://rs.tdwg.org/dwc/terms/Organism) at a particular place at a particular time.,,A wolf pack on the shore of Kluane Lake in 1988. A virus in a plant leaf in the New York Botanical Garden at 15:29 on 2014-10-23. A fungus in Central Park in the summer of 1929.,,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/Occurrence-2018-09-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Occurrence,DataSets/DataSet/Units/Unit,extension +http://rs.tdwg.org/dwc/terms/version/occurrenceAttributes-2009-04-24,occurrenceAttributes,Occurrence Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the Occurrence.","Examples: ""Tragus length: 14mm; Weight: 120g"", ""Height: 1-1.5 meters tall; flowers yellow; uncommon"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/Attributes-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceAttributes,DataSets/DataSet/Units/Unit/MeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/occurrenceDetails-2009-04-24,occurrenceDetails,Occurrence Details,"A reference (publication, URI) to the most detailed information available about the Occurrence.","Example: ""http://mvzarctos.berkeley.edu/guid/MVZ:Mamm:165861""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,deprecated,http://rs.tdwg.org/dwc/dwcore/version/RelatedInformation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceDetails,DataSets/DataSet/Units/Unit/RecordURI, +http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","For a specimen in the absence of a bona fide global unique identifier, for example, use the form: ""urn:catalog:[institutionCode]:[collectionCode]:[catalogNumber]. Examples: ""urn:lsid:nhm.ku.edu:Herps:32"", ""urn:catalog:FMNH:Mammal:145732""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/GlobalUniqueIdentifier-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID, +http://rs.tdwg.org/dwc/terms/version/occurrenceID-2017-10-06,occurrenceID,Occurrence ID,"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique.","Recommended best practice is to use a persistent, globally unique identifier.","`http://arctos.database.museum/guid/MSB:Mamm:233627`, `000866d2-c177-4648-a200-ead4007051b9`, `urn:catalog:UWBM:Bird:89776`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceID,DataSets/DataSet/Units/Unit/UnitGUID,simple +http://rs.tdwg.org/dwc/terms/version/OccurrenceMeasurement-2008-11-19,OccurrenceMeasurement,Occurrence Measurement,The category of information pertaining to measurements accociated with an occurrence.,,,http://rs.tdwg.org/dwc/terms/Occurrence,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,Datasets/Dataset/Units/Unit/MeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementAccuracy-2009-04-24,occurrenceMeasurementAccuracy,Occurrence Measurement Accuracy,The description of the error associated with the occurrenceAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeAccuracy-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedBy-2009-04-24,occurrenceMeasurementDeterminedBy,Occurrence Measurement Determined By,The agent responsible for having determined the value of the measurement or characteristic of the occurrence.,"Example: ""Javier de la Torre""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedBy-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementDeterminedDate-2009-04-24,occurrenceMeasurementDeterminedDate,Occurrence Measurement Determined Date,"The date on which the the measurement or characteristic of the occurrence was made. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedDate-2009-01-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementID-2009-04-24,occurrenceMeasurementID,Occurrence Measurement ID,An identifier for the occurrence attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementRemarks-2009-04-24,occurrenceMeasurementRemarks,Occurrence Measurement Remarks,Comments or notes accompanying the measurement or characteristic of the occurrence.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementType-2009-04-24,occurrenceMeasurementType,Occurrence Measurement Type,The nature of the measurement or characteristic of the occurrence. Recommended best practice is to use a controlled vocabulary.,"Example: ""tail length""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementUnit-2009-04-24,occurrenceMeasurementUnit,Occurrence Measurement Unit,The units for the value of the measurement or characteristic of the occurrence. Recommended best practice is to use International System of Units (SI) units.,"Example: ""mm""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeUnit-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/occurrenceMeasurementValue-2009-04-24,occurrenceMeasurementValue,Occurrence Measurement Value,The value of the measurement or characteristic of the occurrence.,"Example: ""45""",,http://rs.tdwg.org/dwc/terms/OccurrenceMeasurement,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/SampleAttributeValue-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceMeasurementValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2009-04-24,occurrenceRemarks,Occurrence Remarks,Comments or notes about the Occurrence.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/SampleRemarks-2009-01-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceRemarks,DataSets/DataSet/Units/Unit/Notes, +http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2017-10-06,occurrenceRemarks,Occurrence Remarks,Comments or notes about the Occurrence.,,`found dead on road`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceRemarks,DataSets/DataSet/Units/Unit/Notes,simple +http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2009-09-17,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""present"", ""absent""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-09-17,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2017-10-06,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location.,Recommended best practice is to use a controlled vocabulary.,"`present`, `absent`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2009-09-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2021-07-15,occurrenceStatus,Occurrence Status,A statement about the presence or absence of a Taxon at a Location.,"For Occurrences, the default vocabulary is recommended to consist of ""present"" and ""absent"", but can be extended by implementers with good justification.","`present`, `absent`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/occurrenceStatus-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/occurrenceStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/order-2009-04-24,order,Order,The name of the order in which the scientificName is classified.,"Example: ""Rodentia""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Order-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, +http://rs.tdwg.org/dwc/terms/version/order-2009-08-24,order,Order,The full scientific name of the order in which the taxon is classified.,"Examples: ""Carnivora"", ""Monocleales""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/order-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo, +http://rs.tdwg.org/dwc/terms/version/order-2017-10-06,order,Order,The full scientific name of the order in which the taxon is classified.,,"`Carnivora`, `Monocleales`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/order-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/order,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = ordo,simple +http://rs.tdwg.org/dwc/terms/version/Organism-2014-10-23,Organism,Organism,A particular organism or defined group of organisms considered to be taxonomically homogeneous.,"Instances of the Organism class are intended to facilitate linking of one or more Identification instances to one or more Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.",,,2014-10-23,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Organism,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/Organism-2018-09-06,Organism,Organism,A particular organism or defined group of organisms considered to be taxonomically homogeneous.,"Instances of the dwc:Organism class are intended to facilitate linking one or more dwc:Identification instances to one or more dwc:Occurrence instances. Therefore, things that are typically assigned scientific names (such as viruses, hybrids, and lichens) and aggregates whose occurrences are typically recorded (such as packs, clones, and colonies) are included in the scope of this class.",A specific bird. A specific wolf pack. A specific instance of a bacterial culture.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/Organism-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Organism,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/organismID-2014-10-23,organismID,Organism ID,An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/individualID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismID-2017-10-06,organismID,Organism ID,An identifier for the Organism instance (as opposed to a particular digital record of the Organism). May be a globally unique identifier or an identifier specific to the data set.,,`http://arctos.database.museum/guid/WNMU:Mamm:1249`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismID-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismName-2014-10-23,organismName,Organism Name,A textual name or label assigned to an Organism instance.,"Examples: ""Huberta"", ""Boab Prison Tree"", ""J pod"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismName,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismName-2017-10-06,organismName,Organism Name,A textual name or label assigned to an Organism instance.,,"`Huberta`, `Boab Prison Tree`, `J pod`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismName-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismQuantity-2014-12-23,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,"An organismQuantity must have a corresponding organismQuantityType, e.g., ""27"" for organismQuantity with ""individuals"" for organismQuantityType; ""12.5"" for organismQuantity with ""%biomass"" for organismQuantityType; ""r"" for organismQuantity with ""BraunBlanquetScale"" for organismQuantityType.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismQuantity-2017-10-06,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,A dwc:organismQuantity must have a corresponding dwc:organismQuantityType.,`27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `%biomass` (organismQuantityType). `r` (organismQuantity) with `BraunBlanquetScale` (organismQuantityType).,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismQuantity-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismQuantity-2021-07-15,organismQuantity,Organism Quantity,A number or enumeration value for the quantity of organisms.,An organismQuantity must have a corresponding organismQuantityType.,`27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `% biomass` (organismQuantityType). `r` (organismQuantity) with `Braun Blanquet Scale` (organismQuantityType). `many` (organismQuantity) with `individuals` (organismQuantityType).,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/organismQuantity-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantity,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2014-12-23,organismQuantityType,Organism Quantity Type,The type of quantification system used for the quantity of organisms.,"An organismQuantityType must have a corresponding organismQuantity, e.g., ""27"" for organismQuantity with ""individuals"" for organismQuantityType; ""12.5"" for organismQuantity with ""%biomass"" for organismQuantityType; ""r"" for organismQuantity with ""BraunBlanquetScale"" for organismQuantityType.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantityType,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2017-10-06,organismQuantityType,Organism Quantity Type,The type of quantification system used for the quantity of organisms.,A dwc:organismQuantityType must have a corresponding dwc:organismQuantity.,`27` (organismQuantity) with `individuals` (organismQuantityType). `12.5` (organismQuantity) with `%biomass` (organismQuantityType). `r` (organismQuantity) with `BraunBlanquetScale` (organismQuantityType).,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismQuantityType-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismQuantityType,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismRemarks-2014-10-23,organismRemarks,Organism Remarks,Comments or notes about the Organism instance.,"Example: ""One of a litter of six.""",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismRemarks-2017-10-06,organismRemarks,Organism Remarks,Comments or notes about the Organism instance.,,`One of a litter of six`,http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismRemarks-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismRemarks,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/organismScope-2014-10-23,organismScope,Organism Scope,A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation. Recommended best practice is to use a controlled vocabulary.,"This term is not intended to be used to specify a type of taxon. To describe the kind of Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead. Examples: ""multicellular organism"", ""virus"", ""clone"" ""pack"", ""colony"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismScope,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/organismScope-2017-10-06,organismScope,Organism Scope,A description of the kind of Organism instance. Can be used to indicate whether the Organism instance represents a discrete organism or if it represents a particular type of aggregation.,"Recommended best practice is to use a controlled vocabulary. This term is not intended to be used to specify a type of taxon. To describe the kind of dwc:Organism using a URI object in RDF, use rdf:type (http://www.w3.org/1999/02/22-rdf-syntax-ns#type) instead.","`multicellular organism`, `virus`, `clone`, `pack`, `colony`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/organismScope-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/organismScope,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2009-09-21,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.","Examples: ""Pinus abies"", ""Gasterosteus saltatrix Linnaeus 1768""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/basionym-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2017-10-06,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.",,"`Pinus abies`, `Gasterosteus saltatrix Linnaeus 1768`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2021-07-15,originalNameUsage,Original Name Usage,"The taxon name, with authorship and date information if known, as it originally appeared when first established under the rules of the associated nomenclaturalCode. The basionym (botany) or basonym (bacteriology) of the scientificName or the senior/earlier homonym for replaced names.","The full scientific name, with authorship and date information if known, of the name usage in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would indicate the basionym of a record representing a subsequent combination. Unlike basionyms, however, this term can apply to scientific names at all ranks.","`Pinus abies`, `Gasterosteus saltatrix Linnaeus 1768`",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsage-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsage,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2009-09-21,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,"Example: ""http://species.gbif.org/abies_alba_1753""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/basionymID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2017-10-06,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,,`https://www.gbif.org/species/2685484`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2021-07-15,originalNameUsageID,Original Name Usage ID,An identifier for the name usage (documented meaning of the name according to a source) in which the terminal element of the scientificName was originally established under the rules of the associated nomenclaturalCode.,"This term should be used to refer to the taxonID of a Taxon record that represents the usage of the terminal element of the scientificName as originally established under the rules of the associated nomenclaturalCode. For example, for names governed by the ICNafp, this term would establish the relationship between a record representing a subsequent combination and the record for its corresponding basionym. Unlike basionyms, however, this term can apply to scientific names at all ranks. For Darwin Core Archives the related record should be present locally in the same archive.","`tsn:41107` (ITIS), `urn:lsid:ipni.org:names:320035-2` (IPNI), `2704179` (GBIF), `6W3C4` (COL)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/originalNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/originalNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2009-04-24,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.","Examples: ""FMNH:Mammal:1234"", ""NPS YELLO6778; MBG 33424""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/OtherCatalogNumbers-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, +http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2014-10-23,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""FMNH:Mammal:1234"", ""NPS YELLO6778 | MBG 33424"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText, +http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2017-10-06,otherCatalogNumbers,Other Catalog Numbers,"A list (concatenated and separated) of previous or alternate fully qualified catalog numbers or other human-used identifiers for the same Occurrence, whether in the current or any other data set or collection.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`FMNH:Mammal:1234`, `NPS YELLO6778 | MBG 33424`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/otherCatalogNumbers-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/otherCatalogNumbers,DataSets/DataSet/Units/Unit/SpecimenUnit/History/PreviousUnitsText,simple +http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2009-08-24,ownerInstitutionCode,Owner Institution Code,The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.,"Examples: ""NPS"", ""APN"", ""InBio""",,http://rs.tdwg.org/dwc/terms/all,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/ownerInstitutionCode,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2017-10-06,ownerInstitutionCode,Owner Institution Code,The name (or acronym) in use by the institution having ownership of the object(s) or information referred to in the record.,,"`NPS`, `APN`, `InBio`",http://rs.tdwg.org/dwc/terms/,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/ownerInstitutionCode-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/ownerInstitutionCode,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/parentEventID-2014-12-23,parentEventID,Parent Event ID,An identifier for the broader Event that groups this and potentially other Events.,"May be a globally unique identifier or an identifier specific to the data set. Example: ""A1"" as parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID (e.g., ""A1:1"", ""A1:2"").",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentEventID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/parentEventID-2017-10-06,parentEventID,Parent Event ID,An identifier for the broader Event that groups this and potentially other Events.,Use a globally unique identifier for a dwc:Event or an identifier for a dwc:Event that is specific to the data set.,"`A1` (parentEventID to identify the main Whittaker Plot in nested samples, each with its own eventID - `A1:1`, `A1:2`).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/parentEventID-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentEventID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2009-09-21,parentNameUsage,Parent Name Usage,"The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.","Examples: ""Rubiaceae"", ""Gruiformes"", ""Testudinae""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsage,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName, +http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2017-10-06,parentNameUsage,Parent Name Usage,"The full name, with authorship and date information if known, of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",,"`Rubiaceae`, `Gruiformes`, `Testudinae`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/parentNameUsage-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsage,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName,simple +http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2009-09-21,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.","Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/higherTaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2017-10-06,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",,`https://www.gbif.org/species/2684876`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2021-07-15,parentNameUsageID,Parent Name Usage ID,"An identifier for the name usage (documented meaning of the name according to a source) of the direct, most proximate higher-rank parent taxon (in a classification) of the most specific element of the scientificName.",This term should be used for accepted names to refer to the taxonID of a Taxon record that represents the next higher taxon rank in the same taxonomic classification. For Darwin Core Archives the related record should be present locally in the same archive.,"`tsn:41074` (ITIS), `urn:lsid:ipni.org:names:30001404-2` (IPNI), `2704173` (GBIF), `6T8N` (COL)",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/parentNameUsageID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/parentNameUsageID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/pathway-2020-10-13,pathway,Pathway,The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use controlled value strings from the http://rs.tdwg.org/dwcpw/ controlled vocabulary designated for use with this term. For details, refer to https://doi.org/10.3897/biss.3.38084","`releasedForUse`, `otherEscape`, `transportContaminant`, `transportStowaway`, `corridor`, `unaided`",http://rs.tdwg.org/dwc/terms/Occurrence,2020-10-13,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pathway,,simple +http://rs.tdwg.org/dwc/terms/version/pathway-2021-03-29,pathway,Pathway,The process by which an Organism came to be in a given place at a given time.,"Recommended best practice is to use controlled value strings from the controlled vocabulary designated for use with this term, listed at http://rs.tdwg.org/dwc/doc/pw/. For details, refer to https://doi.org/10.3897/biss.3.38084","`releasedForUse`, `otherEscape`, `transportContaminant`, `transportStowaway`, `corridor`, `unaided`",http://rs.tdwg.org/dwc/terms/Occurrence,2021-03-29,superseded,http://rs.tdwg.org/dwc/terms/version/pathway-2020-10-13,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pathway,,simple +http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,phylum,Phylum,The name of the phlyum (or division) in which the scientificName is classified.,"Example: ""Chordata""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Phylum-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, +http://rs.tdwg.org/dwc/terms/version/phylum-2009-08-24,phylum,Phylum,The full scientific name of the phylum or division in which the taxon is classified.,"Examples: ""Chordata"" (phylum), ""Bryophyta"" (division)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/phylum-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum, +http://rs.tdwg.org/dwc/terms/version/phylum-2017-10-06,phylum,Phylum,The full scientific name of the phylum or division in which the taxon is classified.,,`Chordata` (phylum). `Bryophyta` (division).,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/phylum-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/phylum,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName with HigherTaxa/HigherTaxon/HigherTaxonRank = phylum,simple +http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the ""Guide to Best Practices for Georeferencing"", Chapman and Wieczorek, eds. 2006.",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/PointRadiusSpatialFit-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit, +http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left blank) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.","Detailed explanations with graphical examples can be found in the Guide to Best Practices for Georeferencing, Chapman and Wieczorek, eds. 2006.",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple +http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2020-08-20,pointRadiusSpatialFit,Point Radius Spatial Fit,"The ratio of the area of the point-radius (decimalLatitude, decimalLongitude, coordinateUncertaintyInMeters) to the area of the true (original, or most specific) spatial representation of the 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 point-radius does not completely contain the original representation. The pointRadiusSpatialFit is undefined (and should be left empty) if the original representation is a point without uncertainty and the given georeference is not that same point (without uncertainty). If both the original and the given georeference are the same point, the pointRadiusSpatialFit is 1.","Detailed explanations with graphical examples can be found in the Georeferencing Best Practices, Chapman and Wieczorek, 2020 (https://doi.org/10.15468/doc-gg7h-s853).","`0`, `1`, `1.5708`",http://purl.org/dc/terms/Location,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/pointRadiusSpatialFit-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/pointRadiusSpatialFit,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/PointRadiusSpatialFit,simple +http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"Examples: ""skin; skull; skeleton"", ""whole animal (ETOH); tissue (EDTA)"", ""fossil"", ""cast"", ""photograph"", ""DNA extract""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/Preparations-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, +http://rs.tdwg.org/dwc/terms/version/preparations-2014-10-23,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""fossil"", ""cast"", ""photograph"", ""DNA extract"", ""skin | ""skull | skeleton"", ""whole animal (ETOH) | tissue (EDTA)"".",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/preparations-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText, +http://rs.tdwg.org/dwc/terms/version/preparations-2017-10-06,preparations,Preparations,A list (concatenated and separated) of preparations and preservation methods for a specimen.,Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`fossil`, `cast`, `photograph`, `DNA extract`, `skin | skull | skeleton`, `whole animal (ETOH) | tissue (EDTA)`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/preparations-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/preparations,DataSets/DataSet/Units/Unit/SpecimenUnit/Preparations/PreparationsText,simple +http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2014-10-23,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/dwctype/version/PreservedSpecimen-2011-10-16,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, +http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2017-10-06,PreservedSpecimen,Preserved Specimen,A specimen that has been preserved.,,,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/PreservedSpecimen-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/PreservedSpecimen,RecordBasisEnum/PreservedSpecimen, +http://rs.tdwg.org/dwc/terms/version/PreviousIdentifications-2008-11-19,PreviousIdentifications,Previous Identifications,A list (concatenated and separated) of previous ScientificNames to which the sample was identified.,"Example: ""Anthus correndera"".",,http://rs.tdwg.org/dwc/terms/Identification,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/PreviousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, +http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-04-24,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the subject.,"Example: ""Anthus sp., field ID by G. Iglesias; Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/terms/version/PreviousIdentifications-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, +http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-05-18,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Occurrence.,"Example: ""Anthus sp., field ID by G. Iglesias; Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-05-18,superseded,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, +http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2014-10-23,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Organism.,"The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""Chalepidae"", ""Pinus abies"", ""Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology"".",,http://rs.tdwg.org/dwc/terms/Organism,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2009-05-18,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false, +http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2017-10-06,previousIdentifications,Previous Identifications,A list (concatenated and separated) of previous assignments of names to the Organism.,Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`Chalepidae`, `Pinus abies`, `Anthus sp., field ID by G. Iglesias | Anthus correndera, expert ID by C. Cicero 2009-02-12 based on morphology`",http://rs.tdwg.org/dwc/terms/Organism,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/previousIdentifications-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/previousIdentifications,DataSets/DataSet/Units/Unit/Identifications/Identification with PreferredFlag = false,simple +http://rs.tdwg.org/dwc/terms/version/recordedBy-2009-04-24,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.","Example: ""Oliver P. Pearson; Anita K. Pearson"" where the value in recordNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Collector-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, +http://rs.tdwg.org/dwc/terms/version/recordedBy-2014-10-23,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.","The recommended best practice is to separate the values with a vertical bar (' | '). The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first. Examples: ""José E. Crespo"", ""Oliver P. Pearson | Anita K. Pearson"" where the value in recordNumber ""OPP 7101"" corresponds to the number for the specimen in the field catalog (collector number) of Oliver P. Pearson.",,http://rs.tdwg.org/dwc/terms/Occurrence,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/recordedBy-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText, +http://rs.tdwg.org/dwc/terms/version/recordedBy-2017-10-06,recordedBy,Recorded By,"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,`José E. Crespo`. `Oliver P. Pearson | Anita K. Pearson` (where the value in recordNumber `OPP 7101` corresponds to the collector number for the specimen in the field catalog of Oliver P. Pearson).,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/recordedBy-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedBy,DataSets/DataSet/Units/Unit/Gathering/GatheringAgents/GatheringAgentsText,simple +http://rs.tdwg.org/dwc/terms/version/recordedByID-2021-07-15,recordedByID,Recorded By ID,"A list (concatenated and separated) of the globally unique identifier for the person, people, groups, or organizations responsible for recording the original Occurrence.","Recommended best practice is to provide a single identifier that disambiguates the details of the identifying agent. If a list is used, it is recommended to separate the values in the list with space vertical bar space ( | ). The order of the identifiers on any list for this term can not be guaranteed to convey any semantics.",`https://orcid.org/0000-0002-1825-0097` (for an individual); `https://orcid.org/0000-0002-1825-0097 | https://orcid.org/0000-0002-1825-0098` (for a list of people).,http://rs.tdwg.org/dwc/terms/Occurrence,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordedByID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/recordNumber-2009-04-24,recordNumber,Record Number,"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.","Example: ""OPP 7101""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/CollectorNumber-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber, +http://rs.tdwg.org/dwc/terms/version/recordNumber-2017-10-06,recordNumber,Record Number,"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector's number.",,`OPP 7101`,http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/recordNumber-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/recordNumber,DataSets/DataSet/Units/Unit/CollectorsFieldNumber,simple +http://rs.tdwg.org/dwc/terms/version/RelatedBasisOfRecord-2008-11-19,RelatedBasisOfRecord,Related Basis of Record,The nature of the related resource. Recommended best practice is to use the same controlled vocabulary as for basisOfRecord.,"Example: ""PreservedSpecimen""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/RelatedBasisOfRecord,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2009-04-24,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, +http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2017-10-06,relatedResourceID,Related Resource ID,"An identifier for a related resource (the object, rather than the subject of the relationship).",,`dc609808-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relatedResourceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceID,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceInstitutionCode + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitSourceName + DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociatedUnitID, +http://rs.tdwg.org/dwc/terms/version/relatedResourceType-2009-04-24,relatedResourceType,Related Resource Type,The type of the related resource. Recommended best practice is to use a controlled vocabulary.,"Examples: ""StillImage"", ""MovingImage"", ""Sound"", PhysicalObject"", ""PreservedSpecimen"", FossilSpecimen"", LivingSpecimen"", ""HumanObservation"", ""MachineObservation"", ""Location"", ""Taxonomy"", ""NomeclaturalChecklist"", ""Publication""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relatedResourceType,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2009-04-24,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.","Example: ""Julie Woodruff""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2017-10-06,relationshipAccordingTo,Relationship According To,"The source (person, organization, publication, reference) establishing the relationship between the two resources.",,`Julie Woodruff`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipAccordingTo-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2009-04-24,relationshipEstablishedDate,Relationship Established Date,"The date-time on which the relationship between the two resources was established. Recommended best practice is to use an encoding scheme, such as ISO 8601:2004(E).","Examples: ""1963-03-08T14:07-0600"" is 8 Mar 1963 2:07pm in the time zone six hours earlier than UTC, ""2009-02-20T08:40Z"" is 20 Feb 2009 8:40am UTC, ""1809-02-12"" is 12 Feb 1809, ""1906-06"" is Jun 1906, ""1971"" is just that year, ""2007-03-01T13:00:00Z/2008-05-11T15:30:00Z"" is the interval between 1 Mar 2007 1pm UTC and 11 May 2008 3:30pm UTC, ""2007-11-13/15"" is the interval between 13 Nov 2007 and 15 Nov 2007.",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2017-10-06,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2018-09-06,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601:2004(E).,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2020-08-12,relationshipEstablishedDate,Relationship Established Date,The date-time on which the relationship between the two resources was established.,Recommended best practice is to use a date that conforms to ISO 8601-1:2019.,`1963-03-08T14:07-0600` (8 Mar 1963 at 2:07pm in the time zone six hours earlier than UTC). `2009-02-20T08:40Z` (20 February 2009 8:40am UTC). `2018-08-29T15:19` (3:19pm local time on 29 August 2018). `1809-02-12` (some time during 12 February 1809). `1906-06` (some time in June 1906). `1971` (some time in the year 1971). `2007-03-01T13:00:00Z/2008-05-11T15:30:00Z` (some time during the interval between 1 March 2007 1pm UTC and 11 May 2008 3:30pm UTC). `1900/1909` (some time during the interval between the beginning of the year 1900 and the end of the year 1909). `2007-11-13/15` (some time in the interval between 13 November 2007 and 15 November 2007).,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2020-08-12,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipEstablishedDate-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipEstablishedDate,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2009-04-24,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID). Recommended best practice is to use a controlled vocabulary.,"Examples: ""duplicate of"", ""mother of"", ""endoparasite of"", ""host to"", ""sibling of"", ""valid synonym of"", ""located within""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType, +http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2017-10-06,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID).,Recommended best practice is to use a controlled vocabulary.,"`sameAs`, `duplicate of`, `mother of`, `endoparasite of`, `host to`, `sibling of`, `valid synonym of`, `located within`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType, +http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2018-09-06,relationshipOfResource,Relationship Of Resource,The relationship of the resource identified by relatedResourceID to the subject (optionally identified by the resourceID).,Recommended best practice is to use a controlled vocabulary.,"`sameAs`, `duplicate of`, `mother of`, `endoparasite of`, `host to`, `sibling of`, `valid synonym of`, `located within`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType,extension +http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2021-07-15,relationshipOfResource,Relationship Of Resource,The relationship of the subject (identified by resourceID) to the object (identified by relatedResourceID).,Recommended best practice is to use a controlled vocabulary.,"`sameAs`, `duplicate of`, `mother of`, `offspring of`, `sibling of`, `parasite of`, `host of`, `valid synonym of`, `located within`, `pollinator of members of taxon`, `pollinated specific plant`, `pollinated by members of taxon`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipOfResource-2018-09-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResource,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/AssociationType,extension +http://rs.tdwg.org/dwc/terms/version/relationshipOfResourceID-2021-07-15,relationshipOfResourceID,Relationship Of Resource ID,An identifier for the relationship type (predicate) that connects the subject identified by resourceID to its object identified by relatedResourceID.,"Recommended best practice is to use the identifiers of the terms in a controlled vocabulary, such as the OBO Relation Ontology.","`http://purl.obolibrary.org/obo/RO_0002456` (for the relation ""pollinated by""), `http://purl.obolibrary.org/obo/RO_0002455` (for the relation ""pollinates""), `https://www.inaturalist.org/observation_fields/879` (for the relation ""eaten by"")",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipOfResourceID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2009-04-24,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,"Examples: ""mother and offspring collected from the same nest"", ""pollinator captured in the act""",,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments, +http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2017-10-06,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,,"`mother and offspring collected from the same nest`, `pollinator captured in the act`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments, +http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2018-09-06,relationshipRemarks,Relationship Remarks,Comments or notes about the relationship between the two resources.,,"`mother and offspring collected from the same nest`, `pollinator captured in the act`",http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/relationshipRemarks-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/relationshipRemarks,DataSets/DataSet/Units/Unit/Associations/UnitAssociation/Comments,extension +http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2009-04-24,reproductiveCondition,Reproductive Condition,The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.,"Examples"" ""non-reproductive"", ""pregnant"", ""in bloom"", ""fruit-bearing""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/reproductiveCondition,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2017-10-06,reproductiveCondition,Reproductive Condition,The reproductive condition of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary.,"`non-reproductive`, `pregnant`, `in bloom`, `fruit-bearing`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/reproductiveCondition-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/reproductiveCondition,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/resourceID-2009-04-24,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/resourceID-2017-10-06,resourceID,Resource ID,An identifier for the resource that is the subject of the relationship.,,`f809b9e0-b09b-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/resourceID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2009-01-21,ResourceRelationship,Resource Relationship,"The category of information pertaining to relationships between resources (instances of data records, such as Occurrences, Taxa, Locations, Events).","Resources can be thought of as identifiable records and may include, but need not be limited to Occurrences, Locations, Events, Identifications, or Taxon records.",,,2009-01-21,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, +http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2014-10-23,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to Occurrences, Organisms, MaterialSamples, Events, Locations, GeologicalContexts, Identifications, or Taxa. Example: An instance of an Organism is the mother of another instance of an Organism.",,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2009-01-21,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, +http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2017-10-06,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",An instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.,,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2014-10-23,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations, +http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2018-09-06,ResourceRelationship,Resource Relationship,A relationship of one rdfs:Resource (http://www.w3.org/2000/01/rdf-schema#Resource) to another.,"Resources can be thought of as identifiable records or instances of classes and may include, but need not be limited to dwc:Occurrence, dwc:Organism, dwc:MaterialSample, dwc:Event, dwc:Location, dwc:GeologicalContext, dwc:Identification, or dwc:Taxon.",An instance of an Organism is the mother of another instance of an Organism. A uniquely identified Occurrence represents the same Occurrence as another uniquely identified Occurrence. A MaterialSample is a subsample of another MaterialSample.,,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/ResourceRelationship-2017-10-06,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/ResourceRelationship,DataSets/DataSet/Units/Unit/Associations,extension +http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2009-04-24,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2017-10-06,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,`04b16710-b09c-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2018-09-06,resourceRelationshipID,Resource Relationship ID,"An identifier for an instance of relationship between one resource (the subject) and another (relatedResource, the object).",,`04b16710-b09c-11e8-96f8-529269fb1459`,http://rs.tdwg.org/dwc/terms/ResourceRelationship,2018-09-06,superseded,http://rs.tdwg.org/dwc/terms/version/resourceRelationshipID-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/resourceRelationshipID,not in ABCD,extension +http://rs.tdwg.org/dwc/terms/version/Sample-2008-11-19,Sample,Sample,"Container class for information about the results of a sampling event (specimen, observation, etc.)",,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Sample,DataSets/DataSet/Units/Unit, +http://rs.tdwg.org/dwc/terms/version/SampleAttribute-2008-11-19,SampleAttribute,Sample Attribute,Container class for information about attributes related to a given sample.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SampleAttribute,Datasets/Dataset/Units/Unit/MeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeAccuracy-2009-01-18,SampleAttributeAccuracy,Sample Attribute Accuracy,The description of the error associated with the SampleAttributeValue.,"Example: ""0.01"", ""normal distribution with variation of 2 m""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeAccuracy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Accuracy, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedBy-2009-01-23,SampleAttributeDeterminedBy,Sample Attribute Determined By,The agent responsible for having determined the value of the measurement or characteristic of the sample.,"Example: ""Javier de la Torre""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedBy,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasuredBy, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeDeterminedDate-2009-01-23,SampleAttributeDeterminedDate,Sample Attribute Determined Date,The date on which the the measurement or characteristic of the sample was made.,"Date may be used to express temporal information at any level of granularity. Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2009-01-23,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeDeterminedDate,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/MeasurementDateTime, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeRemarks-2008-11-19,SampleAttributeRemarks,Sample Attribute Remarks,Comments or notes accompanying the measurement or characteristic of the sample.,"Example: ""tip of tail missing""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeUnit-2008-11-19,SampleAttributeUnit,Sample Attribute Unit,The units for the value of the measurement or characteristic of the sample. Recommended best practice is to use International System of Units (SI) units.,"Example: ""mm""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeUnit,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UnitOfMeasurement, +http://rs.tdwg.org/dwc/terms/version/SampleAttributeValue-2008-11-19,SampleAttributeValue,Sample Attribute Value,The value of the measurement or characteristic of the sample.,"Example: ""45""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleAttributeValue,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/LowerValue or DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/UpperValue, +http://rs.tdwg.org/dwc/terms/version/SampleRemarks-2009-01-18,SampleRemarks,Sample Remarks,Comments or notes about the sample or record.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/Sample,2009-01-18,deprecated,http://rs.tdwg.org/dwc/dwcore/version/Remarks-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SampleRemarks,DataSets/DataSet/Units/Unit/Notes, +http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2014-12-23,sampleSizeUnit,Sample Size Unit,"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., ""5"" for sampleSizeValue with ""metre"" for sampleSizeUnit. Examples: ""minute"", ""hour"", ""day"", ""metre"", ""square metre"", ""cubic metre"". Recommended best practice is to use a controlled vocabulary such as the Ontology of Units of Measure http://www.wurvoc.org/vocabularies/om-1.8/ of SI units, derived units, or other non-SI units accepted for use within the SI (e.g., minute, hour, day, litre).",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeUnit,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2017-10-06,sampleSizeUnit,Sample Size Unit,"The unit of measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeUnit must have a corresponding sampleSizeValue, e.g., `5` for sampleSizeValue with `metre` for sampleSizeUnit.","`minute`, `hour`, `day`, `metre`, `square metre`, `cubic metre`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/sampleSizeUnit-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeUnit,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2014-12-23,sampleSizeValue,Sample Size Value,"A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.","A sampleSizeValue must have a corresponding sampleSizeUnit. Example: ""5"" for sampleSizeValue with ""metre"" for sampleSizeUnit.",,http://rs.tdwg.org/dwc/terms/Event,2014-12-23,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeValue,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2017-10-06,sampleSizeValue,Sample Size Value,"A numeric value for a measurement of the size (time duration, length, area, or volume) of a sample in a sampling event.",A sampleSizeValue must have a corresponding sampleSizeUnit. ,`5` for sampleSizeValue with `metre` for sampleSizeUnit.,http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/sampleSizeValue-2014-12-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sampleSizeValue,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/SamplingAttributeID-2008-11-19,SamplingAttributeID,Sample Attribute ID,An identifier for the sampling attribute. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingAttributeID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/SamplingAttributeType-2008-11-19,SamplingAttributeType,Sample Attribute Type,The nature of the measurement or characteristic of the sample. Recommended best practice is to use a controlled vocabulary.,"Example: ""tail length""",,http://rs.tdwg.org/dwc/terms/SampleAttribute,2008-11-19,deprecated,http://rs.tdwg.org/dwc/terms/version/EventAttributeType-2008-11-19|http://rs.tdwg.org/dwc/terms/version/SampleAttributeType-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingAttributeType,DataSets/DataSet/Units/Unit/MeasurementsOrFacts/MeasurementOrFact/MeasurementOrFactAtomised/Parameter, +http://rs.tdwg.org/dwc/terms/version/samplingEffort-2009-08-24,samplingEffort,Sampling Effort,The amount of effort expended during an Event.,"Examples: ""40 trap-nights"", ""10 observer-hours; 10 km by foot; 30 km by car""",,http://rs.tdwg.org/dwc/terms/Event,2009-08-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingEffort,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/samplingEffort-2017-10-06,samplingEffort,Sampling Effort,The amount of effort expended during an Event.,,"`40 trap-nights`, `10 observer-hours`, `10 km by foot`, `30 km by car`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/samplingEffort-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingEffort,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/SamplingEvent-2008-11-19,SamplingEvent,Sampling Event,Container class for information about the conditions and methods of acquisition of samples.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SamplingEvent,DataSets/DataSet/Units/Unit/Gathering, +http://rs.tdwg.org/dwc/terms/version/SamplingEventAttributes-2008-11-19,SamplingEventAttributes,Sampling Event Attributes,A list (concatenated and separated) of additional measurements or characteristics of the sampling event.,"Example: ""Relative humidity: 28 %; Temperature: 22 C; Sample size: 10 kg""",,http://rs.tdwg.org/dwc/terms/SamplingEvent,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventAttributes,DataSets/DataSet/Units/Unit/Gathering/SiteMeasurementsOrFacts, +http://rs.tdwg.org/dwc/terms/version/SamplingEventID-2008-11-19,SamplingEventID,Sampling Event ID,An identifier for the sampling event. May be a global unique identifier or an identifier specific to the data set.,,,http://rs.tdwg.org/dwc/terms/SamplingEvent,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventID,DataSets/DataSet/Units/Unit/Gathering/Code, +http://rs.tdwg.org/dwc/terms/version/SamplingEventRemarks-2009-01-18,SamplingEventRemarks,Sampling Event Remarks,Comments or notes about the sampling event.,"Example: ""found dead on road""",,http://rs.tdwg.org/dwc/terms/SamplingEvent,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingEventRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/SamplingLocation-2008-11-19,SamplingLocation,Sampling Location,Container class for information about the location where a sampling event occurred.,,,,2008-11-19,deprecated,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/SamplingLocation,DataSets/DataSet/Units/Unit/Gathering/LocalityText, +http://rs.tdwg.org/dwc/terms/version/SamplingLocationID-2008-11-19,SamplingLocationID,Sampling Location ID,An identifier for the sampling location. May be a global unique identifier or an identifier specific to the data set.,"Example: ""MVZ:LocID:12345""",,http://purl.org/dc/terms/Location,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingLocationID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/SamplingLocationRemarks-2009-01-18,SamplingLocationRemarks,Sampling Location Remarks,Comments or notes about the sampling location.,"Example: ""under water since 2005""",,http://purl.org/dc/terms/Location,2009-01-18,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/SamplingLocationRemarks,DataSets/DataSet/Units/Unit/Gathering/AreaDetail, +http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2009-04-24,samplingProtocol,Sampling Protocol,"The name of, reference to, or description of the method or protocol used during an Event.","Examples: ""UV light trap"", ""mist net"", ""bottom trawl"", ""ad hoc observation"", ""point count"", ""Penguins from space: faecal stains reveal the location of emperor penguin colonies, http://dx.doi.org/10.1111/j.1466-8238.2009.00467.x"", ""Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp."", ""http://www.bsc-eoc.org/download/Owl.pdf""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/CollectingMethod-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method, +http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2017-10-06,samplingProtocol,Sampling Protocol,"The name of, reference to, or description of the method or protocol used during an Event.",,"`UV light trap`, `mist net`, `bottom trawl`, `ad hoc observation`, `point count`, `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`, `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp.`, `http://www.bsc-eoc.org/download/Owl.pdf`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method,simple +http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2021-07-15,samplingProtocol,Sampling Protocol,"The names of, references to, or descriptions of the methods or protocols used during an Event.","Recommended best practice is describe an Event with no more than one sampling protocol. In the case of a summary Event with multiple protocols, in which a specific protocol can not be attributed to specific Occurrences, the recommended best practice is to separate the values in a list with space vertical bar space ( | ).","`UV light trap`, `mist net`, `bottom trawl`, `ad hoc observation | point count`, `Penguins from space: faecal stains reveal the location of emperor penguin colonies, https://doi.org/10.1111/j.1466-8238.2009.00467.x`, `Takats et al. 2001. Guidelines for Nocturnal Owl Monitoring in North America. Beaverhill Bird Observatory and Bird Studies Canada, Edmonton, Alberta. 32 pp., http://www.bsc-eoc.org/download/Owl.pdf`",http://rs.tdwg.org/dwc/terms/Event,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/samplingProtocol-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/samplingProtocol,DataSets/DataSet/Units/Unit/Gathering/Method,simple +http://rs.tdwg.org/dwc/terms/version/scientificName-2009-04-24,scientificName,Scientific Name,"The taxon name (with date and authorship information if applicable). 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.","Examples: ""Coleoptera"" (order), ""Vespertilionidae"" (family), ""Manis"" (genus), ""Ctenomys sociabilis"" (genus + specificEpithet), ""Ambystoma tigrinum diaboli"" (genus + specificEpithet + infraspecificEpithet), ""Quercus agrifolia var. oxyadenia (Torr.) J.T. Howell"" (genus + specificEpithet + taxonRank + infraspecificEpithet + scientificNameAuthorship)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/ScientificName-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, +http://rs.tdwg.org/dwc/terms/version/scientificName-2009-09-21,scientificName,Scientific Name,"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.","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)",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/scientificName-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString, +http://rs.tdwg.org/dwc/terms/version/scientificName-2017-10-06,scientificName,Scientific Name,"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.",,"`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).",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/scientificName-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString,simple +http://rs.tdwg.org/dwc/terms/version/scientificName-2021-07-15,scientificName,Scientific Name,"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.","This term should not contain identification qualifications, which should instead be supplied in the IdentificationQualifier term. When applied to an Organism or Occurrence, this term should be used to represent the scientific name that was applied to the associated Organism in accordance with the Taxon to which it was or is currently identified.","`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).",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,http://rs.tdwg.org/dwc/terms/version/scientificName-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificName,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/FullScientificNameString,simple +http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2009-04-24,scientificNameAuthorship,Scientific Name Authorship,The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.,"Example: ""(Torr.) J.T. Howell"", ""(Martinovský) Tzvelev"", ""(Györfi, 1952)""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/AuthorYearOfScientificName-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameAuthorship,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear}, +http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2017-10-06,scientificNameAuthorship,Scientific Name Authorship,The authorship information for the scientificName formatted according to the conventions of the applicable nomenclaturalCode.,,"`(Torr.) J.T. Howell`, `(Martinovský) Tzvelev`, `(Györfi, 1952)`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/scientificNameAuthorship-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameAuthorship,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/ParentheticalAuthorTeamAndYear + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/AuthorTeamAndYear} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeamParenthesis + DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/AuthorTeam} or {DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamOriginalAndYear + [= or] DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/AuthorTeamParenthesisAndYear},simple +http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-07-06,scientificNameID,Scientific Name ID,A unique identifier for the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-08-24,scientificNameID,Scientific Name ID,An identifier for the nomenclatural (not taxonomic) details of a scientific name.,"Example: ""urn:lsid:ipni.org:names:37829-1:1.3""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/TaxonNameID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/scientificNameRank-2009-07-06,scientificNameRank,Scientific Name Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subsp."", ""var."", ""forma"", ""species"", ""genus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/scientificNameRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, +http://rs.tdwg.org/dwc/terms/version/sex-2009-04-24,sex,Sex,The sex of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary.,"Examples: ""female"", ""hermaphrodite"", ""8 males, 4 females""",,http://rs.tdwg.org/dwc/terms/Occurrence,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/Sex-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex, +http://rs.tdwg.org/dwc/terms/version/sex-2017-10-06,sex,Sex,The sex of the biological individual(s) represented in the Occurrence.,Recommended best practice is to use a controlled vocabulary.,"`female`, `male`, `hermaphrodite`",http://rs.tdwg.org/dwc/terms/Occurrence,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/sex-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/sex,DataSets/DataSet/Units/Unit/Sex,simple +http://rs.tdwg.org/dwc/terms/version/specificEpithet-2009-04-24,specificEpithet,Specific Epithet,The name of the first or species epithet of the scientificName.,"Examples: ""concolor"", ""gottschei""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/SpecificEpithet-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet}, +http://rs.tdwg.org/dwc/terms/version/specificEpithet-2017-10-06,specificEpithet,Specific Epithet,The name of the first or species epithet of the scientificName.,,"`concolor`, `gottschei`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/specificEpithet-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/specificEpithet,{DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Bacterial/SpeciesEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/FirstEpithet or DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/SpeciesEpithet},simple +http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).","Examples: ""1"" (=1 Jan), ""366"" (=31 Dec), ""365"" (=30 Dec in a leap year, 31 Dec in a non-leap year)",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/DayOfYear-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin, +http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,startDayOfYear,Start Day Of Year,"The earliest ordinal day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple +http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2020-08-20,startDayOfYear,Start Day Of Year,"The earliest integer day of the year on which the Event occurred (1 for January 1, 365 for December 31, except in a leap year, in which case it is 366).",,"`1` (1 January). `366` (31 December), `365` (30 December in a leap year, 31 December in a non-leap year).",http://rs.tdwg.org/dwc/terms/Event,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/startDayOfYear-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/startDayOfYear,DataSets/DataSet/Units/Unit/Gathering/DateTime/DayNumberBegin,simple +http://rs.tdwg.org/dwc/terms/version/StartTimeOfDay-2008-11-19,StartTimeOfDay,Start Time of Day,"The time of day when the event began, expressed as decimal hours from midnight, local time.","Examples: ""12.0"" (= noon), ""13.5"" (= 1:30pm)",,http://rs.tdwg.org/dwc/terms/Event,2008-11-19,deprecated,http://www.iobis.org/obis/version/StartTimeOfDay-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/StartTimeOfDay,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/stateProvince-2009-04-24,stateProvince,State Province,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.","Examples: ""Montana"", ""Minas Gerais"", ""Córdoba""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/StateProvince-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.), +http://rs.tdwg.org/dwc/terms/version/stateProvince-2017-10-06,stateProvince,State Province,"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs.",Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Montana`, `Minas Gerais`, `Córdoba`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/stateProvince-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/stateProvince,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= State or = Province (etc.),simple +http://rs.tdwg.org/dwc/terms/version/subfamily-2021-07-15,subfamily,Subfamily,The full scientific name of the subfamily in which the taxon is classified.,,"`Periptyctinae`, `Orchidoideae`, `Sphindociinae`",http://rs.tdwg.org/dwc/terms/Taxon,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subfamily,"DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonName if DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/HigherTaxa/HigherTaxon/HigherTaxonRank == ""subfamilia""",simple +http://rs.tdwg.org/dwc/terms/version/subgenus-2009-04-24,subgenus,Subgenus,The name of the subgenus in which the scientificName is classified.,"Example: ""Strobus"" subgenus of Pinus",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://www.iobis.org/obis/version/Subgenus-2005-07-10,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus, +http://rs.tdwg.org/dwc/terms/version/subgenus-2009-08-24,subgenus,Subgenus,The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.,"Examples: ""Strobus (Pinus)"", ""Puma (Puma)"" ""Loligo (Amerigo)"", ""Hieracium subgen. Pilosella""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/subgenus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus, +http://rs.tdwg.org/dwc/terms/version/subgenus-2017-10-06,subgenus,Subgenus,The full scientific name of the subgenus in which the taxon is classified. Values should include the genus to avoid homonym confusion.,,"`Strobus`, `Amerigo`, `Pilosella`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/subgenus-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/subgenus,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Zoological/Subgenus,simple +http://rs.tdwg.org/dwc/terms/version/Taxon-2008-11-19,Taxon,Taxon,The category of information pertaining to taxonomic names or concepts.,,,,2008-11-19,superseded,,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, +http://rs.tdwg.org/dwc/terms/version/Taxon-2009-09-21,Taxon,Taxon,"The category of information pertaining to taxonomic names, taxon name usages, or taxon concepts.",,,,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/Taxon-2008-11-19,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, +http://rs.tdwg.org/dwc/terms/version/Taxon-2014-10-23,Taxon,Taxon,A group of organisms (sensu http://purl.obolibrary.org/obo/OBI_0100026) considered by taxonomists to form a homogeneous unit.,Example: The genus Truncorotaloides as published by Brönnimann et al. in 1953 in the Journal of Paleontology Vol. 27(6) p. 817-820.,,,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/Taxon-2009-09-21,http://www.w3.org/2000/01/rdf-schema#Class,http://rs.tdwg.org/dwc/terms/Taxon,no simple equivalent in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonAccordingTo-2009-04-24,taxonAccordingTo,Taxon According To,"Information about the authorship of this taxon concept which uses the scientificName in their sense (secundum, sensu). Could be a publication (identification key), institution or team of individuals.",,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonAccordingTo,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonAttributes-2009-04-24,taxonAttributes,Taxon Attributes,"A list (concatenated and separated) of additional measurements, facts, characteristics, or assertions about the taxon.","Example: ""iucnstatus=vulnerable; distribution=Neuquen, Argentina""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonAttributes,DataSets/DataSet/Units/Unit/Identifications/Identification/Result/TaxonIdentified/InformalNameString, +http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-04-24,taxonConceptID,Taxon Concept ID,A unique identifier for the taxon concept (a circumscription of a taxonName).,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-09-21,taxonConceptID,Taxon Concept ID,An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.,"Example: ""8fa58e08-08de-4ac1-b69c-1235340b7001""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2017-10-06,taxonConceptID,Taxon Concept ID,An identifier for the taxonomic concept to which the record refers - not for the nomenclatural details of a taxon.,,`8fa58e08-08de-4ac1-b69c-1235340b7001`,http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonConceptID-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonConceptID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/TaxonID-2008-11-19,TaxonID,Taxon ID,A global unique identifier for the taxon (name in a classification).,,,http://rs.tdwg.org/dwc/terms/Taxon,2008-11-19,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/TaxonID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonID-2009-08-24,taxonID,Taxon ID,An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.,"Examples: ""8fa58e08-08de-4ac1-b69c-1235340b7001"", ""32567"", ""http://species.gbif.org/abies_alba_1753"", ""urn:lsid:gbif.org:usages:32567""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/scientificNameID-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonID-2017-10-06,taxonID,Taxon ID,An identifier for the set of taxon information (data associated with the Taxon class). May be a global unique identifier or an identifier specific to the data set.,,"`8fa58e08-08de-4ac1-b69c-1235340b7001`, `32567`, `https://www.gbif.org/species/212`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonID-2009-08-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonID,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/taxonNameID-2009-04-24,taxonNameID,Taxon Name ID,A unique identifier for the scientificName.,,,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,deprecated,http://rs.tdwg.org/dwc/terms/version/TaxonID-2008-11-19,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonNameID,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2009-04-24,taxonomicStatus,Taxonomic Status,"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept. Recommended best practice is to use a controlled vocabulary.","Examples: ""invalid"", ""misapplied"", ""homotypic synonym"", ""accepted""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonomicStatus,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2017-10-06,taxonomicStatus,Taxonomic Status,"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. Rules of priority then are used to define the taxonomic status of the nomenclature contained in that scope, combined with the experts opinion. It must be linked to a specific taxonomic reference that defines the concept.",Recommended best practice is to use a controlled vocabulary.,"`invalid`, `misapplied`, `homotypic synonym`, `accepted`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonomicStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonomicStatus,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-04-24,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subsp."", ""var."", ""forma"", ""species"", ""genus"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/InfraspecificRank-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, +http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-09-21,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName. Recommended best practice is to use a controlled vocabulary.,"Examples: ""subspecies"", ""varietas"", ""forma"", ""species"", ""genus""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/scientificNameRank-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank, +http://rs.tdwg.org/dwc/terms/version/taxonRank-2017-10-06,taxonRank,Taxon Rank,The taxonomic rank of the most specific name in the scientificName.,Recommended best practice is to use a controlled vocabulary.,"`subspecies`, `varietas`, `forma`, `species`, `genus`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/taxonRank-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRank,DataSets/DataSet/Units/Unit/Identifications/Identification/TaxonIdentified/ScientificName/NameAtomised/Botanical/Rank,simple +http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-04-24,taxonRemarks,Taxon Remarks,Comments or notes about the taxon.,"Example: ""this name is a misspelling in common use""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-08-24,taxonRemarks,Taxon Remarks,Comments or notes about the taxon or name.,"Example: ""this name is a misspelling in common use""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-08-24,superseded,http://rs.tdwg.org/dwc/terms/version/taxonRemarks-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/taxonRemarks,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","Example: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388""",,http://rs.tdwg.org/dwc/terms/Identification,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/TypeStatus-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, +http://rs.tdwg.org/dwc/terms/version/typeStatus-2014-10-23,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.","The recommended best practice is to separate the values with a vertical bar (' | '). Examples: ""holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388"", ""holotype of Pinus abies | holotype of Picea abies"".",,http://rs.tdwg.org/dwc/terms/Identification,2014-10-23,superseded,http://rs.tdwg.org/dwc/terms/version/typeStatus-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText, +http://rs.tdwg.org/dwc/terms/version/typeStatus-2017-10-06,typeStatus,Type Status,"A list (concatenated and separated) of nomenclatural types (type status, typified scientific name, publication) applied to the subject.",Recommended best practice is to separate the values in a list with space vertical bar space (` | `).,"`holotype of Ctenomys sociabilis. Pearson O. P., and M. I. Christie. 1985. Historia Natural, 5(37):388`, `holotype of Pinus abies | holotype of Picea abies`",http://rs.tdwg.org/dwc/terms/Identification,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/typeStatus-2014-10-23,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/typeStatus,DataSets/DataSet/Units/Unit/SpecimenUnit/NomenclaturalTypeDesignations/NomenclaturalTypeText,simple +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Examples: ""41 05 54S 121 05 34W"", ""17T 630000 4833400""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinates-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText}, +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2017-10-06,verbatimCoordinates,Verbatim Coordinates,"The verbatim original spatial coordinates of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,"`41 05 54S 121 05 34W`, `17T 630000 4833400`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinates-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinates,{DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/CoordinatesText or DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesUTM/UTMText},simple +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location. Recommended best practice is to use a controlled vocabulary.,"Examples: ""decimal degrees"", ""degrees decimal minutes"", ""degrees minutes seconds"", ""UTM""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimCoordinateSystem-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem, +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,verbatimCoordinateSystem,Verbatim Coordinate System,The spatial coordinate system for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple +http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2020-08-20,verbatimCoordinateSystem,Verbatim Coordinate System,The coordinate format for the verbatimLatitude and verbatimLongitude or the verbatimCoordinates of the Location.,Recommended best practice is to use a controlled vocabulary.,"`decimal degrees`, `degrees decimal minutes`, `degrees minutes seconds`, `UTM`",http://purl.org/dc/terms/Location,2020-08-20,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimCoordinateSystem-2017-10-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimCoordinateSystem,(partly) DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesGrid/GridCellSystem,simple +http://rs.tdwg.org/dwc/terms/version/verbatimDepth-2009-04-24,verbatimDepth,Verbatim Depth,The original description of the depth below the local surface.,"Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimDepth-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimDepth,DataSets/DataSet/Units/Unit/Gathering/Depth/MeasurementOrFactText, +http://rs.tdwg.org/dwc/terms/version/verbatimElevation-2009-04-24,verbatimElevation,Verbatim Elevation,"The original description of the elevation (altitude, usually above sea level) of the Location.","Example: ""100-200 m""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimElevation-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimElevation,DataSets/DataSet/Units/Unit/Gathering/Altitude/MeasurementOrFactText, +http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2009-04-24,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for an Event.,"Examples: ""spring 1910"", ""Marzo 2002"", ""1999-03-XX"", ""17IV1934""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://rs.tdwg.org/dwc/curatorial/version/VerbatimCollectingDate-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText, +http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2017-10-06,verbatimEventDate,Verbatim EventDate,The verbatim original representation of the date and time information for an Event.,,"`spring 1910`, `Marzo 2002`, `1999-03-XX`, `17IV1934`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimEventDate-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimEventDate,DataSets/DataSet/Units/Unit/Gathering/DateTime/DateText,simple +http://rs.tdwg.org/dwc/terms/version/verbatimIdentification-2021-07-15,verbatimIdentification,Verbatim Identification,A string representing the taxonomic identification as it appeared in the original record.,"This term is meant to allow the capture of an unaltered original identification/determination, including identification qualifiers, hybrid formulas, uncertainties, etc. This term is meant to be used in addition to `scientificName` (and `identificationQualifier` etc.), not instead of it.","`Peromyscus sp.`, `Ministrymon sp. nov. 1`, `Anser anser X Branta canadensis`, `Pachyporidae?`",http://rs.tdwg.org/dwc/terms/Identification,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimIdentification,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2009-04-24,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Example: ""41 05 54.03S""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimLatitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude, +http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2017-10-06,verbatimLatitude,Verbatim Latitude,"The verbatim original latitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,`41 05 54.03S`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimLatitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLatitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLatitude,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2009-04-24,verbatimLocality,Verbatim Locality,The original textual description of the place.,"Example: ""25 km NNE Bariloche por R. Nac. 237""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName, +http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2017-10-06,verbatimLocality,Verbatim Locality,The original textual description of the place.,,`25 km NNE Bariloche por R. Nac. 237`,http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimLocality-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLocality,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName,simple +http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2009-04-24,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.","Example: ""121d 10' 34"" W""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/geospatial/version/VerbatimLongitude-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude, +http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2017-10-06,verbatimLongitude,Verbatim Longitude,"The verbatim original longitude of the Location. The coordinate ellipsoid, geodeticDatum, or full Spatial Reference System (SRS) for these coordinates should be stored in verbatimSRS and the coordinate system should be stored in verbatimCoordinateSystem.",,"`121d 10' 34"" W`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimLongitude-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimLongitude,DataSets/DataSet/Units/Unit/Gathering/SiteCoordinateSets/SiteCoordinates/CoordinatesLatLon/VerbatimLongitude,simple +http://rs.tdwg.org/dwc/terms/version/verbatimScientificNameRank-2009-07-06,verbatimScientificNameRank,Verbatim Scientific Name Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,"Examples: ""Agamospecies"", ""sub-lesus"", ""prole"", ""apomict"", ""nothogrex"".",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,deprecated,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimScientificNameRank,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2009-07-06,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based. Recommended best practice is use the EPSG code as a controlled vocabulary to provide an SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value ""unknown"".","Examples: ""EPSG:4326"", ""WGS84"", ""NAD27"", ""Campo Inchauspe"", ""European 1950"", ""Clarke 1866""",,http://purl.org/dc/terms/Location,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2017-10-06,verbatimSRS,Verbatim SRS,"The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimLatitude and verbatimLongitude, or verbatimCoordinates are based.","Recommended best practice is to use the EPSG code of the SRS, if known. Otherwise use a controlled vocabulary for the name or code of the geodetic datum, if known. Otherwise use a controlled vocabulary for the name or code of the ellipsoid, if known. If none of these is known, use the value `unknown`.","`unknown`, `EPSG:4326`, `WGS84`, `NAD27`, `Campo Inchauspe`, `European 1950`, `Clarke 1866`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimSRS-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimSRS,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2009-09-21,verbatimTaxonRank,Verbatim Taxon Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,"Examples: ""Agamospecies"", ""sub-lesus"", ""prole"", ""apomict"", ""nothogrex"", ""sp."", ""subsp."", ""var.""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-09-21,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimScientificNameRank-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimTaxonRank,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2017-10-06,verbatimTaxonRank,Verbatim Taxon Rank,The taxonomic rank of the most specific name in the scientificName as it appears in the original record.,,"`Agamospecies`, `sub-lesus`, `prole`, `apomict`, `nothogrex`, `sp.`, `subsp.`, `var.`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/verbatimTaxonRank-2009-09-21,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verbatimTaxonRank,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/vernacularName-2009-07-06,vernacularName,Vernacular Name,A common or vernacular name.,"Examples: ""Andean Condor"", ""Condor Andino"", ""American Eagle"", ""Gänsegeier""",,http://rs.tdwg.org/dwc/terms/Taxon,2009-07-06,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vernacularName,not in ABCD, +http://rs.tdwg.org/dwc/terms/version/vernacularName-2017-10-06,vernacularName,Vernacular Name,A common or vernacular name.,,"`Andean Condor`, `Condor Andino`, `American Eagle`, `Gänsegeier`",http://rs.tdwg.org/dwc/terms/Taxon,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/vernacularName-2009-07-06,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/vernacularName,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/verticalDatum-2021-07-15,verticalDatum,Vertical Datum,The vertical datum used as the reference upon which the values in the elevation terms are based.,Recommended best practice is to use a controlled vocabulary.,"`EGM84`, `EGM96`, `EGM2008`, `PGM2000A`, `PGM2004`, `PGM2006`, `PGM2007`, `epsg:7030`, `unknown`",http://purl.org/dc/terms/Location,2021-07-15,superseded,,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/verticalDatum,not in ABCD,simple +http://rs.tdwg.org/dwc/terms/version/waterBody-2009-04-24,waterBody,Water Body,The name of the water body in which the Location occurs. Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"Examples: ""Indian Ocean"", ""Baltic Sea"", ""Hudson River""",,http://purl.org/dc/terms/Location,2009-04-24,superseded,http://rs.tdwg.org/dwc/dwcore/version/WaterBody-2007-04-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/waterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body, +http://rs.tdwg.org/dwc/terms/version/waterBody-2017-10-06,waterBody,Water Body,The name of the water body in which the Location occurs.,Recommended best practice is to use a controlled vocabulary such as the Getty Thesaurus of Geographic Names.,"`Indian Ocean`, `Baltic Sea`, `Hudson River`, `Lago Nahuel Huapi`",http://purl.org/dc/terms/Location,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/waterBody-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/waterBody,DataSets/DataSet/Units/Unit/Gathering/NamedAreas/NamedArea/AreaName with NamedAreas/NamedArea/AreaClass= Water body,simple +http://rs.tdwg.org/dwc/terms/version/year-2009-04-24,year,Year,"The four-digit year in which the Event occurred, according to the Common Era Calendar.","Example: ""2008""",,http://rs.tdwg.org/dwc/terms/Event,2009-04-24,superseded,http://digir.net/schema/conceptual/darwin/2003/1.0/version/YearCollected-2003-06-17,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin, +http://rs.tdwg.org/dwc/terms/version/year-2017-10-06,year,Year,"The four-digit year in which the Event occurred, according to the Common Era Calendar.",,"`1160`, `2008`",http://rs.tdwg.org/dwc/terms/Event,2017-10-06,superseded,http://rs.tdwg.org/dwc/terms/version/year-2009-04-24,http://www.w3.org/1999/02/22-rdf-syntax-ns#Property,http://rs.tdwg.org/dwc/terms/year,accessible from DataSets/DataSet/Units/Unit/Gathering/ISODateTimeBegin,simple