tetherless-world / dco-ontology

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

Is dco:inOrganization a duplicate of an already existing property for organizations? #23

Open mrpatrickwest opened 9 years ago

mrpatrickwest commented 9 years ago

Not sure what that property is, but it includes a time range and other information, I believe.

dco:inOrganization
      a       owl:AnnotationProperty , owl:ObjectProperty ;
      rdfs:domain foaf:Person ;
      rdfs:label "organization"@en-US ;
      rdfs:range foaf:Organization ;
      rdfs:subPropertyOf dco:inOrganization , owl:topObjectProperty ;
      owl:inverseOf dco:hasPeople .
zednis commented 9 years ago

I believe (based on some queries and looking at the RDF) this is the modeling VIVO uses for the faux property associating a person with an organization.

ex:person1
  a foaf:Person ;
  vivo:relatedBy ex:position1 ;
.

ex:position1
  a vivo:Postion, vivo:Relationship ;
  rdfs:label "head gomba" ;
  vivo:relates ex:org1, ex:person1 ;
  vivo:dateTimeInterval [
    a vivo:DateTimeInterval ;
    vivo:start [
      a vivo:DateTimeValue ;
      vivo:dateTime "2008-01-01T00:00:00"^^xsd:dateTime ;
      vivo:dateTimePrecision vivo:yearPrecision .
    ] ;
  ] .

ex:org1
  a foaf:Organization ;
  vivo:relatedBy ex:position1 .