tetherless-world / dco-ontology

Deep Carbon Observatory Ontology
Creative Commons Zero v1.0 Universal
1 stars 0 forks source link

dco:dcoId is a datatype property but is used as an object property in the VIVO instance data. #49

Open zednis opened 9 years ago

zednis commented 9 years ago

I could have put this ticket in the dco-vivo repository as well.

the dco:dcoIdproperty is defined as a datatype property in the ontology:

dco:dcoId
      a       owl:FunctionalProperty , owl:DatatypeProperty ;
      rdfs:domain dco:Object ;
      rdfs:label "DCO ID"@en-US ;
      rdfs:range xsd:anyURI ;
      rdfs:subPropertyOf owl:topDataProperty , dco:dcoId .

but has a resource value in the VIVO instance data:

http://info.deepcarbon.net/individual/da5b50ce3-2877-4e9f-9ba4-f645d811bf43> a dco:Engineer,
   dco:dcoId <http://dx.deepcarbon.net/11121/6277-7638-1543-1639-CC> ;

A usage consistent with the property definition would look like this:

http://info.deepcarbon.net/individual/da5b50ce3-2877-4e9f-9ba4-f645d811bf43> a dco:Engineer,
   dco:dcoId "http://dx.deepcarbon.net/11121/6277-7638-1543-1639-CC"^^xsd:anyURI ;