Difference between revisions of "Talk:Natural Collections Description"
m (→Base: added section) |
m (→ContactDetails) |
||
(23 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
{| class="wikitable sortable vertical-align-top" | {| class="wikitable sortable vertical-align-top" | ||
− | |+ List of all preferred | + | |+ List of all preferred namespace prefixes defined or missing in NCD. They are obtained from a subversion checkout (revision 19 from 2009-12-18 22:00:55 <code><nowiki>svn checkout http://tdwg-ontology.googlecode.com/svn/trunk/</nowiki></code>) |
|- | |- | ||
! Collection !! Preferred namespace !! Preferred<br/> namespace URI !! Is in <abbr title="subversion">svn</abbr><br/>Ontology.owl !! Comments | ! Collection !! Preferred namespace !! Preferred<br/> namespace URI !! Is in <abbr title="subversion">svn</abbr><br/>Ontology.owl !! Comments | ||
Line 66: | Line 66: | ||
: Namespace "base" should be "tbase" --[[User:Andreas Plank|Andreas Plank]] 12:00, 23 November 2012 (CET) | : Namespace "base" should be "tbase" --[[User:Andreas Plank|Andreas Plank]] 12:00, 23 November 2012 (CET) | ||
: Namespace "tct" of OccurrenceStatusTerm in [http://rs.tdwg.org/ontology/voc/OccurrenceStatusTerm.rdf OccurrenceStatusTerm.rdf] is probably wrong --[[User:Andreas Plank|Andreas Plank]] 13:27, 23 November 2012 (CET) | : Namespace "tct" of OccurrenceStatusTerm in [http://rs.tdwg.org/ontology/voc/OccurrenceStatusTerm.rdf OccurrenceStatusTerm.rdf] is probably wrong --[[User:Andreas Plank|Andreas Plank]] 13:27, 23 November 2012 (CET) | ||
− | : According to [http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-decl declaration of namespaces] we could change all | + | : According to [http://www.w3.org/TR/1999/REC-xml-names-19990114/#ns-decl declaration of namespaces] we could change all defined namespaces by prefixing them with "ncd.". I made a proposal in column "[[#ncd. prefixes|ncd. prefixes]]" in the table below. For that I removed some "t…" prefixes and kept "t…" prefixes only where I thought it would be necessary --[[User:Andreas Plank|Andreas Plank]] 13:27, 23 November 2012 (CET) |
{| class="wikitable sortable vertical-align-top" | {| class="wikitable sortable vertical-align-top" | ||
Line 202: | Line 202: | ||
== Form links for creation of NCD concepts == | == Form links for creation of NCD concepts == | ||
+ | |||
+ | Formlinks are for testing. If data go to the right form field when clicking on a link, then they can be used. | ||
=== Generation script (Linux) === | === Generation script (Linux) === | ||
+ | |||
+ | {{Hidden | ||
+ | |contentstyle=border-left: 2px solid #ccc;padding:0ex 0.5em; | ||
+ | |toggle position=left | ||
+ | |header=bash script generateFormlinks4NCD.sh placed in the folder with all RDF files… | ||
+ | |content=<syntaxhighlight lang="bash"> | ||
+ | #!/bin/bash | ||
+ | ncdPrefixes=("ncd.base" "ncd.cd" "ncd.coll" "ncd.colltype" "ncd.com" | ||
+ | "ncd.core" "ncd.ct" "ncd.di" "ncd.gr" "ncd.inst" | ||
+ | "ncd.itype" "ncd.or" "ncd.ost" "ncd.p" "ncd.proc" | ||
+ | "ncd.pub" "ncd.sp" "ncd.spm" "ncd.spmi" "ncd.t" | ||
+ | "ncd.tc" "ncd.tn" "ncd.to" "ncd.trank" ) | ||
+ | # TODO unused: "TaxonOccurrenceInteraction.rdf" "TermWithSource.rdf" | ||
+ | ncdFiles=("Base.rdf" "ContactDetails.rdf" "Collection.rdf" "CollectionType.rdf" "Common.rdf" | ||
+ | "Core.rdf" "CyclicityTerm.rdf" "DigitalImage.rdf" "GeographicRegion.rdf" "Institution.rdf" | ||
+ | "InstitutionType.rdf" "OccurrenceRecord.rdf" "OccurrenceStatusTerm.rdf" "Person.rdf" "Procedure.rdf" | ||
+ | "PublicationCitation.rdf" "Specimen.rdf" "SpeciesProfileModel.rdf" "SPMInfoItems.rdf" "Team.rdf" | ||
+ | "TaxonConcept.rdf" "TaxonName.rdf" "TaxonOccurrence.rdf" "TaxonRank.rdf") | ||
+ | for (( i=0; i<${#ncdPrefixes[@]}; i++ ));do | ||
+ | fileName=${ncdFiles[$i]} | ||
+ | nsPrefix=${ncdPrefixes[$i]} | ||
+ | printf "%2d: %15s %s …" $((i + 1)) $nsPrefix $fileName | ||
+ | if [ -e $fileName ];then | ||
+ | if ! [ -d "./export" ];then | ||
+ | mkdir "./export" | ||
+ | fi | ||
+ | gawk --assign glob_coll_namespacePrefix="$nsPrefix" -f parseNCD.awk "${fileName%.*}.rdf" > "./export/${fileName%.*}.mwt" | ||
+ | printf " (OK)\n" | ||
+ | else | ||
+ | printf " (not existing)\n" | ||
+ | fi | ||
+ | done | ||
+ | </syntaxhighlight> | ||
+ | }} | ||
{{Hidden | {{Hidden | ||
|contentstyle=border-left: 2px solid #ccc;padding:0ex 0.5em; | |contentstyle=border-left: 2px solid #ccc;padding:0ex 0.5em; | ||
|toggle position=left | |toggle position=left | ||
− | |header=awk script for generating wikitext | + | |header=awk script parseNCD.awk for generating wikitext formlinks… |
|content=<syntaxhighlight lang="awk"> | |content=<syntaxhighlight lang="awk"> | ||
#!/bin/awk | #!/bin/awk | ||
Line 216: | Line 252: | ||
# TODO | # TODO | ||
+ | # 2012-12-05 18:13:45: glob_instanceOfClass als value mit rdfs:range innheralb des Klassennamens? | ||
# 2012-11-27 11:04:50 check instances of Classes if they are assigned to the right concept type or/and instance-relation (skos:Collection or skos:inScheme or vann:termGroup etc) | # 2012-11-27 11:04:50 check instances of Classes if they are assigned to the right concept type or/and instance-relation (skos:Collection or skos:inScheme or vann:termGroup etc) | ||
Line 225: | Line 262: | ||
# other RDF files in NCD scheme | # other RDF files in NCD scheme | ||
#---- Usage: save this file as NCD-Collection.awk and execute: | #---- Usage: save this file as NCD-Collection.awk and execute: | ||
− | # gawk -f NCD- | + | # fileName="ContactDetails"; gawk --assign glob_coll_namespacePrefix="ncd.cd" -f parseNCD.awk "NCD-$fileName.rdf" > "NCD-$fileName.mwt" |
########################################## | ########################################## | ||
Line 251: | Line 288: | ||
BEGIN { | BEGIN { | ||
FS ="\"" # field separator to quotation mark " (default is " ") | FS ="\"" # field separator to quotation mark " (default is " ") | ||
− | + | if(glob_coll_namespacePrefix=="") {glob_coll_namespacePrefix="ncd.missing"} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
}# BEGIN | }# BEGIN | ||
Line 274: | Line 306: | ||
firstAttributeValue=$2 | firstAttributeValue=$2 | ||
if (firstAttributeValue~/^#/) { | if (firstAttributeValue~/^#/) { | ||
− | firstAttributeValue=gensub(/^#/, | + | firstAttributeValue=gensub(/^#/, glob_coll_namespaceUriEncoded, "g", firstAttributeValue) |
} else { | } else { | ||
firstAttributeValue=gensub(/#/, "%23", "g", firstAttributeValue) | firstAttributeValue=gensub(/#/, "%23", "g", firstAttributeValue) | ||
Line 320: | Line 352: | ||
glob_rdfs_subClassOf = ""; | glob_rdfs_subClassOf = ""; | ||
glob_rdfs_subPropertyOf = ""; | glob_rdfs_subPropertyOf = ""; | ||
− | + | glob_instanceOfClass = ""; | |
}# emptyGlobalVariables | }# emptyGlobalVariables | ||
+ | function create_formLink_Concept_collection() { | ||
+ | print "* {{#formlink: form=Concept collection\n" \ | ||
+ | " |link text=" glob_coll_title " [[File:Pencil.png|link=]]\n" \ | ||
+ | " |target=" glob_coll_title "\n" \ | ||
+ | " |query string =<!--" | ||
+ | print "-->Concept collection[concept scheme]=Natural Collections Description<!--" | ||
+ | if (glob_coll_creators) {print "-->&Concept collection[creators]=" gensub(/ *\/ */, ", ", "g", glob_coll_creators) "<!--" } | ||
+ | if (glob_coll_description) {print "-->&Concept collection[description]=" glob_coll_description "<!--"} | ||
+ | if (glob_coll_notes) {print "-->&Concept collection[notes]=" glob_coll_notes "<!--"} | ||
+ | if (glob_coll_issued) {print "-->&Concept collection[issued]=" glob_coll_issued "<!--"} | ||
+ | if (glob_coll_modified) {print "-->&Concept collection[modified]=" glob_coll_modified "<!--"} | ||
+ | if (glob_coll_namespaceUriEncoded) {print "-->&Concept collection[preferred namespace uri]=<nowiki>" glob_coll_namespaceUriEncoded "</nowiki>" "<!--"} | ||
+ | if (glob_coll_namespacePrefix) {print "-->&Concept collection[preferred namespace prefix]=" glob_coll_namespacePrefix "<!--"} | ||
+ | print "-->}}\n----\n<!--" | ||
+ | } | ||
function create_formLink(conceptID, kindOfConceptComment, startNewOutputSection) { | function create_formLink(conceptID, kindOfConceptComment, startNewOutputSection) { | ||
# use global variables to generate the form link | # use global variables to generate the form link | ||
Line 328: | Line 375: | ||
#### start #### | #### start #### | ||
print ((startNewOutputSection == 0) ? "--> " : "-->\n*" ) \ | print ((startNewOutputSection == 0) ? "--> " : "-->\n*" ) \ | ||
− | " {{#formlink: form=Concept\n | link text = " \ | + | " {{#formlink: form=Concept\n | link text =" \ |
− | + | glob_coll_namespacePrefix ":" conceptID " [[File:Pencil.png|link=]]\n | target =" glob_coll_namespacePrefix ":" conceptID "\n | query string =<!--" kindOfConceptComment | |
if (glob_rdfs_Label) print "-->Concept[label]=" glob_rdfs_Label "<!--" | if (glob_rdfs_Label) print "-->Concept[label]=" glob_rdfs_Label "<!--" | ||
# append all other fields | # append all other fields | ||
Line 335: | Line 382: | ||
if (glob_conceptNotes) print "-->&Concept[notes]=" trim(glob_conceptNotes) "<!--" | if (glob_conceptNotes) print "-->&Concept[notes]=" trim(glob_conceptNotes) "<!--" | ||
if (glob_conceptType) print "-->&Concept[concept type]=" trim(glob_conceptType) "<!--" | if (glob_conceptType) print "-->&Concept[concept type]=" trim(glob_conceptType) "<!--" | ||
− | |||
− | |||
if (glob_rdfs_isDefinedBy) | if (glob_rdfs_isDefinedBy) | ||
print "-->&Concept[is defined by]=<nowiki>" trim(glob_rdfs_isDefinedBy) "</nowiki><!--" | print "-->&Concept[is defined by]=<nowiki>" trim(glob_rdfs_isDefinedBy) "</nowiki><!--" | ||
else | else | ||
− | print "-->&Concept[is defined by]=<nowiki>" | + | print "-->&Concept[is defined by]=<nowiki>" glob_coll_namespace_isDefinedBy "</nowiki><!--" |
#if (glob_conceptDomain || glob_conceptRange) | #if (glob_conceptDomain || glob_conceptRange) | ||
print "-->&Concept scheme relation[1][scheme]=Natural Collections Description<!--" | print "-->&Concept scheme relation[1][scheme]=Natural Collections Description<!--" | ||
+ | # if instance of class then restrict it to rdfs:domain | ||
+ | i_cr=1 # index concept relation | ||
+ | if (glob_instanceOfClass) glob_conceptDomain = glob_coll_namespaceUriEncoded glob_instanceOfClass | ||
if (glob_conceptDomain) print "-->&Concept scheme relation[1][property domain]=<nowiki>" trim(glob_conceptDomain) "</nowiki><!--" | if (glob_conceptDomain) print "-->&Concept scheme relation[1][property domain]=<nowiki>" trim(glob_conceptDomain) "</nowiki><!--" | ||
− | if (glob_conceptRange) print "-->&Concept scheme relation[1][property range]=<nowiki>" trim(glob_conceptRange) "</nowiki><!--" | + | if (glob_conceptRange) print "-->&Concept scheme relation[1][property range]=<nowiki>" trim(glob_conceptRange) "</nowiki><!--" |
− | if (glob_rdfs_subPropertyOf) print "-->&Concept relation[ | + | if (glob_rdfs_subPropertyOf) {print "-->&Concept relation[" i_cr "][relation]=rdfs: subproperty of<!--"} |
− | if (glob_rdfs_subPropertyOf) print "-->&Concept relation[ | + | if (glob_rdfs_subPropertyOf) {print "-->&Concept relation[" i_cr "][uri]=<nowiki>" trim(glob_rdfs_subPropertyOf) "</nowiki><!--" |
− | if (glob_rdfs_subClassOf) print "-->&Concept relation[ | + | i_cr=i_cr +1 |
− | if (glob_rdfs_subClassOf) print "-->&Concept relation[ | + | } |
− | if ( | + | |
− | if ( | + | if (glob_rdfs_subClassOf) {print "-->&Concept relation[" i_cr "][relation]=rdfs: subclass of<!--"} |
+ | if (glob_rdfs_subClassOf) {print "-->&Concept relation[" i_cr "][uri]=<nowiki>" trim(glob_rdfs_subClassOf) "</nowiki><!--" | ||
+ | i_cr=i_cr +1 | ||
+ | } | ||
+ | |||
+ | if (glob_coll_title) {print "-->&Concept relation[" i_cr "][relation]=skos: collection<!--"} | ||
+ | if (glob_coll_title) {print "-->&Concept relation[" i_cr "][internal page]=" glob_coll_title "<!--" | ||
+ | i_cr=i_cr +1 | ||
+ | } | ||
#### end #### | #### end #### | ||
− | print "-->}} | + | print "-->}} │<!--" |
emptyGlobalVariables() | emptyGlobalVariables() | ||
}# create_formLink | }# create_formLink | ||
####### functions end #################### | ####### functions end #################### | ||
+ | |||
+ | ########## Ontology (Collection) ################ | ||
+ | /.*<owl:Ontology/,/.*<\/owl:Ontology>/ { | ||
+ | if ($0~/<owl:Ontology/) { | ||
+ | glob_coll_namespace_isDefinedBy=$2 | ||
+ | glob_coll_namespaceUriEncoded=$2 "%23" | ||
+ | glob_coll_namespaceUri=$2 "#" | ||
+ | } | ||
+ | if ($0~/<dcterms:issued/) { glob_coll_issued=gensub(/.*([0-9]{4})-([0-9]{2})-([0-9]{2}).*/, "\\1%2F\\2%2F\\3", "g", get_xmlDataElement("*/owl:Ontology/dcterms:issued/text()")) } | ||
+ | if ($0~/<dcterms:modified/) { glob_coll_modified=gensub(/.*([0-9]{4})-([0-9]{2})-([0-9]{2}).*/, "\\1%2F\\2%2F\\3", "g", get_xmlDataElement("*/owl:Ontology/dcterms:modified/text()")) } | ||
+ | glob_coll_title = "NCD" gensub(/([A-Z])/, " \\1", "g", gensub(/(NCD-|\.rdf)/,"", "g", FILENAME)) | ||
+ | if ($0~/<dc:publisher/) {} | ||
+ | if ($0~/<dc:creator/) {glob_coll_creators=get_xmlDataElement("*/owl:Ontology/dc:creator/text()")} | ||
+ | if ($0~/<dc:description/) {glob_coll_description=get_xmlDataElement("*/owl:Ontology/dc:description/node()")} | ||
+ | if ($0~/<rdfs:comment/) {glob_coll_notes=get_xmlDataElement("*/owl:Ontology/rdfs:comment/node()")} | ||
+ | if ($0~/<\/owl:Ontology>/) { | ||
+ | create_formLink_Concept_collection() | ||
+ | } | ||
+ | } | ||
########## ObjectProperty ################ | ########## ObjectProperty ################ | ||
Line 450: | Line 525: | ||
if ($0~/.*<rdfs:comment/) glob_conceptNotes = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/rdfs:comment/node()") | if ($0~/.*<rdfs:comment/) glob_conceptNotes = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/rdfs:comment/node()") | ||
if ($0~/.*<dc:title/) { } # don't know yet what to do with it | if ($0~/.*<dc:title/) { } # don't know yet what to do with it | ||
+ | if ($0~/.*<base:definition/) glob_conceptDefinition = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/base:definition/node()") | ||
if ($0~/.*<tbase:definition/) glob_conceptDefinition = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/tbase:definition/node()") | if ($0~/.*<tbase:definition/) glob_conceptDefinition = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/tbase:definition/node()") | ||
if ($0~/.*<rdfs:subClassOf/) { glob_rdfs_subClassOf = get_attributeValueUrlEncoded() } | if ($0~/.*<rdfs:subClassOf/) { glob_rdfs_subClassOf = get_attributeValueUrlEncoded() } | ||
if ($0~/.*<rdf:type/) { glob_conceptType = get_conceptType(get_attributeValueUrlEncoded()) } | if ($0~/.*<rdf:type/) { glob_conceptType = get_conceptType(get_attributeValueUrlEncoded()) } | ||
− | # no glob_rdfs_subPropertyOf but a | + | # no glob_rdfs_subPropertyOf but a glob_instanceOfClass |
− | + | glob_instanceOfClass = classNameID | |
} | } | ||
if(index ($0, "</" classNameID ">") > 0) {# the | if(index ($0, "</" classNameID ">") > 0) {# the | ||
readingInstanceOfClass="" | readingInstanceOfClass="" | ||
− | print create_formLink(glob_conceptID, " | + | print create_formLink(glob_conceptID, "instance of class " classNameID); |
} | } | ||
} | } | ||
+ | |||
+ | # xml_grep --text_only "owl:Ontology/rdfs:comment" NCDTest-Collection.rdf | sed ':a;N;$!ba;s/\n\t\+//g; s@ *\t*\(.\+\) *\t*@\1@g' | ||
+ | # TODO properties in a class | ||
</syntaxhighlight> | </syntaxhighlight> | ||
}} | }} | ||
Line 466: | Line 545: | ||
=== [http://rs.tdwg.org/ontology/Base.rdf Base] === | === [http://rs.tdwg.org/ontology/Base.rdf Base] === | ||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Base [[File:Pencil.png|link=]] | ||
+ | |target=NCD Base | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Robert Gales, Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=The Base Ontology contains the highest level classes and attributes within the TDWG ontology which are typically not domain specific entities.<!-- | ||
+ | -->&Concept collection[notes]=This ontology has been demonstrated to be valid RDF of the OWL-Lite subset by the following online tool: http%3A%2F%2Fphoebus.cs.man.ac.uk%3A9999%2FOWL%2FValidator<!-- | ||
+ | -->&Concept collection[issued]=2006%2F05%2F26<!-- | ||
+ | -->&Concept collection[modified]=2007%2F09%2F10<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.base<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:BaseThing [[File:Pencil.png|link=]] | + | | link text =ncd.base:BaseThing [[File:Pencil.png|link=]] |
− | | target = ncd.base:BaseThing | + | | target =ncd.base:BaseThing |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Base Thing<!-- | -->Concept[label]=Base Thing<!-- | ||
-->&Concept[definition]=The BaseThing represents the root object within the TDWG ontology. All classes within the ontology should be a direct or indirect subclass of it. At this time there are no properties that are necessary to define on this object as they are covered by global annotation properties.<!-- | -->&Concept[definition]=The BaseThing represents the root object within the TDWG ontology. All classes within the ontology should be a direct or indirect subclass of it. At this time there are no properties that are necessary to define on this object as they are covered by global annotation properties.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:Actor [[File:Pencil.png|link=]] | + | | link text =ncd.base:Actor [[File:Pencil.png|link=]] |
− | | target = ncd.base:Actor | + | | target =ncd.base:Actor |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Actor<!-- | -->Concept[label]=Actor<!-- | ||
-->&Concept[definition]=The Base Actor represents any object that may perform an action. These may be people, organisations or software agents. Outside of the global properties that may be defined through Dublin Core or OWL Lite natively, no additional properties have been defined on this class.<!-- | -->&Concept[definition]=The Base Actor represents any object that may perform an action. These may be people, organisations or software agents. Outside of the global properties that may be defined through Dublin Core or OWL Lite natively, no additional properties have been defined on this class.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:Space [[File:Pencil.png|link=]] | + | | link text =ncd.base:Space [[File:Pencil.png|link=]] |
− | | target = ncd.base:Space | + | | target =ncd.base:Space |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Space<!-- | -->Concept[label]=Space<!-- | ||
-->&Concept[definition]=The Base Space class represents a 2d or 3d geometry for describing a space.<!-- | -->&Concept[definition]=The Base Space class represents a 2d or 3d geometry for describing a space.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:Name [[File:Pencil.png|link=]] | + | | link text =ncd.base:Name [[File:Pencil.png|link=]] |
− | | target = ncd.base:Name | + | | target =ncd.base:Name |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Name<!-- | -->Concept[label]=Name<!-- | ||
-->&Concept[definition]=The Base Name class represents the highest level base class for any representation of a name.<!-- | -->&Concept[definition]=The Base Name class represents the highest level base class for any representation of a name.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:DefinedTerm [[File:Pencil.png|link=]] | + | | link text =ncd.base:DefinedTerm [[File:Pencil.png|link=]] |
− | | target = ncd.base:DefinedTerm | + | | target =ncd.base:DefinedTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Defined Term<!-- | -->Concept[label]=Defined Term<!-- | ||
− | -->&Concept[definition]=The Base DefinedTerm represents a class for constructing controlled vocabularies of defined terminology. Known subclasses <nowiki>http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRank</nowiki> and | + | -->&Concept[definition]=The Base DefinedTerm represents a class for constructing controlled vocabularies of defined terminology. Known subclasses <nowiki>http://rs.tdwg.org/ontology/voc/TaxonRank#TaxonRank</nowiki> and http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTDMTerm%23TDMTerm<!-- |
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.base:definition [[File:Pencil.png|link=]] | + | | link text =ncd.base:definition [[File:Pencil.png|link=]] |
− | | target = ncd.base:definition | + | | target =ncd.base:definition |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Definition<!-- | -->Concept[label]=Definition<!-- | ||
-->&Concept[definition]=A definition of a defined term.<!-- | -->&Concept[definition]=A definition of a defined term.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Base<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.base:MediaObject [[File:Pencil.png|link=]] | + | | link text =ncd.base:MediaObject [[File:Pencil.png|link=]] |
− | | target = ncd.base:MediaObject | + | | target =ncd.base:MediaObject |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Media Object<!-- | -->Concept[label]=Media Object<!-- | ||
-->&Concept[definition]=The Base MediaObject represents a basic level of understanding for a multimedia object and may be extended to add additional properties.<!-- | -->&Concept[definition]=The Base MediaObject represents a basic level of understanding for a multimedia object and may be extended to add additional properties.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Base<!-- | ||
+ | -->}} │ | ||
=== [http://rs.tdwg.org/ontology/Core.rdf Core] === | === [http://rs.tdwg.org/ontology/Core.rdf Core] === | ||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Core [[File:Pencil.png|link=]] | ||
+ | |target=NCD Core | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Robert Gales, Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=The Core Ontology represents extension to the Base Ontology describing high level general concepts that may be extended to represent Biology & Biodiversity Informatics domain specific classes and properties.<!-- | ||
+ | -->&Concept collection[notes]=The Core Ontology represents extension to the Base Ontology describing high level general concepts that may be extended to represent Biology & Biodiversity Informatics domain specific classes and properties.<!-- | ||
+ | -->&Concept collection[issued]=2006-1-28<!-- | ||
+ | -->&Concept collection[modified]=2007%2F09%2F10<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.core<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:ContactInformation [[File:Pencil.png|link=]] | + | | link text =ncd.core:ContactInformation [[File:Pencil.png|link=]] |
− | | target = ncd.core:ContactInformation | + | | target =ncd.core:ContactInformation |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Contact Information<!-- | -->Concept[label]=Contact Information<!-- | ||
-->&Concept[definition]=A class representing the base for which any contact information should be extended. Contact information should describe some manner in which a person or software agent may contact a person or organisation.<!-- | -->&Concept[definition]=A class representing the base for which any contact information should be extended. Contact information should describe some manner in which a person or software agent may contact a person or organisation.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Organisation [[File:Pencil.png|link=]] | + | | link text =ncd.core:Organisation [[File:Pencil.png|link=]] |
− | | target = ncd.core:Organisation | + | | target =ncd.core:Organisation |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Core Organisation<!-- | -->Concept[label]=Core Organisation<!-- | ||
-->&Concept[definition]=An establishment, organization, or association, instituted for the promotion of some object, esp. one of public or general utility.<!-- | -->&Concept[definition]=An establishment, organization, or association, instituted for the promotion of some object, esp. one of public or general utility.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23Actor<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Collection [[File:Pencil.png|link=]] | + | | link text =ncd.core:Collection [[File:Pencil.png|link=]] |
− | | target = ncd.core:Collection | + | | target =ncd.core:Collection |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Collection<!-- | -->Concept[label]=Collection<!-- | ||
-->&Concept[definition]=A number of objects collected or gathered together, viewed as a whole, […] of scientific specimens, objects of interest, works of art, etc.[1]%0A%0A1. Oxford English Dictionary<!-- | -->&Concept[definition]=A number of objects collected or gathered together, viewed as a whole, […] of scientific specimens, objects of interest, works of art, etc.[1]%0A%0A1. Oxford English Dictionary<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Description [[File:Pencil.png|link=]] | + | | link text =ncd.core:Description [[File:Pencil.png|link=]] |
− | | target = ncd.core:Description | + | | target =ncd.core:Description |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Description<!-- | -->Concept[label]=Description<!-- | ||
-->&Concept[definition]=A Statement which describes, sets forth or portrays; a graphic or detailed account of a thing.[1]%0A%0A1. Oxford English Dictionary<!-- | -->&Concept[definition]=A Statement which describes, sets forth or portrays; a graphic or detailed account of a thing.[1]%0A%0A1. Oxford English Dictionary<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Geolocalisation [[File:Pencil.png|link=]] | + | | link text =ncd.core:Geolocalisation [[File:Pencil.png|link=]] |
− | | target = ncd.core:Geolocalisation | + | | target =ncd.core:Geolocalisation |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Core Geolocalisation<!-- | -->Concept[label]=Core Geolocalisation<!-- | ||
-->&Concept[definition]=An object that represents the artifact of a geolocalisation event, where a geolocalisation event is the identification of a specific place from only textual representations of the locality.<!-- | -->&Concept[definition]=An object that represents the artifact of a geolocalisation event, where a geolocalisation event is the identification of a specific place from only textual representations of the locality.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Person [[File:Pencil.png|link=]] | + | | link text =ncd.core:Person [[File:Pencil.png|link=]] |
− | | target = ncd.core:Person | + | | target =ncd.core:Person |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Person<!-- | -->Concept[label]=Person<!-- | ||
-->&Concept[definition]=An individual human being.[1]%0A%0A1. Oxford English Dictionary<!-- | -->&Concept[definition]=An individual human being.[1]%0A%0A1. Oxford English Dictionary<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseActor<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Place [[File:Pencil.png|link=]] | + | | link text =ncd.core:Place [[File:Pencil.png|link=]] |
− | | target = ncd.core:Place | + | | target =ncd.core:Place |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Place<!-- | -->Concept[label]=Place<!-- | ||
-->&Concept[definition]=A particular part of space of defined or undefined extent but of definite situation. [1]%0A%0A1. Oxford English Dictionary<!-- | -->&Concept[definition]=A particular part of space of defined or undefined extent but of definite situation. [1]%0A%0A1. Oxford English Dictionary<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:PublicationCitation [[File:Pencil.png|link=]] | + | | link text =ncd.core:PublicationCitation [[File:Pencil.png|link=]] |
− | | target = ncd.core:PublicationCitation | + | | target =ncd.core:PublicationCitation |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Publication Citation<!-- | -->Concept[label]=Publication Citation<!-- | ||
− | -->&Concept[definition]=A citation or bibliographic citation is a reference to a book, article, web page or other published item, with sufficient details to uniquely identify the item. [1]%0A%0A1. | + | -->&Concept[definition]=A citation or bibliographic citation is a reference to a book, article, web page or other published item, with sufficient details to uniquely identify the item. [1]%0A%0A1. http%3A%2F%2Fen.wikipedia.org%2Fwiki%2FCitation<!-- |
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Specimen [[File:Pencil.png|link=]] | + | | link text =ncd.core:Specimen [[File:Pencil.png|link=]] |
− | | target = ncd.core:Specimen | + | | target =ncd.core:Specimen |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Specimen<!-- | -->Concept[label]=Specimen<!-- | ||
-->&Concept[definition]=An animal, plant, or mineral, a part or portion of some substance or organism, etc., serving as an example of the thing in question for purposes of investigation or scientific study.[1]%0A%0A1. Oxford English Dictionary<!-- | -->&Concept[definition]=An animal, plant, or mineral, a part or portion of some substance or organism, etc., serving as an example of the thing in question for purposes of investigation or scientific study.[1]%0A%0A1. Oxford English Dictionary<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Concept [[File:Pencil.png|link=]] | + | | link text =ncd.core:Concept [[File:Pencil.png|link=]] |
− | | target = ncd.core:Concept | + | | target =ncd.core:Concept |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Concept<!-- | -->Concept[label]=Concept<!-- | ||
-->&Concept[definition]=an abstract or general idea inferred or derived from specific instances<!-- | -->&Concept[definition]=an abstract or general idea inferred or derived from specific instances<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Identification [[File:Pencil.png|link=]] | + | | link text =ncd.core:Identification [[File:Pencil.png|link=]] |
− | | target = ncd.core:Identification | + | | target =ncd.core:Identification |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Identification<!-- | -->Concept[label]=Identification<!-- | ||
-->&Concept[definition]=The identification of a specimen to a specific concept.<!-- | -->&Concept[definition]=The identification of a specimen to a specific concept.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Team [[File:Pencil.png|link=]] | + | | link text =ncd.core:Team [[File:Pencil.png|link=]] |
− | | target = ncd.core:Team | + | | target =ncd.core:Team |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Team<!-- | -->Concept[label]=Team<!-- | ||
-->&Concept[definition]=a group of people (CorePerson) linked in a common purpose[1]%0A%0A1. en.wikipedia.org<!-- | -->&Concept[definition]=a group of people (CorePerson) linked in a common purpose[1]%0A%0A1. en.wikipedia.org<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23Actor<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Observation [[File:Pencil.png|link=]] | + | | link text =ncd.core:Observation [[File:Pencil.png|link=]] |
− | | target = ncd.core:Observation | + | | target =ncd.core:Observation |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Observation<!-- | -->Concept[label]=Observation<!-- | ||
-->&Concept[definition]=A record of the observation of some concept at a particular location and time.<!-- | -->&Concept[definition]=A record of the observation of some concept at a particular location and time.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.core:Gathering [[File:Pencil.png|link=]] | + | | link text =ncd.core:Gathering [[File:Pencil.png|link=]] |
− | | target = ncd.core:Gathering | + | | target =ncd.core:Gathering |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Gathering<!-- | -->Concept[label]=Gathering<!-- | ||
-->&Concept[definition]=A record of the event of gathering specimens at a particular location over a specific time period.<!-- | -->&Concept[definition]=A record of the event of gathering specimens at a particular location over a specific time period.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Core<!-- | ||
+ | -->}} │ | ||
=== [http://rs.tdwg.org/ontology/voc/Collection.rdf Collection] === | === [http://rs.tdwg.org/ontology/voc/Collection.rdf Collection] === | ||
− | + | {{#formlink: form=Concept collection | |
+ | |link text=NCD Collection [[File:Pencil.png|link=]] | ||
+ | |target=NCD Collection | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Markus Döring, Constance Rinaldo<!-- | ||
+ | -->&Concept collection[description]=Ontology describing the metadata returned for LSIDs that are used for natural collections records. i.e. curated groups of specimens.<!-- | ||
+ | -->&Concept collection[notes]=The ontology is based on the NCD XML schema version 0.70 developed by TDWG, but taken forward in development, especially the controlled vocabulary. In some cases property names were changed, but in general all names have remained and were simple adapted to lowerCamelCase. Properties based on NCD element names starting with "Collection" have usually lost their Collection prefix. Cardinalities and multiple languages have not been adressed in particular. DublinCore is expected to be used for the digital record properties and at the same time also for the physical collection description. The expected DC properties are: Digital record: dc:source , dc:identifier , dct:created , dct:creator , dct:modified , dct:contributor , tdwg:notes Physical Collection: dc:title , dc:alternative_title , dc:description , dct:extent , tcom:note , dc:format , dc:medium , dc:accessRights , dc:rights , dc:provenance , dc:relation<!-- | ||
+ | -->&Concept collection[issued]=2007%2F03%2F05<!-- | ||
+ | -->&Concept collection[modified]=2007%2F09%2F24<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.coll<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Collection [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Collection [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Collection | + | | target =ncd.coll:Collection |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Collection<!-- | -->Concept[label]=Collection<!-- | ||
-->&Concept[definition]=A group of specimens or other objects about natural history. This class represents actual collections. For derived collections please use the DerivedCollection subclass.<!-- | -->&Concept[definition]=A group of specimens or other objects about natural history. This class represents actual collections. For derived collections please use the DerivedCollection subclass.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FCore%23Collection<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:DerivedCollection [[File:Pencil.png|link=]] | + | | link text =ncd.coll:DerivedCollection [[File:Pencil.png|link=]] |
− | | target = ncd.coll:DerivedCollection | + | | target =ncd.coll:DerivedCollection |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Derived collection<!-- | -->Concept[label]=Derived collection<!-- | ||
-->&Concept[definition]=A "derived" collection record. The record has been derived from a query on an item-level database e.g. all items from Australia.<!-- | -->&Concept[definition]=A "derived" collection record. The record has been derived from a query on an item-level database e.g. all items from Australia.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:collectionId [[File:Pencil.png|link=]] | + | | link text =ncd.coll:collectionId [[File:Pencil.png|link=]] |
− | | target = ncd.coll:collectionId | + | | target =ncd.coll:collectionId |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Collection Identifier<!-- | -->Concept[label]=Collection Identifier<!-- | ||
-->&Concept[definition]=The URI (LSID or URL) of the the collection. In RDF this will be used as URI of the collection resource.<!-- | -->&Concept[definition]=The URI (LSID or URL) of the the collection. In RDF this will be used as URI of the collection resource.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:isPartOfCollection [[File:Pencil.png|link=]] | + | | link text =ncd.coll:isPartOfCollection [[File:Pencil.png|link=]] |
− | | target = ncd.coll:isPartOfCollection | + | | target =ncd.coll:isPartOfCollection |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Parent Collection Identifier<!-- | -->Concept[label]=Parent Collection Identifier<!-- | ||
-->&Concept[definition]=Identifier for the parent collection for this sub-collection. Enables a hierarchy of collections and sub collections to be built.<!-- | -->&Concept[definition]=Identifier for the parent collection for this sub-collection. Enables a hierarchy of collections and sub collections to be built.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:alternativeId [[File:Pencil.png|link=]] | + | | link text =ncd.coll:alternativeId [[File:Pencil.png|link=]] |
− | | target = ncd.coll:alternativeId | + | | target =ncd.coll:alternativeId |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Alternative Identifier<!-- | -->Concept[label]=Alternative Identifier<!-- | ||
-->&Concept[definition]=Alternative identifier for the collection with an indication of the source e.g. ISCW.<!-- | -->&Concept[definition]=Alternative identifier for the collection with an indication of the source e.g. ISCW.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:descriptionForSpecialists [[File:Pencil.png|link=]] | + | | link text =ncd.coll:descriptionForSpecialists [[File:Pencil.png|link=]] |
− | | target = ncd.coll:descriptionForSpecialists | + | | target =ncd.coll:descriptionForSpecialists |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Description for Specialists<!-- | -->Concept[label]=Description for Specialists<!-- | ||
-->&Concept[definition]=Optional additional descriptive text using terms that are more suited to a specialist audience. Attribute indicates the language of the text.<!-- | -->&Concept[definition]=Optional additional descriptive text using terms that are more suited to a specialist audience. Attribute indicates the language of the text.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:collectionExtent [[File:Pencil.png|link=]] | + | | link text =ncd.coll:collectionExtent [[File:Pencil.png|link=]] |
− | | target = ncd.coll:collectionExtent | + | | target =ncd.coll:collectionExtent |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Extent<!-- | -->Concept[label]=Extent<!-- | ||
-->&Concept[definition]=An indication of the size or extent of the collection.<!-- | -->&Concept[definition]=An indication of the size or extent of the collection.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:knownToContainTypes [[File:Pencil.png|link=]] | + | | link text =ncd.coll:knownToContainTypes [[File:Pencil.png|link=]] |
− | | target = ncd.coll:knownToContainTypes | + | | target =ncd.coll:knownToContainTypes |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Known to Contain Types<!-- | -->Concept[label]=Known to Contain Types<!-- | ||
-->&Concept[definition]=Flag element to indicate that the collection is known to include type specimens.<!-- | -->&Concept[definition]=Flag element to indicate that the collection is known to include type specimens.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23boolean<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:primaryGroupingPrinciple [[File:Pencil.png|link=]] | + | | link text =ncd.coll:primaryGroupingPrinciple [[File:Pencil.png|link=]] |
− | | target = ncd.coll:primaryGroupingPrinciple | + | | target =ncd.coll:primaryGroupingPrinciple |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Primary Grouping Principle<!-- | -->Concept[label]=Primary Grouping Principle<!-- | ||
-->&Concept[definition]=Picklist keyword to indicate what the collection is about. The intellectual basis for grouping the collection rather than grouping based on physical characteristics. Expected to contain an instance from the Primary Grouping Principle Type Term vocabulary.<!-- | -->&Concept[definition]=Picklist keyword to indicate what the collection is about. The intellectual basis for grouping the collection rather than grouping based on physical characteristics. Expected to contain an instance from the Primary Grouping Principle Type Term vocabulary.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:primaryPurpose [[File:Pencil.png|link=]] | + | | link text =ncd.coll:primaryPurpose [[File:Pencil.png|link=]] |
− | | target = ncd.coll:primaryPurpose | + | | target =ncd.coll:primaryPurpose |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Primary purpose<!-- | -->Concept[label]=Primary purpose<!-- | ||
-->&Concept[definition]=Picklist key word to indicate the primary reason that the collection was assembled. Expected to contain an instance of the Primary Purpose Type Term.<!-- | -->&Concept[definition]=Picklist key word to indicate the primary reason that the collection was assembled. Expected to contain an instance of the Primary Purpose Type Term.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:citeAs [[File:Pencil.png|link=]] | + | | link text =ncd.coll:citeAs [[File:Pencil.png|link=]] |
− | | target = ncd.coll:citeAs | + | | target =ncd.coll:citeAs |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Collection citation<!-- | -->Concept[label]=Collection citation<!-- | ||
-->&Concept[definition]=Preferred text for citing the collection, which may include sponsorship acknowledgements<!-- | -->&Concept[definition]=Preferred text for citing the collection, which may include sponsorship acknowledgements<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:formationPeriod [[File:Pencil.png|link=]] | + | | link text =ncd.coll:formationPeriod [[File:Pencil.png|link=]] |
− | | target = ncd.coll:formationPeriod | + | | target =ncd.coll:formationPeriod |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Formation Period<!-- | -->Concept[label]=Formation Period<!-- | ||
-->&Concept[definition]=Text description of the time period during which the collection was assembled e.g. "Victorian", or "1922 - 1932", or "c. 1750".<!-- | -->&Concept[definition]=Text description of the time period during which the collection was assembled e.g. "Victorian", or "1922 - 1932", or "c. 1750".<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:developmentStatus [[File:Pencil.png|link=]] | + | | link text =ncd.coll:developmentStatus [[File:Pencil.png|link=]] |
− | | target = ncd.coll:developmentStatus | + | | target =ncd.coll:developmentStatus |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Development Status<!-- | -->Concept[label]=Development Status<!-- | ||
-->&Concept[definition]=Picklist keyword indicating potential for change to the scope of the collection. Expected to contain instances from the Development Status Type Term vocabulary.<!-- | -->&Concept[definition]=Picklist keyword indicating potential for change to the scope of the collection. Expected to contain instances from the Development Status Type Term vocabulary.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:conservationStatus [[File:Pencil.png|link=]] | + | | link text =ncd.coll:conservationStatus [[File:Pencil.png|link=]] |
− | | target = ncd.coll:conservationStatus | + | | target =ncd.coll:conservationStatus |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Conservation Status<!-- | -->Concept[label]=Conservation Status<!-- | ||
-->&Concept[definition]=Picklist keyword indicating the conservation status of the collection using the McGinley scale. Link to the date of assessment and repeat to show sequence of snapshots. Expected to contain an instance from the Conservation Status Type Term vocabulary<!-- | -->&Concept[definition]=Picklist keyword indicating the conservation status of the collection using the McGinley scale. Link to the date of assessment and repeat to show sequence of snapshots. Expected to contain an instance from the Conservation Status Type Term vocabulary<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:conservationStatusDate [[File:Pencil.png|link=]] | + | | link text =ncd.coll:conservationStatusDate [[File:Pencil.png|link=]] |
− | | target = ncd.coll:conservationStatusDate | + | | target =ncd.coll:conservationStatusDate |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Conservation Status Date<!-- | -->Concept[label]=Conservation Status Date<!-- | ||
-->&Concept[definition]=The date that the conservation status was assessed.<!-- | -->&Concept[definition]=The date that the conservation status was assessed.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23date<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:usageRestrictions [[File:Pencil.png|link=]] | + | | link text =ncd.coll:usageRestrictions [[File:Pencil.png|link=]] |
− | | target = ncd.coll:usageRestrictions | + | | target =ncd.coll:usageRestrictions |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Usage Conditions<!-- | -->Concept[label]=Usage Conditions<!-- | ||
-->&Concept[definition]=Terms and conditions under which the collection may be used. May be a URL to standard T&C. Default text for an institution may be overwritten for a particular collection if the restrictions are different.<!-- | -->&Concept[definition]=Terms and conditions under which the collection may be used. May be a URL to standard T&C. Default text for an institution may be overwritten for a particular collection if the restrictions are different.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:hasContact [[File:Pencil.png|link=]] | + | | link text =ncd.coll:hasContact [[File:Pencil.png|link=]] |
− | | target = ncd.coll:hasContact | + | | target =ncd.coll:hasContact |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Contact<!-- | -->Concept[label]=Contact<!-- | ||
-->&Concept[definition]=Link to the contact details (such as postal address, email address and phone number) to get more information about this collection.<!-- | -->&Concept[definition]=Link to the contact details (such as postal address, email address and phone number) to get more information about this collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:hasOwner [[File:Pencil.png|link=]] | + | | link text =ncd.coll:hasOwner [[File:Pencil.png|link=]] |
− | | target = ncd.coll:hasOwner | + | | target =ncd.coll:hasOwner |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Owner<!-- | -->Concept[label]=Owner<!-- | ||
-->&Concept[definition]=Link to the details for the institution or person that owns this collection.<!-- | -->&Concept[definition]=Link to the details for the institution or person that owns this collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FPerson%23Person<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:physicalLocation [[File:Pencil.png|link=]] | + | | link text =ncd.coll:physicalLocation [[File:Pencil.png|link=]] |
− | | target = ncd.coll:physicalLocation | + | | target =ncd.coll:physicalLocation |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Physical Location<!-- | -->Concept[label]=Physical Location<!-- | ||
-->&Concept[definition]=Link to the contact details for the host institution, or person for a private collection.<!-- | -->&Concept[definition]=Link to the contact details for the host institution, or person for a private collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FPerson%23Person<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:kingdomCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:kingdomCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:kingdomCoverage | + | | target =ncd.coll:kingdomCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Kingdom Coverage<!-- | -->Concept[label]=Kingdom Coverage<!-- | ||
-->&Concept[definition]=Picklist keyword to indicate biological kingdom.<!-- | -->&Concept[definition]=Picklist keyword to indicate biological kingdom.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:taxonCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:taxonCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:taxonCoverage | + | | target =ncd.coll:taxonCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Taxon Coverage<!-- | -->Concept[label]=Taxon Coverage<!-- | ||
-->&Concept[definition]=Taxon or taxa in the collection at Family level or higher.<!-- | -->&Concept[definition]=Taxon or taxa in the collection at Family level or higher.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:temporalCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:temporalCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:temporalCoverage | + | | target =ncd.coll:temporalCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Temporal Coverage<!-- | -->Concept[label]=Temporal Coverage<!-- | ||
-->&Concept[definition]=Time period covered by the materials in the collection.<!-- | -->&Concept[definition]=Time period covered by the materials in the collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:taxonCoverageStrength [[File:Pencil.png|link=]] | + | | link text =ncd.coll:taxonCoverageStrength [[File:Pencil.png|link=]] |
− | | target = ncd.coll:taxonCoverageStrength | + | | target =ncd.coll:taxonCoverageStrength |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Taxon coverage strength<!-- | -->Concept[label]=Taxon coverage strength<!-- | ||
-->&Concept[definition]=Taxon or taxa in the collection at Family level or higher which are considered a particular strength of the collection.<!-- | -->&Concept[definition]=Taxon or taxa in the collection at Family level or higher which are considered a particular strength of the collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subproperty of<!-- | -->&Concept relation[1][relation]=rdfs: subproperty of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23taxonCoverage<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:commonNameCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:commonNameCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:commonNameCoverage | + | | target =ncd.coll:commonNameCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Common Name Coverage<!-- | -->Concept[label]=Common Name Coverage<!-- | ||
-->&Concept[definition]=Common names or group names equivalent to the taxon names, in the local language.<!-- | -->&Concept[definition]=Common names or group names equivalent to the taxon names, in the local language.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:commonNameCoverageStrength [[File:Pencil.png|link=]] | + | | link text =ncd.coll:commonNameCoverageStrength [[File:Pencil.png|link=]] |
− | | target = ncd.coll:commonNameCoverageStrength | + | | target =ncd.coll:commonNameCoverageStrength |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Common name coverage strength<!-- | -->Concept[label]=Common name coverage strength<!-- | ||
-->&Concept[definition]=Common names or group names which are considered a particular strength of the collection.<!-- | -->&Concept[definition]=Common names or group names which are considered a particular strength of the collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subproperty of<!-- | -->&Concept relation[1][relation]=rdfs: subproperty of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23commonNameCoverage<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:geospatialCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:geospatialCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:geospatialCoverage | + | | target =ncd.coll:geospatialCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Place Name Coverage<!-- | -->Concept[label]=Place Name Coverage<!-- | ||
-->&Concept[definition]=Place names from which material in the collection originated.<!-- | -->&Concept[definition]=Place names from which material in the collection originated.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:geospatialCoverageStrength [[File:Pencil.png|link=]] | + | | link text =ncd.coll:geospatialCoverageStrength [[File:Pencil.png|link=]] |
− | | target = ncd.coll:geospatialCoverageStrength | + | | target =ncd.coll:geospatialCoverageStrength |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Geospatial coverage strength<!-- | -->Concept[label]=Geospatial coverage strength<!-- | ||
-->&Concept[definition]=Place names and/or coordinates indicating the place(s) from which material in the collection originated, which are considered a particular strength of the collection.<!-- | -->&Concept[definition]=Place names and/or coordinates indicating the place(s) from which material in the collection originated, which are considered a particular strength of the collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subproperty of<!-- | -->&Concept relation[1][relation]=rdfs: subproperty of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23geospatialCoverage<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:geospatialCoordinates [[File:Pencil.png|link=]] | + | | link text =ncd.coll:geospatialCoordinates [[File:Pencil.png|link=]] |
− | | target = ncd.coll:geospatialCoordinates | + | | target =ncd.coll:geospatialCoordinates |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Geospatial Coordinates<!-- | -->Concept[label]=Geospatial Coordinates<!-- | ||
-->&Concept[definition]=Decimal latitude(s) and longitude(s) of places of origin of the material in the collection.<!-- | -->&Concept[definition]=Decimal latitude(s) and longitude(s) of places of origin of the material in the collection.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:livingTimePeriodCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:livingTimePeriodCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:livingTimePeriodCoverage | + | | target =ncd.coll:livingTimePeriodCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Living time period coverage<!-- | -->Concept[label]=Living time period coverage<!-- | ||
-->&Concept[definition]=Time period during which biological material was alive. Includes palaeontological time periods or other text phrases.<!-- | -->&Concept[definition]=Time period during which biological material was alive. Includes palaeontological time periods or other text phrases.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:livingTimePeriodCoverageStrength [[File:Pencil.png|link=]] | + | | link text =ncd.coll:livingTimePeriodCoverageStrength [[File:Pencil.png|link=]] |
− | | target = ncd.coll:livingTimePeriodCoverageStrength | + | | target =ncd.coll:livingTimePeriodCoverageStrength |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Living Time Period<!-- | -->Concept[label]=Living Time Period<!-- | ||
-->&Concept[definition]=Time period during which biological material was alive. Includes palaeontological time periods or other text phrases.<!-- | -->&Concept[definition]=Time period during which biological material was alive. Includes palaeontological time periods or other text phrases.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subproperty of<!-- | -->&Concept relation[1][relation]=rdfs: subproperty of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23livingTimePeriodCoverage<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:collectionType [[File:Pencil.png|link=]] | + | | link text =ncd.coll:collectionType [[File:Pencil.png|link=]] |
− | | target = ncd.coll:collectionType | + | | target =ncd.coll:collectionType |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Collection Type<!-- | -->Concept[label]=Collection Type<!-- | ||
-->&Concept[definition]=Picklist keyword to indicate the typical content or unifying characteristic of the collection. Expected to contain an instance for the Collection Type Term vocabulary.<!-- | -->&Concept[definition]=Picklist keyword to indicate the typical content or unifying characteristic of the collection. Expected to contain an instance for the Collection Type Term vocabulary.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:specimenPreservationMethod [[File:Pencil.png|link=]] | + | | link text =ncd.coll:specimenPreservationMethod [[File:Pencil.png|link=]] |
− | | target = ncd.coll:specimenPreservationMethod | + | | target =ncd.coll:specimenPreservationMethod |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Specimen Preservation Method<!-- | -->Concept[label]=Specimen Preservation Method<!-- | ||
-->&Concept[definition]=Picklist keyword indicating the process or technique used to prevent physical deterioration of non-living collections. Expected to contain an instance from the Specimen Preservation Method Type Term vocabulary.<!-- | -->&Concept[definition]=Picklist keyword indicating the process or technique used to prevent physical deterioration of non-living collections. Expected to contain an instance from the Specimen Preservation Method Type Term vocabulary.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:expeditionNameCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:expeditionNameCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:expeditionNameCoverage | + | | target =ncd.coll:expeditionNameCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Expedition Name<!-- | -->Concept[label]=Expedition Name<!-- | ||
-->&Concept[definition]=Uniform name for an expedition or voyage of discovery during which the material was collected.<!-- | -->&Concept[definition]=Uniform name for an expedition or voyage of discovery during which the material was collected.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:collectorNameCoverage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:collectorNameCoverage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:collectorNameCoverage | + | | target =ncd.coll:collectorNameCoverage |
− | | query string =<!-- ObjectProperty | + | | query string =<!--ObjectProperty |
-->Concept[label]=Collector name coverage<!-- | -->Concept[label]=Collector name coverage<!-- | ||
-->&Concept[definition]=Name(s) of collector(s) of the material within the collection.<!-- | -->&Concept[definition]=Name(s) of collector(s) of the material within the collection.<!-- | ||
-->&Concept[concept type]=property<!-- | -->&Concept[concept type]=property<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FTermWithSource<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:relatedCollection [[File:Pencil.png|link=]] | + | | link text =ncd.coll:relatedCollection [[File:Pencil.png|link=]] |
− | | target = ncd.coll:relatedCollection | + | | target =ncd.coll:relatedCollection |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Related Collection<!-- | -->Concept[label]=Related Collection<!-- | ||
-->&Concept[definition]=Short descriptions of related collections, such as for other components of a large collection that has been dispersed.<!-- | -->&Concept[definition]=Short descriptions of related collections, such as for other components of a large collection that has been dispersed.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:itemLevelAccess [[File:Pencil.png|link=]] | + | | link text =ncd.coll:itemLevelAccess [[File:Pencil.png|link=]] |
− | | target = ncd.coll:itemLevelAccess | + | | target =ncd.coll:itemLevelAccess |
− | | query string =<!-- DatatypeProperty | + | | query string =<!--DatatypeProperty |
-->Concept[label]=Item-Level Access<!-- | -->Concept[label]=Item-Level Access<!-- | ||
-->&Concept[definition]=URI of an item-level data source. This can be a Web service or a Webpage designed for humans.<!-- | -->&Concept[definition]=URI of an item-level data source. This can be a Web service or a Webpage designed for humans.<!-- | ||
-->&Concept[concept type]=data type<!-- | -->&Concept[concept type]=data type<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
− | -->&Concept scheme relation[1][property domain]= | + | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23Collection<!-- |
− | -->&Concept scheme relation[1][property range]= | + | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23anyURI<!-- |
− | -->}} | + | -->&Concept relation[1][relation]=skos: collection<!-- |
+ | -->&Concept relation[1][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:DevelopmentStatusTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:DevelopmentStatusTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:DevelopmentStatusTypeTerm | + | | target =ncd.coll:DevelopmentStatusTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Development Status Term<!-- | -->Concept[label]=Development Status Term<!-- | ||
-->&Concept[definition]=Controlled vocabulary for development status.<!-- | -->&Concept[definition]=Controlled vocabulary for development status.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:activegrowth [[File:Pencil.png|link=]] | + | | link text =ncd.coll:activegrowth [[File:Pencil.png|link=]] |
− | | target = ncd.coll:activegrowth | + | | target =ncd.coll:activegrowth |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=active growth<!-- | -->Concept[label]=active growth<!-- | ||
-->&Concept[definition]=Currently increasing in volume, count, number of taxa represented or other dimension due to intentional activity.<!-- | -->&Concept[definition]=Currently increasing in volume, count, number of taxa represented or other dimension due to intentional activity.<!-- | ||
-->&Concept[notes]=Material is being actively sought for this collection<!-- | -->&Concept[notes]=Material is being actively sought for this collection<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:passivegrowth [[File:Pencil.png|link=]] | + | | link text =ncd.coll:passivegrowth [[File:Pencil.png|link=]] |
− | | target = ncd.coll:passivegrowth | + | | target =ncd.coll:passivegrowth |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=passive growth<!-- | -->Concept[label]=passive growth<!-- | ||
− | -->&Concept[definition]=May increase in volume, count, number of taxa represented or other dimension due to unplanned and | + | -->&Concept[definition]=May increase in volume, count, number of taxa represented or other dimension due to unplanned and unpredicatable activity.<!-- |
-->&Concept[notes]=Material is being added to this collection but not actively sought<!-- | -->&Concept[notes]=Material is being added to this collection but not actively sought<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:consumable [[File:Pencil.png|link=]] | + | | link text =ncd.coll:consumable [[File:Pencil.png|link=]] |
− | | target = ncd.coll:consumable | + | | target =ncd.coll:consumable |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=available for sampling<!-- | -->Concept[label]=available for sampling<!-- | ||
-->&Concept[definition]=Collection may or will be decreasing in volume, count, representation or other dimension due to intentional destructive analytical activity.<!-- | -->&Concept[definition]=Collection may or will be decreasing in volume, count, representation or other dimension due to intentional destructive analytical activity.<!-- | ||
-->&Concept[notes]=Material in this collection may be sampled<!-- | -->&Concept[notes]=Material in this collection may be sampled<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:static [[File:Pencil.png|link=]] | + | | link text =ncd.coll:static [[File:Pencil.png|link=]] |
− | | target = ncd.coll:static | + | | target =ncd.coll:static |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=static<!-- | -->Concept[label]=static<!-- | ||
-->&Concept[definition]=The collection cannot or will not increase or decrease in any manner.<!-- | -->&Concept[definition]=The collection cannot or will not increase or decrease in any manner.<!-- | ||
-->&Concept[notes]=The collection is neither growing nor decreasing<!-- | -->&Concept[notes]=The collection is neither growing nor decreasing<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:decreasing [[File:Pencil.png|link=]] | + | | link text =ncd.coll:decreasing [[File:Pencil.png|link=]] |
− | | target = ncd.coll:decreasing | + | | target =ncd.coll:decreasing |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=decreasing<!-- | -->Concept[label]=decreasing<!-- | ||
-->&Concept[definition]=The collection is currently diminishing in volume, count, number of taxa represented, or other dimension due to intentional activity.<!-- | -->&Concept[definition]=The collection is currently diminishing in volume, count, number of taxa represented, or other dimension due to intentional activity.<!-- | ||
− | -->&Concept[notes]=The collection is growing smaller as material is | + | -->&Concept[notes]=The collection is growing smaller as material is withrawn<!-- |
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:closed [[File:Pencil.png|link=]] | + | | link text =ncd.coll:closed [[File:Pencil.png|link=]] |
− | | target = ncd.coll:closed | + | | target =ncd.coll:closed |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=closed<!-- | -->Concept[label]=closed<!-- | ||
-->&Concept[definition]=The collection is currently closed to acquisitions or deposits.<!-- | -->&Concept[definition]=The collection is currently closed to acquisitions or deposits.<!-- | ||
-->&Concept[notes]=No further objects will be added<!-- | -->&Concept[notes]=No further objects will be added<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:lost [[File:Pencil.png|link=]] | + | | link text =ncd.coll:lost [[File:Pencil.png|link=]] |
− | | target = ncd.coll:lost | + | | target =ncd.coll:lost |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=lost<!-- | -->Concept[label]=lost<!-- | ||
− | -->&Concept[definition]=The host institution has concluded that collection is permanently unavailable after appropriate efforts have been made although documentation of | + | -->&Concept[definition]=The host institution has concluded that collection is permanently unavailable after appropriate efforts have been made although documentation of the collection exists.<!-- |
-->&Concept[notes]=Collection has been lost, for example destroyed in a fire<!-- | -->&Concept[notes]=Collection has been lost, for example destroyed in a fire<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:missing [[File:Pencil.png|link=]] | + | | link text =ncd.coll:missing [[File:Pencil.png|link=]] |
− | | target = ncd.coll:missing | + | | target =ncd.coll:missing |
− | | query string =<!-- | + | | query string =<!--instance of class DevelopmentStatusTypeTerm |
-->Concept[label]=missing<!-- | -->Concept[label]=missing<!-- | ||
-->&Concept[definition]=The physical collection cannot be located although its documentation exists; the possibility of finding the collection exists.<!-- | -->&Concept[definition]=The physical collection cannot be located although its documentation exists; the possibility of finding the collection exists.<!-- | ||
-->&Concept[notes]=Collection cannot be found.<!-- | -->&Concept[notes]=Collection cannot be found.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23DevelopmentStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:SpecimenPreservationMethodTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:SpecimenPreservationMethodTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:SpecimenPreservationMethodTypeTerm | + | | target =ncd.coll:SpecimenPreservationMethodTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Institution Type Term<!-- | -->Concept[label]=Institution Type Term<!-- | ||
-->&Concept[definition]=Process or technique used to prevent physical deterioration of non-living collections.<!-- | -->&Concept[definition]=Process or technique used to prevent physical deterioration of non-living collections.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:noTreatment [[File:Pencil.png|link=]] | + | | link text =ncd.coll:noTreatment [[File:Pencil.png|link=]] |
− | | target = ncd.coll:noTreatment | + | | target =ncd.coll:noTreatment |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=no treatment<!-- | -->Concept[label]=no treatment<!-- | ||
-->&Concept[definition]=Absence of any deliberate preservation action.<!-- | -->&Concept[definition]=Absence of any deliberate preservation action.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:notApplicable [[File:Pencil.png|link=]] | + | | link text =ncd.coll:notApplicable [[File:Pencil.png|link=]] |
− | | target = ncd.coll:notApplicable | + | | target =ncd.coll:notApplicable |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Not Applicable<!-- | -->Concept[label]=Not Applicable<!-- | ||
-->&Concept[definition]=For living collections that grow and reproduce.<!-- | -->&Concept[definition]=For living collections that grow and reproduce.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:fluidPreserved [[File:Pencil.png|link=]] | + | | link text =ncd.coll:fluidPreserved [[File:Pencil.png|link=]] |
− | | target = ncd.coll:fluidPreserved | + | | target =ncd.coll:fluidPreserved |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Fluid-preserved<!-- | -->Concept[label]=Fluid-preserved<!-- | ||
-->&Concept[definition]=Maintained in formalin, ethyl alcohol, or other liquid preservative.<!-- | -->&Concept[definition]=Maintained in formalin, ethyl alcohol, or other liquid preservative.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:frozen [[File:Pencil.png|link=]] | + | | link text =ncd.coll:frozen [[File:Pencil.png|link=]] |
− | | target = ncd.coll:frozen | + | | target =ncd.coll:frozen |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=frozen<!-- | -->Concept[label]=frozen<!-- | ||
-->&Concept[definition]=Held a temperatures below freezing (32 Degrees F or 0 degrees C).<!-- | -->&Concept[definition]=Held a temperatures below freezing (32 Degrees F or 0 degrees C).<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:dried [[File:Pencil.png|link=]] | + | | link text =ncd.coll:dried [[File:Pencil.png|link=]] |
− | | target = ncd.coll:dried | + | | target =ncd.coll:dried |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=dried<!-- | -->Concept[label]=dried<!-- | ||
− | -->&Concept[definition]=Treated or exposed to remove all internal fluids; may have used | + | -->&Concept[definition]=Treated or exposed to remove all internal fluids; may have used silica gel.<!-- |
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:driedAndPressed [[File:Pencil.png|link=]] | + | | link text =ncd.coll:driedAndPressed [[File:Pencil.png|link=]] |
− | | target = ncd.coll:driedAndPressed | + | | target =ncd.coll:driedAndPressed |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=dried and pressed<!-- | -->Concept[label]=dried and pressed<!-- | ||
-->&Concept[definition]=Treated to remove all internal fluids; flattened, typically mounted on paper.<!-- | -->&Concept[definition]=Treated to remove all internal fluids; flattened, typically mounted on paper.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:tanned [[File:Pencil.png|link=]] | + | | link text =ncd.coll:tanned [[File:Pencil.png|link=]] |
− | | target = ncd.coll:tanned | + | | target =ncd.coll:tanned |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=tanned<!-- | -->Concept[label]=tanned<!-- | ||
-->&Concept[definition]=Chemically treated skins and hides.<!-- | -->&Concept[definition]=Chemically treated skins and hides.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:freezeDried [[File:Pencil.png|link=]] | + | | link text =ncd.coll:freezeDried [[File:Pencil.png|link=]] |
− | | target = ncd.coll:freezeDried | + | | target =ncd.coll:freezeDried |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=freeze-dried<!-- | -->Concept[label]=freeze-dried<!-- | ||
-->&Concept[definition]=Removal of internal liquids using cold, low humidity environment.<!-- | -->&Concept[definition]=Removal of internal liquids using cold, low humidity environment.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:glycerin [[File:Pencil.png|link=]] | + | | link text =ncd.coll:glycerin [[File:Pencil.png|link=]] |
− | | target = ncd.coll:glycerin | + | | target =ncd.coll:glycerin |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=glycerin<!-- | -->Concept[label]=glycerin<!-- | ||
-->&Concept[definition]=Replacement of original internal fluids with glycerine.<!-- | -->&Concept[definition]=Replacement of original internal fluids with glycerine.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:surfaceCoating [[File:Pencil.png|link=]] | + | | link text =ncd.coll:surfaceCoating [[File:Pencil.png|link=]] |
− | | target = ncd.coll:surfaceCoating | + | | target =ncd.coll:surfaceCoating |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Surface Coating<!-- | -->Concept[label]=Surface Coating<!-- | ||
-->&Concept[definition]=Application of protective or consolidating surface coating using organic or inorganic materials.<!-- | -->&Concept[definition]=Application of protective or consolidating surface coating using organic or inorganic materials.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:slideMount [[File:Pencil.png|link=]] | + | | link text =ncd.coll:slideMount [[File:Pencil.png|link=]] |
− | | target = ncd.coll:slideMount | + | | target =ncd.coll:slideMount |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Slide Mount<!-- | -->Concept[label]=Slide Mount<!-- | ||
-->&Concept[definition]=Held on a glass slide using fixative and cover slip.<!-- | -->&Concept[definition]=Held on a glass slide using fixative and cover slip.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:embedded [[File:Pencil.png|link=]] | + | | link text =ncd.coll:embedded [[File:Pencil.png|link=]] |
− | | target = ncd.coll:embedded | + | | target =ncd.coll:embedded |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Embedded<!-- | -->Concept[label]=Embedded<!-- | ||
-->&Concept[definition]=Maintained in a solid matrix suitable for making thin sections.<!-- | -->&Concept[definition]=Maintained in a solid matrix suitable for making thin sections.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:pinned [[File:Pencil.png|link=]] | + | | link text =ncd.coll:pinned [[File:Pencil.png|link=]] |
− | | target = ncd.coll:pinned | + | | target =ncd.coll:pinned |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=pinned<!-- | -->Concept[label]=pinned<!-- | ||
− | -->&Concept[definition]=Treated to remove all internal fluids; held on | + | -->&Concept[definition]=Treated to remove all internal fluids; held on metalic pin.<!-- |
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:controlledAtmosphere [[File:Pencil.png|link=]] | + | | link text =ncd.coll:controlledAtmosphere [[File:Pencil.png|link=]] |
− | | target = ncd.coll:controlledAtmosphere | + | | target =ncd.coll:controlledAtmosphere |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Controlled Atmosphere<!-- | -->Concept[label]=Controlled Atmosphere<!-- | ||
-->&Concept[definition]=Held in conditions that vary from the typical elemental mix of the atmosphere; usually implies reduced oxygen.<!-- | -->&Concept[definition]=Held in conditions that vary from the typical elemental mix of the atmosphere; usually implies reduced oxygen.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:cryopreserved [[File:Pencil.png|link=]] | + | | link text =ncd.coll:cryopreserved [[File:Pencil.png|link=]] |
− | | target = ncd.coll:cryopreserved | + | | target =ncd.coll:cryopreserved |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=cryopreserved<!-- | -->Concept[label]=cryopreserved<!-- | ||
-->&Concept[definition]=Held at very low termperatures, typically in liquid Nitrogen.<!-- | -->&Concept[definition]=Held at very low termperatures, typically in liquid Nitrogen.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:recordedAnalog [[File:Pencil.png|link=]] | + | | link text =ncd.coll:recordedAnalog [[File:Pencil.png|link=]] |
− | | target = ncd.coll:recordedAnalog | + | | target =ncd.coll:recordedAnalog |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Recorded (analog)<!-- | -->Concept[label]=Recorded (analog)<!-- | ||
− | -->&Concept[definition]=Observations, measurements, or images that capture phenomena in | + | -->&Concept[definition]=Observations, measurements, or images that capture phenomena in analog formats.<!-- |
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:recordedDigital [[File:Pencil.png|link=]] | + | | link text =ncd.coll:recordedDigital [[File:Pencil.png|link=]] |
− | | target = ncd.coll:recordedDigital | + | | target =ncd.coll:recordedDigital |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Recorded (digital)<!-- | -->Concept[label]=Recorded (digital)<!-- | ||
-->&Concept[definition]=Observations, measurements, or images that capture phenomena in digital formats.<!-- | -->&Concept[definition]=Observations, measurements, or images that capture phenomena in digital formats.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:refrigerated [[File:Pencil.png|link=]] | + | | link text =ncd.coll:refrigerated [[File:Pencil.png|link=]] |
− | | target = ncd.coll:refrigerated | + | | target =ncd.coll:refrigerated |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Refrigerated<!-- | -->Concept[label]=Refrigerated<!-- | ||
-->&Concept[definition]=Maintained at cool temperatures above freezing.<!-- | -->&Concept[definition]=Maintained at cool temperatures above freezing.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:semstub [[File:Pencil.png|link=]] | + | | link text =ncd.coll:semstub [[File:Pencil.png|link=]] |
− | | target = ncd.coll:semstub | + | | target =ncd.coll:semstub |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=SEM stub<!-- | -->Concept[label]=SEM stub<!-- | ||
-->&Concept[definition]=Mounted and coated for scanning electron microscopy.<!-- | -->&Concept[definition]=Mounted and coated for scanning electron microscopy.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:skeletonized [[File:Pencil.png|link=]] | + | | link text =ncd.coll:skeletonized [[File:Pencil.png|link=]] |
− | | target = ncd.coll:skeletonized | + | | target =ncd.coll:skeletonized |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Skeletonized<!-- | -->Concept[label]=Skeletonized<!-- | ||
-->&Concept[definition]=Removal of soft tissues including connective tissues.<!-- | -->&Concept[definition]=Removal of soft tissues including connective tissues.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:stasis [[File:Pencil.png|link=]] | + | | link text =ncd.coll:stasis [[File:Pencil.png|link=]] |
− | | target = ncd.coll:stasis | + | | target =ncd.coll:stasis |
− | | query string =<!-- | + | | query string =<!--instance of class SpecimenPreservationMethodTypeTerm |
-->Concept[label]=Stasis<!-- | -->Concept[label]=Stasis<!-- | ||
-->&Concept[definition]=Collections capable of growing and reproducing that are held in a suspended state.<!-- | -->&Concept[definition]=Collections capable of growing and reproducing that are held in a suspended state.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23SpecimenPreservationMethodTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:PrimaryPurposeTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:PrimaryPurposeTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:PrimaryPurposeTypeTerm | + | | target =ncd.coll:PrimaryPurposeTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Primary Purpose Type Term<!-- | -->Concept[label]=Primary Purpose Type Term<!-- | ||
-->&Concept[definition]=Controlled vocabulary for primary purpose types.<!-- | -->&Concept[definition]=Controlled vocabulary for primary purpose types.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:research [[File:Pencil.png|link=]] | + | | link text =ncd.coll:research [[File:Pencil.png|link=]] |
− | | target = ncd.coll:research | + | | target =ncd.coll:research |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=research<!-- | -->Concept[label]=research<!-- | ||
-->&Concept[definition]=Acquired for current and future study.<!-- | -->&Concept[definition]=Acquired for current and future study.<!-- | ||
-->&Concept[notes]=Controlled vocabulary for primary purpose types.<!-- | -->&Concept[notes]=Controlled vocabulary for primary purpose types.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:education [[File:Pencil.png|link=]] | + | | link text =ncd.coll:education [[File:Pencil.png|link=]] |
− | | target = ncd.coll:education | + | | target =ncd.coll:education |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=education<!-- | -->Concept[label]=education<!-- | ||
-->&Concept[definition]=Acquired to educate, inform, or convey information.<!-- | -->&Concept[definition]=Acquired to educate, inform, or convey information.<!-- | ||
-->&Concept[notes]=Acquired for current and future study.<!-- | -->&Concept[notes]=Acquired for current and future study.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:exhibition [[File:Pencil.png|link=]] | + | | link text =ncd.coll:exhibition [[File:Pencil.png|link=]] |
− | | target = ncd.coll:exhibition | + | | target =ncd.coll:exhibition |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=exhibition<!-- | -->Concept[label]=exhibition<!-- | ||
-->&Concept[definition]=Acquired to educate, inform, or convey information through display.<!-- | -->&Concept[definition]=Acquired to educate, inform, or convey information through display.<!-- | ||
-->&Concept[notes]=Acquired to educate, inform, or convey information.<!-- | -->&Concept[notes]=Acquired to educate, inform, or convey information.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:ornamental [[File:Pencil.png|link=]] | + | | link text =ncd.coll:ornamental [[File:Pencil.png|link=]] |
− | | target = ncd.coll:ornamental | + | | target =ncd.coll:ornamental |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=ornamental<!-- | -->Concept[label]=ornamental<!-- | ||
-->&Concept[definition]=Acquired for decorative purposes.<!-- | -->&Concept[definition]=Acquired for decorative purposes.<!-- | ||
-->&Concept[notes]=Acquired to educate, inform, or convey information through display.<!-- | -->&Concept[notes]=Acquired to educate, inform, or convey information through display.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Destructiveanalysis [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Destructiveanalysis [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Destructiveanalysis | + | | target =ncd.coll:Destructiveanalysis |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=Destructive analysis<!-- | -->Concept[label]=Destructive analysis<!-- | ||
-->&Concept[definition]=Acquired and maintained for current and future analytical purposes that will consume the specimen or object.<!-- | -->&Concept[definition]=Acquired and maintained for current and future analytical purposes that will consume the specimen or object.<!-- | ||
-->&Concept[notes]=Acquired for decorative purposes.<!-- | -->&Concept[notes]=Acquired for decorative purposes.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:monitoring [[File:Pencil.png|link=]] | + | | link text =ncd.coll:monitoring [[File:Pencil.png|link=]] |
− | | target = ncd.coll:monitoring | + | | target =ncd.coll:monitoring |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=Monitoring<!-- | -->Concept[label]=Monitoring<!-- | ||
-->&Concept[definition]=Acquired as a result of observation, measurement, or sampling.<!-- | -->&Concept[definition]=Acquired as a result of observation, measurement, or sampling.<!-- | ||
-->&Concept[notes]=Acquired and maintained for current and future analytical purposes that will consume the specimen or object.<!-- | -->&Concept[notes]=Acquired and maintained for current and future analytical purposes that will consume the specimen or object.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:personal [[File:Pencil.png|link=]] | + | | link text =ncd.coll:personal [[File:Pencil.png|link=]] |
− | | target = ncd.coll:personal | + | | target =ncd.coll:personal |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=Personal<!-- | -->Concept[label]=Personal<!-- | ||
-->&Concept[definition]=Acquired for idiosyncratic reasons.<!-- | -->&Concept[definition]=Acquired for idiosyncratic reasons.<!-- | ||
-->&Concept[notes]=Acquired as a result of observation, measurement, or sampling.<!-- | -->&Concept[notes]=Acquired as a result of observation, measurement, or sampling.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:voucher [[File:Pencil.png|link=]] | + | | link text =ncd.coll:voucher [[File:Pencil.png|link=]] |
− | | target = ncd.coll:voucher | + | | target =ncd.coll:voucher |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=Voucher<!-- | -->Concept[label]=Voucher<!-- | ||
-->&Concept[definition]=Acquired and maintained to document an organism, observance, or phenomenon.<!-- | -->&Concept[definition]=Acquired and maintained to document an organism, observance, or phenomenon.<!-- | ||
-->&Concept[notes]=Acquired for idiosyncratic reasons.<!-- | -->&Concept[notes]=Acquired for idiosyncratic reasons.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:commercial [[File:Pencil.png|link=]] | + | | link text =ncd.coll:commercial [[File:Pencil.png|link=]] |
− | | target = ncd.coll:commercial | + | | target =ncd.coll:commercial |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryPurposeTypeTerm |
-->Concept[label]=Commercial<!-- | -->Concept[label]=Commercial<!-- | ||
-->&Concept[definition]=Biological material for sale.<!-- | -->&Concept[definition]=Biological material for sale.<!-- | ||
-->&Concept[notes]=Micro-organism cultures.<!-- | -->&Concept[notes]=Micro-organism cultures.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryPurposeTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:PrimaryGroupingPrincipleTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:PrimaryGroupingPrincipleTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:PrimaryGroupingPrincipleTypeTerm | + | | target =ncd.coll:PrimaryGroupingPrincipleTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Primary Grouping Principle Type Term<!-- | -->Concept[label]=Primary Grouping Principle Type Term<!-- | ||
-->&Concept[definition]=Controlled vocabulary for primary grouping principle.<!-- | -->&Concept[definition]=Controlled vocabulary for primary grouping principle.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:spatial [[File:Pencil.png|link=]] | + | | link text =ncd.coll:spatial [[File:Pencil.png|link=]] |
− | | target = ncd.coll:spatial | + | | target =ncd.coll:spatial |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=spatial<!-- | -->Concept[label]=spatial<!-- | ||
-->&Concept[definition]=Relating to a physical location or region.<!-- | -->&Concept[definition]=Relating to a physical location or region.<!-- | ||
-->&Concept[notes]=Examples include arctic fauna, plants from Guiana.<!-- | -->&Concept[notes]=Examples include arctic fauna, plants from Guiana.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Ecosystems [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Ecosystems [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Ecosystems | + | | target =ncd.coll:Ecosystems |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Ecosystems<!-- | -->Concept[label]=Ecosystems<!-- | ||
-->&Concept[definition]=Collections relating to complex community of living organisms and their environment.<!-- | -->&Concept[definition]=Collections relating to complex community of living organisms and their environment.<!-- | ||
-->&Concept[notes]=Examples include water column samples, forest plot collections.<!-- | -->&Concept[notes]=Examples include water column samples, forest plot collections.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:cultural [[File:Pencil.png|link=]] | + | | link text =ncd.coll:cultural [[File:Pencil.png|link=]] |
− | | target = ncd.coll:cultural | + | | target =ncd.coll:cultural |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Cultural<!-- | -->Concept[label]=Cultural<!-- | ||
-->&Concept[definition]=Collections relating to a group of people.<!-- | -->&Concept[definition]=Collections relating to a group of people.<!-- | ||
-->&Concept[notes]=Collections relating to complex community of living organisms and their environment.<!-- | -->&Concept[notes]=Collections relating to complex community of living organisms and their environment.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:taxonomic [[File:Pencil.png|link=]] | + | | link text =ncd.coll:taxonomic [[File:Pencil.png|link=]] |
− | | target = ncd.coll:taxonomic | + | | target =ncd.coll:taxonomic |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Taxonomic<!-- | -->Concept[label]=Taxonomic<!-- | ||
-->&Concept[definition]=Collections relating to a particular grouping of biological or geological specimens.<!-- | -->&Concept[definition]=Collections relating to a particular grouping of biological or geological specimens.<!-- | ||
-->&Concept[notes]=Examples include North American mammal collection, lichen collection and arachnid collection.<!-- | -->&Concept[notes]=Examples include North American mammal collection, lichen collection and arachnid collection.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:relationships [[File:Pencil.png|link=]] | + | | link text =ncd.coll:relationships [[File:Pencil.png|link=]] |
− | | target = ncd.coll:relationships | + | | target =ncd.coll:relationships |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Relationships<!-- | -->Concept[label]=Relationships<!-- | ||
-->&Concept[definition]=Items of different kinds having an intimate biological relationship.<!-- | -->&Concept[definition]=Items of different kinds having an intimate biological relationship.<!-- | ||
-->&Concept[notes]=Examples include parasite/host; symbiotic<!-- | -->&Concept[notes]=Examples include parasite/host; symbiotic<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:expeditions [[File:Pencil.png|link=]] | + | | link text =ncd.coll:expeditions [[File:Pencil.png|link=]] |
− | | target = ncd.coll:expeditions | + | | target =ncd.coll:expeditions |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=expeditions<!-- | -->Concept[label]=expeditions<!-- | ||
-->&Concept[definition]=Collections resulting from a journey or trip taken for a specific purpose.<!-- | -->&Concept[definition]=Collections resulting from a journey or trip taken for a specific purpose.<!-- | ||
-->&Concept[notes]=Items of different kinds having an intimate biological relationship.<!-- | -->&Concept[notes]=Items of different kinds having an intimate biological relationship.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:environmental [[File:Pencil.png|link=]] | + | | link text =ncd.coll:environmental [[File:Pencil.png|link=]] |
− | | target = ncd.coll:environmental | + | | target =ncd.coll:environmental |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Environmental<!-- | -->Concept[label]=Environmental<!-- | ||
-->&Concept[definition]=The aggregate of external conditions in which organisms live or phenomena occur; may be defined components only.<!-- | -->&Concept[definition]=The aggregate of external conditions in which organisms live or phenomena occur; may be defined components only.<!-- | ||
-->&Concept[notes]=Examples include rainfall measurements, average temperature, specimens from hydrothermal vents.<!-- | -->&Concept[notes]=Examples include rainfall measurements, average temperature, specimens from hydrothermal vents.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:temporal [[File:Pencil.png|link=]] | + | | link text =ncd.coll:temporal [[File:Pencil.png|link=]] |
− | | target = ncd.coll:temporal | + | | target =ncd.coll:temporal |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=temporal<!-- | -->Concept[label]=temporal<!-- | ||
-->&Concept[definition]=Relating to a particular time period.<!-- | -->&Concept[definition]=Relating to a particular time period.<!-- | ||
-->&Concept[notes]=Cenozoic mollusks, for example<!-- | -->&Concept[notes]=Cenozoic mollusks, for example<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:repository [[File:Pencil.png|link=]] | + | | link text =ncd.coll:repository [[File:Pencil.png|link=]] |
− | | target = ncd.coll:repository | + | | target =ncd.coll:repository |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=Repository<!-- | -->Concept[label]=Repository<!-- | ||
-->&Concept[definition]=Similar or related items that are placed in a facility for long term care as the result of a specific agreement.<!-- | -->&Concept[definition]=Similar or related items that are placed in a facility for long term care as the result of a specific agreement.<!-- | ||
-->&Concept[notes]=Specimens from US Mineral Management Service, specimens from US National Park Service, for example.<!-- | -->&Concept[notes]=Specimens from US Mineral Management Service, specimens from US National Park Service, for example.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:national [[File:Pencil.png|link=]] | + | | link text =ncd.coll:national [[File:Pencil.png|link=]] |
− | | target = ncd.coll:national | + | | target =ncd.coll:national |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=national<!-- | -->Concept[label]=national<!-- | ||
-->&Concept[definition]=Relating to geopolitical boundaries.<!-- | -->&Concept[definition]=Relating to geopolitical boundaries.<!-- | ||
-->&Concept[notes]=Similar or related items that are placed in a facility for long term care as the result of a specific agreement.<!-- | -->&Concept[notes]=Similar or related items that are placed in a facility for long term care as the result of a specific agreement.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:events [[File:Pencil.png|link=]] | + | | link text =ncd.coll:events [[File:Pencil.png|link=]] |
− | | target = ncd.coll:events | + | | target =ncd.coll:events |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=events<!-- | -->Concept[label]=events<!-- | ||
-->&Concept[definition]=Collections that were made as a result of an event, or that document an event.<!-- | -->&Concept[definition]=Collections that were made as a result of an event, or that document an event.<!-- | ||
-->&Concept[notes]=Specimens collected at a disaster site, for example.<!-- | -->&Concept[notes]=Specimens collected at a disaster site, for example.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:stage [[File:Pencil.png|link=]] | + | | link text =ncd.coll:stage [[File:Pencil.png|link=]] |
− | | target = ncd.coll:stage | + | | target =ncd.coll:stage |
− | | query string =<!-- | + | | query string =<!--instance of class PrimaryGroupingPrincipleTypeTerm |
-->Concept[label]=stage<!-- | -->Concept[label]=stage<!-- | ||
-->&Concept[definition]=Relating to a specific phase in physical development.<!-- | -->&Concept[definition]=Relating to a specific phase in physical development.<!-- | ||
-->&Concept[notes]=Larva, fetus, for example.<!-- | -->&Concept[notes]=Larva, fetus, for example.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23PrimaryGroupingPrincipleTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:KingdomTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:KingdomTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:KingdomTypeTerm | + | | target =ncd.coll:KingdomTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Kingdom Type Term<!-- | -->Concept[label]=Kingdom Type Term<!-- | ||
-->&Concept[definition]=Controlled vocabulary for taxonomic kingdom.<!-- | -->&Concept[definition]=Controlled vocabulary for taxonomic kingdom.<!-- | ||
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Animalia [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Animalia [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Animalia | + | | target =ncd.coll:Animalia |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Animalia<!-- | -->Concept[label]=Animalia<!-- | ||
-->&Concept[definition]=Animal Kingdom<!-- | -->&Concept[definition]=Animal Kingdom<!-- | ||
-->&Concept[notes]=Controlled vocabulary for taxonomic kingdom.<!-- | -->&Concept[notes]=Controlled vocabulary for taxonomic kingdom.<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Plantae [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Plantae [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Plantae | + | | target =ncd.coll:Plantae |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Plantae<!-- | -->Concept[label]=Plantae<!-- | ||
-->&Concept[definition]=Plant Kingdom<!-- | -->&Concept[definition]=Plant Kingdom<!-- | ||
-->&Concept[notes]=Animal Kingdom<!-- | -->&Concept[notes]=Animal Kingdom<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Fungi [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Fungi [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Fungi | + | | target =ncd.coll:Fungi |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Fungi<!-- | -->Concept[label]=Fungi<!-- | ||
-->&Concept[definition]=Fungi<!-- | -->&Concept[definition]=Fungi<!-- | ||
-->&Concept[notes]=Plant Kingdom<!-- | -->&Concept[notes]=Plant Kingdom<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Protista [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Protista [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Protista | + | | target =ncd.coll:Protista |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Protista<!-- | -->Concept[label]=Protista<!-- | ||
-->&Concept[definition]=Protists<!-- | -->&Concept[definition]=Protists<!-- | ||
-->&Concept[notes]=Fungi<!-- | -->&Concept[notes]=Fungi<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Eubacteria [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Eubacteria [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Eubacteria | + | | target =ncd.coll:Eubacteria |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Eubacteria<!-- | -->Concept[label]=Eubacteria<!-- | ||
-->&Concept[definition]=Eubacteria<!-- | -->&Concept[definition]=Eubacteria<!-- | ||
-->&Concept[notes]=Protists<!-- | -->&Concept[notes]=Protists<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:Archaebacteria [[File:Pencil.png|link=]] | + | | link text =ncd.coll:Archaebacteria [[File:Pencil.png|link=]] |
− | | target = ncd.coll:Archaebacteria | + | | target =ncd.coll:Archaebacteria |
− | | query string =<!-- | + | | query string =<!--instance of class KingdomTypeTerm |
-->Concept[label]=Archaebacteria<!-- | -->Concept[label]=Archaebacteria<!-- | ||
-->&Concept[definition]=Archaebacteria<!-- | -->&Concept[definition]=Archaebacteria<!-- | ||
-->&Concept[notes]=Eubacteria<!-- | -->&Concept[notes]=Eubacteria<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23KingdomTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> | --> | ||
* {{#formlink: form=Concept | * {{#formlink: form=Concept | ||
− | | link text = ncd.coll:ConservationStatusTypeTerm [[File:Pencil.png|link=]] | + | | link text =ncd.coll:ConservationStatusTypeTerm [[File:Pencil.png|link=]] |
− | | target = ncd.coll:ConservationStatusTypeTerm | + | | target =ncd.coll:ConservationStatusTypeTerm |
− | | query string =<!-- Class | + | | query string =<!--Class |
-->Concept[label]=Conservation Status Type Term<!-- | -->Concept[label]=Conservation Status Type Term<!-- | ||
− | -->&Concept[definition]=The class for construction controlled vocabularies of conservation status.Terms are taken from the McGinley levels.<!-- | + | -->&Concept[definition]=The class for construction controlled vocabularies of conservation status. Terms are taken from the McGinley levels.<!-- |
-->&Concept[concept type]=class<!-- | -->&Concept[concept type]=class<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
-->&Concept relation[1][relation]=rdfs: subclass of<!-- | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
− | -->&Concept relation[1][uri]= | + | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- |
− | -->}} | + | -->&Concept relation[2][relation]=skos: collection<!-- |
+ | -->&Concept relation[2][internal page]=NCD Collection<!-- | ||
+ | -->}} │<!-- | ||
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley1 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley1 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley1 | + | | target =ncd.coll:McGinley1 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 1<!-- | -->Concept[label]=McGinley level 1<!-- | ||
− | -->&Concept[definition]=Specimens deteriorating, potentially cullable, or unprepared. Collection unit in need of immediate attention; | + | -->&Concept[definition]=Specimens deteriorating, potentially cullable, or unprepared. Collection unit in need of immediate attention; museum pests, rusting pins, crystallizing slide media, unringed Hoyerï¿œs media, evaporated alcohol, fading labels, broken cover slip or slide, etc. Primary types missed in general collection.<!-- |
-->&Concept[notes]=Materials conservation:Conservation Problem<!-- | -->&Concept[notes]=Materials conservation:Conservation Problem<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley2 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley2 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley2 | + | | target =ncd.coll:McGinley2 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 2<!-- | -->Concept[label]=McGinley level 2<!-- | ||
-->&Concept[definition]=Material properly prepared but not sorted or only rough-sorted; not readily available to specialists.<!-- | -->&Concept[definition]=Material properly prepared but not sorted or only rough-sorted; not readily available to specialists.<!-- | ||
-->&Concept[notes]=Specimen accessibility: Specimens Unidentified, Inaccessible<!-- | -->&Concept[notes]=Specimen accessibility: Specimens Unidentified, Inaccessible<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley3 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley3 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley3 | + | | target =ncd.coll:McGinley3 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 3<!-- | -->Concept[label]=McGinley level 3<!-- | ||
− | -->&Concept[definition]=Specimens sorted to a level necessary to be efficiently accessible to research specialist for study. | + | -->&Concept[definition]=Specimens sorted to a level necessary to be efficiently accessible to research specialist for study. All specimens in soft-bottom trays, shell vials in jars or slide boxes, with appropriate levels denoting pertinent taxonomic information. Taxonomic category may vary among different taxa.<!-- |
-->&Concept[notes]=Specimen accessibility: Specimens Unidentified, Accessible<!-- | -->&Concept[notes]=Specimen accessibility: Specimens Unidentified, Accessible<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley4 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley4 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley4 | + | | target =ncd.coll:McGinley4 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 4<!-- | -->Concept[label]=McGinley level 4<!-- | ||
-->&Concept[definition]=Valuable material that has been identified to the species level but not yet put away effectively inaccessible.<!-- | -->&Concept[definition]=Valuable material that has been identified to the species level but not yet put away effectively inaccessible.<!-- | ||
-->&Concept[notes]=Specimen accessibility: Specimens Identified but not Integrated into Collection<!-- | -->&Concept[notes]=Specimen accessibility: Specimens Identified but not Integrated into Collection<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley5 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley5 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley5 | + | | target =ncd.coll:McGinley5 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 5<!-- | -->Concept[label]=McGinley level 5<!-- | ||
− | -->&Concept[definition]=All specimens identified and integrated. | + | -->&Concept[definition]=All specimens identified and integrated. However, this collection unit needs upgrading, e.g., names checked, header labels for unit trays prepared, transfer to soft-bottom trays, etc., box header labels checked against slides. Alcoholic collection with individual exposed vials, jar labels misleading or without detail, overall format heterogenous.<!-- |
-->&Concept[notes]=Physical organization: Specimens Identified but Curation Incomplete<!-- | -->&Concept[notes]=Physical organization: Specimens Identified but Curation Incomplete<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley6 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley6 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley6 | + | | target =ncd.coll:McGinley6 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 6<!-- | -->Concept[label]=McGinley level 6<!-- | ||
− | -->&Concept[definition]=All specimens in soft-bottom unit trays; all unit-tray header labels, drawer or box, and cabinet labels completed; space left for expansion. | + | -->&Concept[definition]=All specimens in soft-bottom unit trays; all unit-tray header labels, drawer or box, and cabinet labels completed; space left for expansion. When a collection reaches Level 6, the name(s) or who did the curation, the date of curation and listing of catalogues or monographs on which the names are based should be entered in the Smithsonian Collection Inventory File computerized files. Vial within jar system established, labels complete and accurately typed, expansion space allocated, and alcohol levels adequate.<!-- |
-->&Concept[notes]=Physical organization: Specimens Identified and Properly Curated in Accordance with Departmental Collection Standards<!-- | -->&Concept[notes]=Physical organization: Specimens Identified and Properly Curated in Accordance with Departmental Collection Standards<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley7 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley7 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley7 | + | | target =ncd.coll:McGinley7 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 7<!-- | -->Concept[label]=McGinley level 7<!-- | ||
− | -->&Concept[definition]=Species inventory with header or box label generation completed. | + | -->&Concept[definition]=Species inventory with header or box label generation completed. Alcoholic collection with taxa listed on jar labels and in database, as in Level 6 plus species-level inventory.<!-- |
-->&Concept[notes]=Data Capture: Species Level Inventory<!-- | -->&Concept[notes]=Data Capture: Species Level Inventory<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley8 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley8 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley8 | + | | target =ncd.coll:McGinley8 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 8<!-- | -->Concept[label]=McGinley level 8<!-- | ||
− | -->&Concept[definition]=Label data are recorded for systematic, biogeography or natural history studies. | + | -->&Concept[definition]=Label data are recorded for systematic, biogeography or natural history studies. The data elements recorded will vary by group, however, a d standard core set includes the following: a) a country/province/place/latitude-longitude; b) date of collection; c) collector(s); d) miscellaneous (for example, elevation, host). Miscellaneous voucher specimens, including types, from various studies are also ranked at this level.<!-- |
-->&Concept[notes]=Data Capture: Specimen Label Data Capture<!-- | -->&Concept[notes]=Data Capture: Specimen Label Data Capture<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley9 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley9 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley9 | + | | target =ncd.coll:McGinley9 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 9<!-- | -->Concept[label]=McGinley level 9<!-- | ||
-->&Concept[definition]=Measurements, graphics, or other pertinent (descriptions) of specimens are captured in a database<!-- | -->&Concept[definition]=Measurements, graphics, or other pertinent (descriptions) of specimens are captured in a database<!-- | ||
-->&Concept[notes]=Data Capture: Research Data Capture<!-- | -->&Concept[notes]=Data Capture: Research Data Capture<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
− | -->}} | + | -->}} │<!-- |
--> {{#formlink: form=Concept | --> {{#formlink: form=Concept | ||
− | | link text = ncd.coll:McGinley10 [[File:Pencil.png|link=]] | + | | link text =ncd.coll:McGinley10 [[File:Pencil.png|link=]] |
− | | target = ncd.coll:McGinley10 | + | | target =ncd.coll:McGinley10 |
− | | query string =<!-- | + | | query string =<!--instance of class ConservationStatusTypeTerm |
-->Concept[label]=McGinley level 10<!-- | -->Concept[label]=McGinley level 10<!-- | ||
− | -->&Concept[definition]=Groups of specimens included in published monographic, synthetic, or revisionary works, including primary type collection if storage is at Level 7 or higher. | + | -->&Concept[definition]=Groups of specimens included in published monographic, synthetic, or revisionary works, including primary type collection if storage is at Level 7 or higher. When groups of specimens serve to voucher published scientific collection-based studies and have undergone conservation and accession requirements of at least Level 7.<!-- |
-->&Concept[notes]=Scientific Voucher Material<!-- | -->&Concept[notes]=Scientific Voucher Material<!-- | ||
-->&Concept[concept type]=value<!-- | -->&Concept[concept type]=value<!-- | ||
− | + | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection<!-- | |
− | + | ||
− | -->&Concept[is defined by]= | + | |
-->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollection%23ConservationStatusTypeTerm<!-- | ||
-->&Concept relation[1][relation]=skos: collection<!-- | -->&Concept relation[1][relation]=skos: collection<!-- | ||
− | -->&Concept relation[1][internal page]=NCD | + | -->&Concept relation[1][internal page]=NCD Collection<!-- |
+ | -->}} │ | ||
+ | |||
+ | === [http://rs.tdwg.org/ontology/voc/CollectionType.rdf CollectionType] === | ||
+ | |||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Collection Type [[File:Pencil.png|link=]] | ||
+ | |target=NCD Collection Type | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Markus Döring<!-- | ||
+ | -->&Concept collection[description]=Ontology describing a controlled vocabulary for type of (biological) collections.<!-- | ||
+ | -->&Concept collection[notes]=FIXME...<!-- | ||
+ | -->&Concept collection[issued]=2007%2F03%2F08<!-- | ||
+ | -->&Concept collection[modified]=2007%2F08%2F16<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.colltype<!-- | ||
-->}} | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:CollectionTypeTerm [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:CollectionTypeTerm | ||
+ | | query string =<!--Class | ||
+ | -->Concept[label]=Collection Type Term<!-- | ||
+ | -->&Concept[definition]=The class for controlled vocabularies of collection types. Picklist keyword to indicate typical contents or unifying characteristics of the collection.<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:art [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:art | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=Art<!-- | ||
+ | -->&Concept[definition]=Representational and impressionistic works from the human hand.<!-- | ||
+ | -->&Concept[notes]=Paintings, drawings, scientific illustrations are examples.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:living [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:living | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=living<!-- | ||
+ | -->&Concept[definition]=Collections that grow and reproduce, including botanic gardens, zoos and aquaria.<!-- | ||
+ | -->&Concept[notes]=Plants or fish are examples.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:products [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:products | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=Products<!-- | ||
+ | -->&Concept[definition]=Specimens that result from biological functions or behaviours.<!-- | ||
+ | -->&Concept[notes]=Nests, webs or molts are examples.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:cellcultures [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:cellcultures | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=Cell cultures<!-- | ||
+ | -->&Concept[definition]=Biological material that is intentionally cultured and maintained in a viable state.<!-- | ||
+ | -->&Concept[notes]=Cell lines or microorganisms are examples.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:preserved [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:preserved | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=preserved<!-- | ||
+ | -->&Concept[definition]=Biological specimens that are preserved indefinitely.<!-- | ||
+ | -->&Concept[notes]=Examples include pinned butterfly, herbarium specimen, skeleton, skin or fluid-preserved invertebrate.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:observations [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:observations | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=observations<!-- | ||
+ | -->&Concept[definition]=Recorded visual phenomena, may be observation or measurement.<!-- | ||
+ | -->&Concept[notes]=Avian mating displays, for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:visual [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:visual | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=visual<!-- | ||
+ | -->&Concept[definition]=Visual representations of an item or object produced with the aid of a camera or a digital imaging system.<!-- | ||
+ | -->&Concept[notes]=Examples include photograph, SEM image or video.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:fossils [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:fossils | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=fossils<!-- | ||
+ | -->&Concept[definition]=Biological specimens that are preserved through geological processes.<!-- | ||
+ | -->&Concept[notes]=Tyrannosaurus Rex., for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:archival [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:archival | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=archival<!-- | ||
+ | -->&Concept[definition]=Public and/or private records and historical documents in various media which are preserved and accessible.<!-- | ||
+ | -->&Concept[notes]=Examples include papers and records, field logs, photographs.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:audio [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:audio | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=audio<!-- | ||
+ | -->&Concept[definition]=Recorded auditory phenomena.<!-- | ||
+ | -->&Concept[notes]=Amphibian mating calls, for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:texts [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:texts | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=texts<!-- | ||
+ | -->&Concept[definition]=A collection of books or other written material, or a list of works.<!-- | ||
+ | -->&Concept[notes]=Books, journals and other printed publications for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:electronic [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:electronic | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=electronic<!-- | ||
+ | -->&Concept[definition]=Data or information that has been captured and digitized for storage and manipulation in an automated system and that requires the use of the system to render it intelligible by a person.<!-- | ||
+ | -->&Concept[notes]=Electronic documents, web sites or databases for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:facsimiles [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:facsimiles | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=facsimiles<!-- | ||
+ | -->&Concept[definition]=Accurate representations of the original item; may be naturally occurring or manufactured.<!-- | ||
+ | -->&Concept[notes]=Endocasts or molds for example<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:genetic [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:genetic | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=genetic<!-- | ||
+ | -->&Concept[definition]=Stored or banked biological samples for future use.<!-- | ||
+ | -->&Concept[notes]=Germplasm, seed, blood or DNA for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:taxonomic [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:taxonomic | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=taxonomic<!-- | ||
+ | -->&Concept[definition]=Relating to a particular grouping of biological or geological specimens.<!-- | ||
+ | -->&Concept[notes]=North American mammal collection, lichen collection, arachnid collection for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.colltype:tissue [[File:Pencil.png|link=]] | ||
+ | | target =ncd.colltype:tissue | ||
+ | | query string =<!--instance of class CollectionTypeTerm | ||
+ | -->Concept[label]=tissue<!-- | ||
+ | -->&Concept[definition]=Plant and/or animal tissues.<!-- | ||
+ | -->&Concept[notes]=Blood, muscle, ovary or leaf for example.<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCollectionType%23CollectionTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Collection Type<!-- | ||
+ | -->}} │ | ||
+ | |||
+ | === [http://rs.tdwg.org/ontology/voc/Common.rdf Common] === | ||
+ | |||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Common [[File:Pencil.png|link=]] | ||
+ | |target=NCD Common | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=Global properties for use in any LSID Vocabulary classes.<!-- | ||
+ | -->&Concept collection[notes]=FIXME - must validate using: http%3A%2F%2Fphoebus.cs.man.ac.uk%3A9999%2FOWL%2FValidator<!-- | ||
+ | -->&Concept collection[issued]=2006%2F11%2F13<!-- | ||
+ | -->&Concept collection[modified]=2007%2F05%2F03<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.com<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:isDeprecated [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:isDeprecated | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Is Deprecated<!-- | ||
+ | -->&Concept[definition]=The resource identified by this LSID is deprecated and should not be used. The LSID authority may choose to only provide this flag property or it may choose to continue providing the data along with the flag. Use of the DublinCore replaced ** FIXME ** property is recommended.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23boolean<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:isRestricted [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:isRestricted | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Is Restricted<!-- | ||
+ | -->&Concept[definition]=The metadata and/or data associated with this LSID is being deliberately presented in a restricted form by the authority. Some information is either being deliberately withheld or obfuscated. This may occur for a number of reasons: It may be inappropriate to release full information prior to the publishing of a scientific paper - especially if it contains nomenclature. It may be commercially necessary if some of the information is only available on a subscription basis. It may be necessary to hide the true location of rare and endangered species. If this property is set to 'true' then it is recommended that a dcterms:accessRights property is also included with an explanation of why the restriction is in place and how full access might be gained. It may also be appropriate to include a dcterms:rightsHolder property that is an rdf:resource. Note that this property should only be used when the missing data is known to the authority but not released. If the authority merely knows that data is missing the property should NOT be used. It is NOT an 'incomplete' flag.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23boolean<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:versionedAs [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:versionedAs | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->Concept[label]=Versioned As<!-- | ||
+ | -->&Concept[definition]=When the metadata linked to by this LSID is liable to change the LSID authority may choose to make an older version of the metadata available via another LSID. For some clients retrieving the version of the data current at a particular time (rather than the current metadata) may be important. By storing the value of the versionedAs LSID that is supplied with the current metadata they can be sure that they will always be able to refer to a particular version of the metadata. It is recommended that the DublinCore term isVersionOf is used to point from the versioned metadata to the principle LSID.<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:publishedIn [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:publishedIn | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Published In<!-- | ||
+ | -->&Concept[definition]=A string of the citation of the publication associated with this object.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:publishedInCitation [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:publishedInCitation | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->Concept[label]=Published In Citation<!-- | ||
+ | -->&Concept[definition]=A link to a citation object that expands on the publishedIn property.<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FPublicationCitation%23PublicationCitation<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:microReference [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:microReference | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=MicroReference<!-- | ||
+ | -->&Concept[definition]=The microreference within the publication where the this object is mentioned. A qualification to the publishedIn and publicatedInCitation properties. Specifies any minor reference parts connected to the name publication e.g. page number.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:note [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:note | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=note<!-- | ||
+ | -->&Concept[definition]=An annotation to the current resource. This is not a description of the resource which should be given in a rdfs:comment or dc:label property. Information contained in this property is additional to that provided in other properties.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:taxonomicPlacementFormal [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:taxonomicPlacementFormal | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Taxonomic Placement Formal<!-- | ||
+ | -->&Concept[definition]=A comma separated list of scientific taxon names that indicate (for administrative and data discovery purposes only) the taxonomic placement of this object. The value may be a single word such as 'Ericaceae' or a series of comma separated words such as "Magnoliopsida, Ericales, Ericaceae, Arbutus". The words should represent taxa of decreasing rank. This property should not be used in place of a formal taxonomic hierarchy constructed using TaxonConcept objects.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FDigitalImage%23DigitalImage<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:taxonomicPlacementInformal [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:taxonomicPlacementInformal | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Taxonomic Placement Informal<!-- | ||
+ | -->&Concept[definition]=A comma separated list of scientific and/or vernacular taxon names that indicate (for administrative and data discovery purposes only) the taxonomic placement of this object. The value may be a single word such as 'Bird' or a series of comma separated words such as "Crow, Bird, Corvid". The order of the words is of no significance. This property should not be used in place of a formal taxonomic hierarchy constructed using TaxonConcept objects.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FDigitalImage%23DigitalImage<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:hasDigitalImage [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:hasDigitalImage | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->Concept[label]=Has Digital Image<!-- | ||
+ | -->&Concept[definition]=A link to a non-text visual representation of this object.<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FDigitalImage%23DigitalImage<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:tcsEquivalence [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:tcsEquivalence | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=TCS Equivalence<!-- | ||
+ | -->&Concept[definition]=Used to indicate the equivalent construct in the Taxon Concept Schema for any Class, Property or Individual. This is a datatype property because TCS is not semantic web based and so does not provide a URI that can be used to refer to constructs.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:berlinModelEquivalence [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:berlinModelEquivalence | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=Berlin Model Equivalence<!-- | ||
+ | -->&Concept[definition]=Used to indicate the equivalent construct in the Berlin Taxonomic data model for any Class, Property or Individual. This is a datatype property because the Berlin Model is not semantic web based and so does not provide a URI that can be used to refer to constructs.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:abcdEquivalence [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:abcdEquivalence | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=ABCD Equivalence<!-- | ||
+ | -->&Concept[definition]=Used to indicate the equivalent construct in the ABCD XML Schema data model for any Class, Property or Individual. This is a datatype property because ABCD is not semantic web based and so does not provide a URI that can be used to refer to constructs.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.com:darwinCoreEquivalence [[File:Pencil.png|link=]] | ||
+ | | target =ncd.com:darwinCoreEquivalence | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->Concept[label]=DarwinCore Equivalence<!-- | ||
+ | -->&Concept[definition]=Used to indicate the equivalent construct in the DarwinCore XML Schema data models for any Class, Property or Individual. This is a datatype property because DarwinCore is not semantic web based and so does not provide a URI that can be used to refer to constructs although it might be feasible to refer to individual elements within the namespace their meaning can be changed by the contents of the basisOfRecord field and so a text only approach is taken.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCommon<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Common<!-- | ||
+ | -->}} │ | ||
+ | |||
+ | === [http://rs.tdwg.org/ontology/voc/ContactDetails.rdf ContactDetails] === | ||
+ | |||
+ | The [http://rs.tdwg.org/ontology/voc/ContactDetails.rdf NCD RDF sourcfile] file <span class="error">is flawed</span>: | ||
+ | * URL is not defined by http://www.w3.org/2001/vcard-rdf/3.0#URL check ContactDetails.rdf of NCD | ||
+ | * TYPE is not defined by http://www.w3.org/2001/vcard-rdf/3.0#TYPE check ContactDetails.rdf of NCD | ||
+ | |||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Contact Details [[File:Pencil.png|link=]] | ||
+ | |target=NCD Contact Details | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=Ontology describing the metadata returned for LSIDs that are used for contact details.<!-- | ||
+ | -->&Concept collection[issued]=2007%2F04%2F06<!-- | ||
+ | -->&Concept collection[modified]=2007%2F08%2F15<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.cd<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:ContactDetails [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:ContactDetails | ||
+ | | query string =<!--Class | ||
+ | -->Concept[label]=ContactDetails<!-- | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:TEL [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:TEL | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[label]=Telephone<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:EMAIL [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:EMAIL | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Email Address<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:ADR [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:ADR | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Address<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:GEO [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:GEO | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Geographical Information<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:URL [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:URL | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[notes]=Not defined by http%3A%2F%2Fwww.w3.org%2F2001%2Fvcard-rdf%2F3.0%23URL check ContactDetails.rdf of NCD<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:LOGO [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:LOGO | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Logo Image<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:NOTE [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:NOTE | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Notes<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Address [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Address | ||
+ | | query string =<!--Class | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23BaseThing<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:TYPE [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:TYPE | ||
+ | | query string =<!--ObjectProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[concept type]=property<!-- | ||
+ | -->&Concept[notes]=Not defined by http%3A%2F%2Fwww.w3.org%2F2001%2Fvcard-rdf%2F3.0%23TYPE check ContactDetails.rdf of NCD<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23ContactTypeTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Pobox [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Pobox | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Post Office Box<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Extadd [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Extadd | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Extended Address<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Street [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Street | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Street<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Locality [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Locality | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Locality%2FSuburb<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Region [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Region | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Region%2FState<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Pcode [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Pcode | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Postal Code<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:Country [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:Country | ||
+ | | query string =<!--DatatypeProperty | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[label]=Country<!-- | ||
+ | -->&Concept[concept type]=data type<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails%23Address<!-- | ||
+ | -->&Concept scheme relation[1][property range]=http%3A%2F%2Fwww.w3.org%2F2001%2FXMLSchema%23string<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.cd:ContactTypeTerm [[File:Pencil.png|link=]] | ||
+ | | target =ncd.cd:ContactTypeTerm | ||
+ | | query string =<!--Class | ||
+ | -->&Concept[definition]=Information on how to contact an entity including postal and electronic methods. This class is an attempt to mirror the IETF vCard standard and should be directly mappable to it.<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FContactDetails<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Contact Details<!-- | ||
+ | -->}} │ | ||
+ | |||
+ | === [http://rs.tdwg.org/ontology/voc/CyclicityTerm.rdf CyclicityTerm] === | ||
+ | |||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Cyclicity Term [[File:Pencil.png|link=]] | ||
+ | |target=NCD Cyclicity Term | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=Ontology describing a controlled vocabulary for cyclicity.<!-- | ||
+ | -->&Concept collection[issued]=2007%2F04%2F17<!-- | ||
+ | -->&Concept collection[modified]=2007%2F08%2F15<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.ct<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:CyclicityTerm [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:CyclicityTerm | ||
+ | | query string =<!--Class | ||
+ | -->Concept[label]=Cyclicity Term<!-- | ||
+ | -->&Concept[definition]=The class for constructing controlled vocabularies associated with Cyclisity<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FSpeciesProfileModel<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23DefinedTerm<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:Circadian [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:Circadian | ||
+ | | query string =<!--instance of class CyclicityTerm | ||
+ | -->Concept[label]=Circadian<!-- | ||
+ | -->&Concept[definition]=FIXME ...<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23CyclicityTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:SemiLunar [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:SemiLunar | ||
+ | | query string =<!--instance of class CyclicityTerm | ||
+ | -->Concept[label]=SemiLunar<!-- | ||
+ | -->&Concept[definition]=FIXME ...<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23CyclicityTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:Lunar [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:Lunar | ||
+ | | query string =<!--instance of class CyclicityTerm | ||
+ | -->Concept[label]=Lunar<!-- | ||
+ | -->&Concept[definition]=FIXME ...<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23CyclicityTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:Seasonal [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:Seasonal | ||
+ | | query string =<!--instance of class CyclicityTerm | ||
+ | -->Concept[label]=Seasonal<!-- | ||
+ | -->&Concept[definition]=FIXME ...<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23CyclicityTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │<!-- | ||
+ | |||
+ | --> {{#formlink: form=Concept | ||
+ | | link text =ncd.ct:Annual [[File:Pencil.png|link=]] | ||
+ | | target =ncd.ct:Annual | ||
+ | | query string =<!--instance of class CyclicityTerm | ||
+ | -->Concept[label]=Annual<!-- | ||
+ | -->&Concept[definition]=FIXME ...<!-- | ||
+ | -->&Concept[concept type]=value<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept scheme relation[1][property domain]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FCyclicityTerm%23CyclicityTerm<!-- | ||
+ | -->&Concept relation[1][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[1][internal page]=NCD Cyclicity Term<!-- | ||
+ | -->}} │ | ||
+ | |||
+ | === [http://rs.tdwg.org/ontology/voc/DigitalImage.rdf DigitalImage] === | ||
+ | |||
+ | <span class="error">DigitalImage.rdf seems wrong:</span> <nowiki><owl:Ontology rdf:about="http://rs.tdwg.org/ontology/voc/ContactDetails"></nowiki> cannot be true, possibly <nowiki><owl:Ontology rdf:about="http://rs.tdwg.org/ontology/voc/DigitalImage"></nowiki> is correct | ||
+ | |||
+ | {{#formlink: form=Concept collection | ||
+ | |link text=NCD Digital Image [[File:Pencil.png|link=]] | ||
+ | |target=NCD Digital Image | ||
+ | |query string =<!-- | ||
+ | -->Concept collection[concept scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept collection[creators]=Roger Hyam<!-- | ||
+ | -->&Concept collection[description]=Ontology describing the metadata returned for LSIDs that are used for digital images.<!-- | ||
+ | -->&Concept collection[issued]=2007%2F04%2F11<!-- | ||
+ | -->&Concept collection[modified]=2007%2F08%2F15<!-- | ||
+ | -->&Concept collection[preferred namespace uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FDigitalImage%23<!-- | ||
+ | -->&Concept collection[preferred namespace prefix]=ncd.di<!-- | ||
+ | -->}} | ||
+ | ---- | ||
+ | <!-- | ||
+ | --> | ||
+ | * {{#formlink: form=Concept | ||
+ | | link text =ncd.di:DigitalImage [[File:Pencil.png|link=]] | ||
+ | | target =ncd.di:DigitalImage | ||
+ | | query string =<!--Class | ||
+ | -->Concept[label]=DigitalImage<!-- | ||
+ | -->&Concept[definition]=A digital image. Properties from established vocabularies should be used in this class.<!-- | ||
+ | -->&Concept[concept type]=class<!-- | ||
+ | -->&Concept[is defined by]=http%3A%2F%2Frs.tdwg.org%2Fontology%2Fvoc%2FDigitalImage<!-- | ||
+ | -->&Concept scheme relation[1][scheme]=Natural Collections Description<!-- | ||
+ | -->&Concept relation[1][relation]=rdfs: subclass of<!-- | ||
+ | -->&Concept relation[1][uri]=http%3A%2F%2Frs.tdwg.org%2Fontology%2FBase%23MediaObject<!-- | ||
+ | -->&Concept relation[2][relation]=skos: collection<!-- | ||
+ | -->&Concept relation[2][internal page]=NCD Digital Image<!-- | ||
+ | -->}} │ |
Latest revision as of 14:20, 7 January 2013
Contents
Preferred Namespaces and URIs
Collection | Preferred namespace | Preferred namespace URI |
Is in svn Ontology.owl |
Comments |
---|---|---|---|---|
Base | tbase |
http://rs.tdwg.org/ontology/Base# | yes | Collection.rdf[1] defines the namespace "tbase" xmlns:tbase="http://rs.tdwg.org/ontology/Base#"; note: it is also defined as ns "base" in CollectionType.rdf[2] → probably mistakenly.
|
Core | tcore | http://rs.tdwg.org/ontology/Core# | yes | Procedure.rdf defines the namespace "tcore" xmlns:tcore="http://rs.tdwg.org/ontology/Core#" |
Collection | ?tco ?tcoll ?ncd-collection |
http://rs.tdwg.org/ontology/voc/Collection# | yes | namespace “ncd-collection” was decided by Gregor Hagedorn, Andreas Plank; following the "t…" naming scheme the briefest namespace is "tco"; tc is already defined by TaxonConcept |
CollectionType | ?tcot ?tcollt ?tcolltype ?ncd-collectiontype |
http://rs.tdwg.org/ontology/voc/CollectionType# | yes | suggested namespace by Andreas Plank; following the "t…" naming scheme "tcot" namespace is the briefest; tct is already defined by OccurrenceStatusTerm |
Common | tcom | http://rs.tdwg.org/ontology/voc/Common# | yes | TaxonConcept.rdf or Institution.rdf (among many others) define namespace "tcom" xmlns:tcom="http://rs.tdwg.org/ontology/voc/Common#"; common to all concepts |
ContactDetails | tcd | http://rs.tdwg.org/ontology/voc/ContactDetails# | yes | namespace "tcd" because ContactDetails.rdf defines xmlns:tcd="http://rs.tdwg.org/ontology/voc/ContactDetails#" |
CyclicityTerm | tct | http://rs.tdwg.org/ontology/voc/CyclicityTerm# | no | seems in development, namespace "tct" because CyclicityTerm.rdf defines xmlns:tdi="http://rs.tdwg.org/ontology/voc/CyclicityTerm#"; conflicts with OccurrenceStatusTerm that probably defines its "tct" namespace mistakenly |
DigitalImage | tdi | http://rs.tdwg.org/ontology/voc/DigitalImage# | yes | namespace "tdi" because DigitalImage.rdf defines xmlns:tdi="http://rs.tdwg.org/ontology/voc/DigitalImage#" |
GeographicRegion | gr | http://rs.tdwg.org/ontology/voc/GeographicRegion# | no | namespace "gr" because GeographicRegion.rdf defines xmlns:gr="http://rs.tdwg.org/ontology/voc/GeographicRegion#" |
Institution | tinst | http://rs.tdwg.org/ontology/voc/Institution# | yes | namespace "tinst" because Institution.rdf defines xmlns:tinst="http://rs.tdwg.org/ontology/voc/Institution#" |
InstitutionType | titype | http://rs.tdwg.org/ontology/voc/InstitutionType# | yes | namespace "titype" because Institution.rdf defines xmlns:titype="http://rs.tdwg.org/ontology/voc/InstitutionType#" |
OccurrenceRecord | tor | http://rs.tdwg.org/ontology/voc/OccurrenceRecord# | no | namespace "tor" because OccurrenceRecord.rdf defines xmlns:tor="http://rs.tdwg.org/ontology/voc/OccurrenceRecord#" |
OccurrenceStatusTerm | tct | http://rs.tdwg.org/ontology/voc/OccurrenceStatusTerm# | yes | namespace "tct" because OccurrenceStatusTerm.rdf defines xmlns:tct="http://rs.tdwg.org/ontology/voc/OccurrenceStatusTerm#", conflicts with CyclicityTerm |
Person | tp | http://rs.tdwg.org/ontology/voc/Person# | yes | namespace "tp" because Person.rdf xmlns:tp="http://rs.tdwg.org/ontology/voc/Person#"; conflicts with taxpub's preferred namespace "tp" |
Procedure | tproc | http://rs.tdwg.org/ontology/voc/Procedure# | yes | Procedure.rdf defines the namespace xmlns:tproc="http://rs.tdwg.org/ontology/voc/Procedure#" |
PublicationCitation | tpub | http://rs.tdwg.org/ontology/voc/PublicationCitation# | yes | PublicationCitation.rdf defines the namespace xmlns:tpub="http://rs.tdwg.org/ontology/voc/PublicationCitation#" |
SpeciesProfileModel | spm | http://rs.tdwg.org/ontology/voc/SpeciesProfileModel# | yes | SpeciesProfileModel.rdf defines the namespace xmlns:spm="http://rs.tdwg.org/ontology/voc/SpeciesProfileModel#" |
SPMInfoItems | spmi | http://rs.tdwg.org/ontology/voc/SPMInfoItems# | no | SPMInfoItems.rdf defines the namespace xmlns:spmi="http://rs.tdwg.org/ontology/voc/SPMInfoItems#"; it's not in the subversion Ontology.owl but listed on TDWG website http://rs.tdwg.org/ontology/voc/ |
Specimen | tsp | http://rs.tdwg.org/ontology/voc/Specimen# | yes | Specimen.rdf defines the namespace xmlns:tsp="http://rs.tdwg.org/ontology/voc/Specimen#" |
TaxonConcept | tc | http://rs.tdwg.org/ontology/voc/TaxonConcept# | yes | TaxonConcept.rdf defines the namespace xmlns:tc="http://rs.tdwg.org/ontology/voc/TaxonConcept#" |
TaxonName | tn | http://rs.tdwg.org/ontology/voc/TaxonName# | yes | TaxonName.rdf defines the namespace xmlns:tn="http://rs.tdwg.org/ontology/voc/TaxonName#" |
TaxonOccurrence | tto | http://rs.tdwg.org/ontology/voc/TaxonOccurrence# | yes | TaxonOccurrence.rdf defines the namespace xmlns:tto="http://rs.tdwg.org/ontology/voc/TaxonOccurrence# |
TaxonOccurrenceInteraction | ?? | http://rs.tdwg.org/ontology/voc/TaxonOccurrenceInteraction# | no | TaxonOccurrenceInteraction.rdf defines no namespace; it is not in the subversion Ontology.owl but listed on TDWG website http://rs.tdwg.org/ontology/voc/ |
TaxonRank | trank | http://rs.tdwg.org/ontology/voc/TaxonRank# | yes | TaxonRank.rdf defines the namespace xmlns:trank="http://rs.tdwg.org/ontology/voc/TaxonRank#" |
Team | tt | http://rs.tdwg.org/ontology/voc/Team# | yes | Team.rdf defines the namespace xmlns:tt="http://rs.tdwg.org/ontology/voc/Team#" |
TermWithSource | ?? | http://rs.tdwg.org/ontology/voc/TermWithSource# | no | TermWithSource.rdf defines the namespace; seems in development (is not listed either on TDWG website http://rs.tdwg.org/ontology/voc/) |
Defined namespaces in NCD
TODO decide for namespace prefixes of Collection, CollectionType, Person, TaxonOccurrenceInteraction, TermWithSource --Andreas Plank 09:58, 20 November 2012 (CET)
- Namespace "base" should be "tbase" --Andreas Plank 12:00, 23 November 2012 (CET)
- Namespace "tct" of OccurrenceStatusTerm in OccurrenceStatusTerm.rdf is probably wrong --Andreas Plank 13:27, 23 November 2012 (CET)
- According to declaration of namespaces we could change all defined namespaces by prefixing them with "ncd.". I made a proposal in column "ncd. prefixes" in the table below. For that I removed some "t…" prefixes and kept "t…" prefixes only where I thought it would be necessary --Andreas Plank 13:27, 23 November 2012 (CET)
Form links for creation of NCD concepts
Formlinks are for testing. If data go to the right form field when clicking on a link, then they can be used.
Generation script (Linux)
#!/bin/bash
ncdPrefixes=("ncd.base" "ncd.cd" "ncd.coll" "ncd.colltype" "ncd.com"
"ncd.core" "ncd.ct" "ncd.di" "ncd.gr" "ncd.inst"
"ncd.itype" "ncd.or" "ncd.ost" "ncd.p" "ncd.proc"
"ncd.pub" "ncd.sp" "ncd.spm" "ncd.spmi" "ncd.t"
"ncd.tc" "ncd.tn" "ncd.to" "ncd.trank" )
# TODO unused: "TaxonOccurrenceInteraction.rdf" "TermWithSource.rdf"
ncdFiles=("Base.rdf" "ContactDetails.rdf" "Collection.rdf" "CollectionType.rdf" "Common.rdf"
"Core.rdf" "CyclicityTerm.rdf" "DigitalImage.rdf" "GeographicRegion.rdf" "Institution.rdf"
"InstitutionType.rdf" "OccurrenceRecord.rdf" "OccurrenceStatusTerm.rdf" "Person.rdf" "Procedure.rdf"
"PublicationCitation.rdf" "Specimen.rdf" "SpeciesProfileModel.rdf" "SPMInfoItems.rdf" "Team.rdf"
"TaxonConcept.rdf" "TaxonName.rdf" "TaxonOccurrence.rdf" "TaxonRank.rdf")
for (( i=0; i<${#ncdPrefixes[@]}; i++ ));do
fileName=${ncdFiles[$i]}
nsPrefix=${ncdPrefixes[$i]}
printf "%2d: %15s %s …" $((i + 1)) $nsPrefix $fileName
if [ -e $fileName ];then
if ! [ -d "./export" ];then
mkdir "./export"
fi
gawk --assign glob_coll_namespacePrefix="$nsPrefix" -f parseNCD.awk "${fileName%.*}.rdf" > "./export/${fileName%.*}.mwt"
printf " (OK)\n"
else
printf " (not existing)\n"
fi
done
#!/bin/awk
# BEGIN {} # block executed before processing
# END {} # block executed after processing
# FS input field separator (default: " ")
# RS record separator (default: newline)
# TODO
# 2012-12-05 18:13:45: glob_instanceOfClass als value mit rdfs:range innheralb des Klassennamens?
# 2012-11-27 11:04:50 check instances of Classes if they are assigned to the right concept type or/and instance-relation (skos:Collection or skos:inScheme or vann:termGroup etc)
##########################################
# This file converts NCD Collection.rdf
# into SMW {{#formlink}}. See also in the
# BEGIN {…} section. An adapted version of
# this file may also be applicable to the
# other RDF files in NCD scheme
#---- Usage: save this file as NCD-Collection.awk and execute:
# fileName="ContactDetails"; gawk --assign glob_coll_namespacePrefix="ncd.cd" -f parseNCD.awk "NCD-$fileName.rdf" > "NCD-$fileName.mwt"
##########################################
#### programm developer checks ###########
# Check for all elements within range of
# e.g. owl:DatatypeProperty to owl:DatatypeProperty
#
# sed --quiet "/owl:DatatypeProperty/,/owl:DatatypeProperty/{ s@\t*@@g; s@[ >].*@@g; p;}" "NCDTest-Collection.rdf" | sort --unique
# sed --quiet "/owl:ObjectProperty/,/owl:ObjectProperty/{ s@\t*@@g; s@[ >].*@@g; p;}" "NCDTest-Collection.rdf" | sort --unique
# sed --quiet "/owl:Class/,/owl:Class/{ s@\t*@@g; s@[ >].*@@g; p;}" "NCDTest-Collection.rdf" | sort --unique
# awk '$0~/<[A-Za-z]+ /{ print $0}' "NCDTest-Collection.rdf" | sed --quiet "s@.*\(<[A-Za-z]\+\).*@\1@g;p" | sort --unique
#--- check elements for instances of classes: get all instances in $filename and list all elements in it (just a programm developer check)
#--- just display execution command:
# filename="NCDTest-Collection.rdf";awk '$0~/<[A-Za-z]+ /{ print $0}' "$filename" | sed --quiet "s@.*<\([A-Za-z]\+\).*@\1@g;p" | sort --unique | sed "s@\(.*\)@sed --quiet \"/<\1/,/<\\\/\1/{ s\@\\\t*\@\@g; s\@[ >].*\@\@g; p;}\" \"$filename\" | sort --unique@"
## execute command:
# filename="NCDTest-Collection.rdf";awk '$0~/<[A-Za-z]+ /{ print $0}' "$filename" | sed --quiet "s@.*<\([A-Za-z]\+\).*@\1@g;p" | sort --unique | sed "s@\(.*\)@sed --quiet \"/<\1/,/<\\\/\1/{ s\@\\\t*\@\@g; s\@[ >].*\@\@g; p;}\" \"$filename\" | sort --unique@" | sh | sort --unique
# perl -pne 'BEGIN {undef $/} s/ │<!--\n\n-->\n\n<!--\n--> +/\n* /gm' NCDTest-Collection.mwt > NCDTest-Collection-export.mwt
##########################################
# GLOBAL VARIABLES start with glob_…
##########################################
BEGIN {
FS ="\"" # field separator to quotation mark " (default is " ")
if(glob_coll_namespacePrefix=="") {glob_coll_namespacePrefix="ncd.missing"}
}# BEGIN
####### functions start ##################
function ltrim(s) { sub(/^[ \t]+/, "", s); return s }
function rtrim(s) { sub(/[ \t]+$/, "", s); return s }
function trim(s) { return rtrim(ltrim(s)); }
function get_rdfsLabel() {
#<rdfs:label>Collection Identifier</rdfs:label>
return trim(gensub(/.*<(rdfs:label)>(.+)<\/rdfs:label>.*/, "\\2", "g", $0))
}# get_rdfsLabel
function get_attributeValueUrlEncoded() {
# must be FS="\"" !!
#<rdfs:domain rdf:resource="#Collection"/>
firstAttributeValue=$2
if (firstAttributeValue~/^#/) {
firstAttributeValue=gensub(/^#/, glob_coll_namespaceUriEncoded, "g", firstAttributeValue)
} else {
firstAttributeValue=gensub(/#/, "%23", "g", firstAttributeValue)
}
return firstAttributeValue
}# get_attributeValueUrlEncoded
function get_xmlDataElement (xpathQuery) {
# use xml_grep and sed to get trimmed single line values
# "xml_grep xml_grep --text_only --cond \"" xpathQuery "\" " FILENAME " | sed 's@^ *@@;:a;N;$!ba;s/\\n\\t\\+//g;'" | getline output
# has less features, e.g. get only the attribute
"xpath " FILENAME " \"" xpathQuery "\" 2>/dev/null | tr --delete '\\n' | sed 's@[ \\t]\\+@ @g;' " | getline output
# 2>/dev/null removes the xpath's script insertions like "-- NODE --"
output = gensub(/<a *href *= *['\"]([^'\">]+)['\"][^>]*>([^<]+)<\/a>/,"<nowiki>\\1</nowiki>", "g", output)#"
output = trim(output)
output = gensub(/<\/p> *<p>/,"</p>%0A%0A<p>", "g", output)
output = gensub(/[ \t]*<\/?p>[ \t]*/,"", "g", output)
output = gensub(/\[\.\.\.\]/,"[…]", "g", output)
return output
}
function get_conceptType(typeUrl){
switch (tolower(gensub(/.*#/,"", "g", typeUrl))) {
case "datatypeproperty":
type="data type"
case "class":
type="class"
case "value":
type="value"
default:
type="property"
}
return type
}
function emptyGlobalVariables() {
glob_conceptDefinition = "";
glob_conceptDomain = "";
glob_conceptID = "";
glob_conceptNotes = "";
glob_conceptRange = "";
glob_conceptType = "";
glob_rdfs_isDefinedBy = "";
glob_rdfs_Label = "";
glob_rdfs_subClassOf = "";
glob_rdfs_subPropertyOf = "";
glob_instanceOfClass = "";
}# emptyGlobalVariables
function create_formLink_Concept_collection() {
print "* {{#formlink: form=Concept collection\n" \
" |link text=" glob_coll_title " [[File:Pencil.png|link=]]\n" \
" |target=" glob_coll_title "\n" \
" |query string =<!--"
print "-->Concept collection[concept scheme]=Natural Collections Description<!--"
if (glob_coll_creators) {print "-->&Concept collection[creators]=" gensub(/ *\/ */, ", ", "g", glob_coll_creators) "<!--" }
if (glob_coll_description) {print "-->&Concept collection[description]=" glob_coll_description "<!--"}
if (glob_coll_notes) {print "-->&Concept collection[notes]=" glob_coll_notes "<!--"}
if (glob_coll_issued) {print "-->&Concept collection[issued]=" glob_coll_issued "<!--"}
if (glob_coll_modified) {print "-->&Concept collection[modified]=" glob_coll_modified "<!--"}
if (glob_coll_namespaceUriEncoded) {print "-->&Concept collection[preferred namespace uri]=<nowiki>" glob_coll_namespaceUriEncoded "</nowiki>" "<!--"}
if (glob_coll_namespacePrefix) {print "-->&Concept collection[preferred namespace prefix]=" glob_coll_namespacePrefix "<!--"}
print "-->}}\n----\n<!--"
}
function create_formLink(conceptID, kindOfConceptComment, startNewOutputSection) {
# use global variables to generate the form link
#### start ####
print ((startNewOutputSection == 0) ? "--> " : "-->\n*" ) \
" {{#formlink: form=Concept\n | link text =" \
glob_coll_namespacePrefix ":" conceptID " [[File:Pencil.png|link=]]\n | target =" glob_coll_namespacePrefix ":" conceptID "\n | query string =<!--" kindOfConceptComment
if (glob_rdfs_Label) print "-->Concept[label]=" glob_rdfs_Label "<!--"
# append all other fields
if (glob_conceptDefinition) print "-->&Concept[definition]=" trim(glob_conceptDefinition) "<!--"
if (glob_conceptNotes) print "-->&Concept[notes]=" trim(glob_conceptNotes) "<!--"
if (glob_conceptType) print "-->&Concept[concept type]=" trim(glob_conceptType) "<!--"
if (glob_rdfs_isDefinedBy)
print "-->&Concept[is defined by]=<nowiki>" trim(glob_rdfs_isDefinedBy) "</nowiki><!--"
else
print "-->&Concept[is defined by]=<nowiki>" glob_coll_namespace_isDefinedBy "</nowiki><!--"
#if (glob_conceptDomain || glob_conceptRange)
print "-->&Concept scheme relation[1][scheme]=Natural Collections Description<!--"
# if instance of class then restrict it to rdfs:domain
i_cr=1 # index concept relation
if (glob_instanceOfClass) glob_conceptDomain = glob_coll_namespaceUriEncoded glob_instanceOfClass
if (glob_conceptDomain) print "-->&Concept scheme relation[1][property domain]=<nowiki>" trim(glob_conceptDomain) "</nowiki><!--"
if (glob_conceptRange) print "-->&Concept scheme relation[1][property range]=<nowiki>" trim(glob_conceptRange) "</nowiki><!--"
if (glob_rdfs_subPropertyOf) {print "-->&Concept relation[" i_cr "][relation]=rdfs: subproperty of<!--"}
if (glob_rdfs_subPropertyOf) {print "-->&Concept relation[" i_cr "][uri]=<nowiki>" trim(glob_rdfs_subPropertyOf) "</nowiki><!--"
i_cr=i_cr +1
}
if (glob_rdfs_subClassOf) {print "-->&Concept relation[" i_cr "][relation]=rdfs: subclass of<!--"}
if (glob_rdfs_subClassOf) {print "-->&Concept relation[" i_cr "][uri]=<nowiki>" trim(glob_rdfs_subClassOf) "</nowiki><!--"
i_cr=i_cr +1
}
if (glob_coll_title) {print "-->&Concept relation[" i_cr "][relation]=skos: collection<!--"}
if (glob_coll_title) {print "-->&Concept relation[" i_cr "][internal page]=" glob_coll_title "<!--"
i_cr=i_cr +1
}
#### end ####
print "-->}} │<!--"
emptyGlobalVariables()
}# create_formLink
####### functions end ####################
########## Ontology (Collection) ################
/.*<owl:Ontology/,/.*<\/owl:Ontology>/ {
if ($0~/<owl:Ontology/) {
glob_coll_namespace_isDefinedBy=$2
glob_coll_namespaceUriEncoded=$2 "%23"
glob_coll_namespaceUri=$2 "#"
}
if ($0~/<dcterms:issued/) { glob_coll_issued=gensub(/.*([0-9]{4})-([0-9]{2})-([0-9]{2}).*/, "\\1%2F\\2%2F\\3", "g", get_xmlDataElement("*/owl:Ontology/dcterms:issued/text()")) }
if ($0~/<dcterms:modified/) { glob_coll_modified=gensub(/.*([0-9]{4})-([0-9]{2})-([0-9]{2}).*/, "\\1%2F\\2%2F\\3", "g", get_xmlDataElement("*/owl:Ontology/dcterms:modified/text()")) }
glob_coll_title = "NCD" gensub(/([A-Z])/, " \\1", "g", gensub(/(NCD-|\.rdf)/,"", "g", FILENAME))
if ($0~/<dc:publisher/) {}
if ($0~/<dc:creator/) {glob_coll_creators=get_xmlDataElement("*/owl:Ontology/dc:creator/text()")}
if ($0~/<dc:description/) {glob_coll_description=get_xmlDataElement("*/owl:Ontology/dc:description/node()")}
if ($0~/<rdfs:comment/) {glob_coll_notes=get_xmlDataElement("*/owl:Ontology/rdfs:comment/node()")}
if ($0~/<\/owl:Ontology>/) {
create_formLink_Concept_collection()
}
}
########## ObjectProperty ################
# in the range of <owl:ObjectProperty … </owl:ObjectProperty> do:
/.*<owl:ObjectProperty/,/.*<\/owl:ObjectProperty>/ {
glob_conceptType = "property"
# <rdfs:comment <rdfs:domain <rdfs:isDefinedBy <rdfs:label <rdfs:range <rdfs:subPropertyOf
# get glob_conceptID in <owl:ObjectProperty rdf:ID="collectionId">
if ($0~/.*<owl:ObjectProperty/) { # print $2 # check data
glob_conceptID=$2
glob_conceptDefinition = get_xmlDataElement("*/owl:ObjectProperty[@rdf:ID='" glob_conceptID "']/rdfs:comment/node()")
}
else {
if ($0~/<rdfs:label/) { glob_rdfs_Label = get_rdfsLabel() }
if ($0~/.*<rdfs:domain/) { glob_conceptDomain = get_attributeValueUrlEncoded() }
# print "domain: " glob_conceptDomain
if ($0~/.*<rdfs:range/) { glob_conceptRange = get_attributeValueUrlEncoded() }
# print "range: " glob_conceptRange
if ($0~/.*<rdfs:isDefinedBy/) { glob_rdfs_isDefinedBy = get_attributeValueUrlEncoded() }
# print "rdfs:isDefinedBy: " glob_rdfs_isDefinedBy
if ($0~/.*<rdfs:subPropertyOf/) { glob_rdfs_subPropertyOf = get_attributeValueUrlEncoded() }
# print "rdfs:subPropertyOf: " glob_rdfs_subPropertyOf
}# definitions within <owl:ObjectProperty>…</owl:ObjectProperty>
if ($0~/.*<\/owl:ObjectProperty>/) {
print create_formLink(glob_conceptID, "ObjectProperty")
}
}# values in ObjectProperty
########## DatatypeProperty ##############
# in the range of <owl:DatatypeProperty … </owl:DatatypeProperty> do:
/<owl:DatatypeProperty/,/<\/owl:DatatypeProperty>/ {
glob_conceptType="data type"
# <rdfs:comment <rdfs:domain <rdfs:isDefinedBy <rdfs:label <rdfs:range <rdfs:subPropertyOf
# get glob_conceptID in <owl:DatatypeProperty rdf:ID="collectionId">
if ($0~/.*<owl:DatatypeProperty/) { # print $2 # check data
glob_conceptID=$2
glob_conceptDefinition = get_xmlDataElement("*/owl:DatatypeProperty[@rdf:ID='" glob_conceptID "']/rdfs:comment/node()")
# print "rdfs:comment (definition): " glob_conceptDefinition
}
else {
if ($0~/.*<rdfs:label/) { glob_rdfs_Label = get_rdfsLabel() }
# print "rdfs:label: " glob_rdfs_Label
if ($0~/.*<rdfs:domain/) { glob_conceptDomain = get_attributeValueUrlEncoded() }
# print "domain: " glob_conceptDomain
if ($0~/.*<rdfs:range/) { glob_conceptRange = get_attributeValueUrlEncoded() }
if ($0~/.*<rdf:type/) { glob_conceptType = get_conceptType(get_attributeValueUrlEncoded()) }
# print "range: " glob_conceptRange
if ($0~/.*<rdfs:isDefinedBy/) { glob_rdfs_isDefinedBy = get_attributeValueUrlEncoded() }
# print "rdfs:isDefinedBy: " glob_rdfs_isDefinedBy
if ($0~/.*<rdfs:subPropertyOf/) { glob_rdfs_subPropertyOf = get_attributeValueUrlEncoded() }
# print "rdfs:subPropertyOf: " glob_rdfs_subPropertyOf
}# definitions within <owl:DatatypeProperty>…</owl:DatatypeProperty>
if ($0~/.*<\/owl:DatatypeProperty>/) {
#### Create the form link ####
print create_formLink(glob_conceptID, "DatatypeProperty")
}
}# values in DatatypeProperty
########## owl:Class and its instances ####
# Classes and instances of a particular class
$0~/<owl:Class/ {# Class definition starts
classNameID=$2
readingOwlClass=classNameID
glob_conceptDefinition = get_xmlDataElement("*/owl:Class[@rdf:ID='" classNameID "']/rdfs:comment/node()")
}# owl:Class
readingOwlClass != "" {
glob_conceptType = "class"
if ($0~/<rdfs:label>/) { glob_rdfs_Label = get_rdfsLabel() }
if ($0~/.*<rdfs:subClassOf/) { glob_rdfs_subClassOf = get_attributeValueUrlEncoded() }
# print "rdfs:subClassOf: " glob_rdfs_subClassOf
if ($0~/.*<rdfs:isDefinedBy/) { glob_rdfs_isDefinedBy = get_attributeValueUrlEncoded() }
# print "rdfs:isDefinedBy: " glob_rdfs_isDefinedBy
if ($0~/.*<rdf:type/) { glob_conceptType = get_conceptType(get_attributeValueUrlEncoded()) }
}
$0~/.*<\/owl:Class>/ {# Class definition closes
readingOwlClass=""
print create_formLink(classNameID, "Class", 1); # separate for output
}
# reading instances of this class
classNameID != "" {
if(index ($0, "<" classNameID ) > 0) {# an instance of the class was found, e.g. <PrimaryGroupingPrincipleTypeTerm …> of <owl:Class rdf:ID="PrimaryGroupingPrincipleTypeTerm">
glob_conceptType="value"
glob_conceptID=$2
readingInstanceOfClass=classNameID
}# a class property found
if(readingInstanceOfClass) {
if ($0~/.*<rdfs:label/) glob_rdfs_Label = get_rdfsLabel() # get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/rdfs:label/node()")
if ($0~/.*<rdfs:comment/) glob_conceptNotes = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/rdfs:comment/node()")
if ($0~/.*<dc:title/) { } # don't know yet what to do with it
if ($0~/.*<base:definition/) glob_conceptDefinition = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/base:definition/node()")
if ($0~/.*<tbase:definition/) glob_conceptDefinition = get_xmlDataElement("*/" classNameID "[@rdf:ID='" glob_conceptID "']/tbase:definition/node()")
if ($0~/.*<rdfs:subClassOf/) { glob_rdfs_subClassOf = get_attributeValueUrlEncoded() }
if ($0~/.*<rdf:type/) { glob_conceptType = get_conceptType(get_attributeValueUrlEncoded()) }
# no glob_rdfs_subPropertyOf but a glob_instanceOfClass
glob_instanceOfClass = classNameID
}
if(index ($0, "</" classNameID ">") > 0) {# the
readingInstanceOfClass=""
print create_formLink(glob_conceptID, "instance of class " classNameID);
}
}
# xml_grep --text_only "owl:Ontology/rdfs:comment" NCDTest-Collection.rdf | sed ':a;N;$!ba;s/\n\t\+//g; s@ *\t*\(.\+\) *\t*@\1@g'
# TODO properties in a class
Base
- ncd.base:BaseThing │
- ncd.base:Actor │
- ncd.base:Space │
- ncd.base:Name │
- ncd.base:DefinedTerm │ ncd.base:definition │
- ncd.base:MediaObject │
Core
- ncd.core:ContactInformation │
- ncd.core:Organisation │
- ncd.core:Collection │
- ncd.core:Description │
- ncd.core:Geolocalisation │
- ncd.core:Person │
- ncd.core:Place │
- ncd.core:PublicationCitation │
- ncd.core:Specimen │
- ncd.core:Concept │
- ncd.core:Identification │
- ncd.core:Team │
- ncd.core:Observation │
- ncd.core:Gathering │
Collection
- ncd.coll:Collection │
- ncd.coll:DerivedCollection │ ncd.coll:collectionId │ ncd.coll:isPartOfCollection │ ncd.coll:alternativeId │ ncd.coll:descriptionForSpecialists │ ncd.coll:collectionExtent │ ncd.coll:knownToContainTypes │ ncd.coll:primaryGroupingPrinciple │ ncd.coll:primaryPurpose │ ncd.coll:citeAs │ ncd.coll:formationPeriod │ ncd.coll:developmentStatus │ ncd.coll:conservationStatus │ ncd.coll:conservationStatusDate │ ncd.coll:usageRestrictions │ ncd.coll:hasContact │ ncd.coll:hasOwner │ ncd.coll:physicalLocation │ ncd.coll:kingdomCoverage │ ncd.coll:taxonCoverage │ ncd.coll:temporalCoverage │ ncd.coll:taxonCoverageStrength │ ncd.coll:commonNameCoverage │ ncd.coll:commonNameCoverageStrength │ ncd.coll:geospatialCoverage │ ncd.coll:geospatialCoverageStrength │ ncd.coll:geospatialCoordinates │ ncd.coll:livingTimePeriodCoverage │ ncd.coll:livingTimePeriodCoverageStrength │ ncd.coll:collectionType │ ncd.coll:specimenPreservationMethod │ ncd.coll:expeditionNameCoverage │ ncd.coll:collectorNameCoverage │ ncd.coll:relatedCollection │ ncd.coll:itemLevelAccess │
- ncd.coll:DevelopmentStatusTypeTerm │ ncd.coll:activegrowth │ ncd.coll:passivegrowth │ ncd.coll:consumable │ ncd.coll:static │ ncd.coll:decreasing │ ncd.coll:closed │ ncd.coll:lost │ ncd.coll:missing │
- ncd.coll:SpecimenPreservationMethodTypeTerm │ ncd.coll:noTreatment │ ncd.coll:notApplicable │ ncd.coll:fluidPreserved │ ncd.coll:frozen │ ncd.coll:dried │ ncd.coll:driedAndPressed │ ncd.coll:tanned │ ncd.coll:freezeDried │ ncd.coll:glycerin │ ncd.coll:surfaceCoating │ ncd.coll:slideMount │ ncd.coll:embedded │ ncd.coll:pinned │ ncd.coll:controlledAtmosphere │ ncd.coll:cryopreserved │ ncd.coll:recordedAnalog │ ncd.coll:recordedDigital │ ncd.coll:refrigerated │ ncd.coll:semstub │ ncd.coll:skeletonized │ ncd.coll:stasis │
- ncd.coll:PrimaryPurposeTypeTerm │ ncd.coll:research │ ncd.coll:education │ ncd.coll:exhibition │ ncd.coll:ornamental │ ncd.coll:Destructiveanalysis │ ncd.coll:monitoring │ ncd.coll:personal │ ncd.coll:voucher │ ncd.coll:commercial │
- ncd.coll:PrimaryGroupingPrincipleTypeTerm │ ncd.coll:spatial │ ncd.coll:Ecosystems │ ncd.coll:cultural │ ncd.coll:taxonomic │ ncd.coll:relationships │ ncd.coll:expeditions │ ncd.coll:environmental │ ncd.coll:temporal │ ncd.coll:repository │ ncd.coll:national │ ncd.coll:events │ ncd.coll:stage │
- ncd.coll:KingdomTypeTerm │ ncd.coll:Animalia │ ncd.coll:Plantae │ ncd.coll:Fungi │ ncd.coll:Protista │ ncd.coll:Eubacteria │ ncd.coll:Archaebacteria │
- ncd.coll:ConservationStatusTypeTerm │ ncd.coll:McGinley1 │ ncd.coll:McGinley2 │ ncd.coll:McGinley3 │ ncd.coll:McGinley4 │ ncd.coll:McGinley5 │ ncd.coll:McGinley6 │ ncd.coll:McGinley7 │ ncd.coll:McGinley8 │ ncd.coll:McGinley9 │ ncd.coll:McGinley10 │
CollectionType
- ncd.colltype:CollectionTypeTerm │ ncd.colltype:art │ ncd.colltype:living │ ncd.colltype:products │ ncd.colltype:cellcultures │ ncd.colltype:preserved │ ncd.colltype:observations │ ncd.colltype:visual │ ncd.colltype:fossils │ ncd.colltype:archival │ ncd.colltype:audio │ ncd.colltype:texts │ ncd.colltype:electronic │ ncd.colltype:facsimiles │ ncd.colltype:genetic │ ncd.colltype:taxonomic │ ncd.colltype:tissue │
Common
ncd.com:isDeprecated │ ncd.com:isRestricted │ ncd.com:versionedAs │ ncd.com:publishedIn │ ncd.com:publishedInCitation │ ncd.com:microReference │ ncd.com:note │ ncd.com:taxonomicPlacementFormal │ ncd.com:taxonomicPlacementInformal │ ncd.com:hasDigitalImage │ ncd.com:tcsEquivalence │ ncd.com:berlinModelEquivalence │ ncd.com:abcdEquivalence │ ncd.com:darwinCoreEquivalence │
ContactDetails
The NCD RDF sourcfile file is flawed:
- URL is not defined by http://www.w3.org/2001/vcard-rdf/3.0#URL check ContactDetails.rdf of NCD
- TYPE is not defined by http://www.w3.org/2001/vcard-rdf/3.0#TYPE check ContactDetails.rdf of NCD
- ncd.cd:ContactDetails │ ncd.cd:TEL │ ncd.cd:EMAIL │ ncd.cd:ADR │ ncd.cd:GEO │ ncd.cd:URL │ ncd.cd:LOGO │ ncd.cd:NOTE │
- ncd.cd:Address │ ncd.cd:TYPE │ ncd.cd:Pobox │ ncd.cd:Extadd │ ncd.cd:Street │ ncd.cd:Locality │ ncd.cd:Region │ ncd.cd:Pcode │ ncd.cd:Country │
- ncd.cd:ContactTypeTerm │
CyclicityTerm
- ncd.ct:CyclicityTerm │ ncd.ct:Circadian │ ncd.ct:SemiLunar │ ncd.ct:Lunar │ ncd.ct:Seasonal │ ncd.ct:Annual │
DigitalImage
DigitalImage.rdf seems wrong: <owl:Ontology rdf:about="http://rs.tdwg.org/ontology/voc/ContactDetails"> cannot be true, possibly <owl:Ontology rdf:about="http://rs.tdwg.org/ontology/voc/DigitalImage"> is correct