Open GoogleCodeExporter opened 9 years ago
Bob: just adding here a couple of points we mentioned today and that I just put
in the minutes:
# An immediate benefit of the current approach is that we are very clear (at
least by looking at the ontology diagram) about the main use we want for the
properties. For example, we are at this point only interested in being able to
say that Systems and Manufacturers have points of contact.
# If we leave hasPointOfContact without any explicit domain (ie., with implicit
domain rdfs:Resource==anything), how can we emphasize the actual use we are
mostly interested in?
# As said in a previous meeting, the current approach does not prevent us from
introducing the most general properties later on and making the current
properties subproperties of the relevant ones (perhaps with some appropriate
renamings).
Original comment by caru...@gmail.com
on 10 Aug 2010 at 4:28
To summarise my current position on the points
# If we leave hasPointOfContact without any explicit domain (ie., with implicit
domain rdfs:Resource==anything), how can we emphasize the actual use we are
mostly interested in?
# An immediate benefit of the current approach is that we are very clear (at
least by looking at the ontology diagram) about the main use we want for the
properties. For example, we are at this point only interested in being able to
say that Systems and Manufacturers have points of contact.
My thought on these twp is that it may be a (probably very minor) feature lack
in the diagram generator. My suspicion is that OWL2's more extensive handling
of annotations can probably be used to accomplish the same thing, and probably
with minor reuse of the diagram generation code. I commit to looking into the
OWL2 spec to see if my suspicion has merit. Carlos should also poke around in
OWL2. Maybe we start in
http://ontolog.cim3.net/cgi-bin/wiki.pl?ConferenceCall_2010_07_29#nid2FYS
# As said in a previous meeting, the current approach does not prevent us from
introducing the most general properties later on and making the current
properties subproperties of the relevant ones (perhaps with some appropriate
renamings).
True, but it introduces a potential maintenance burden. It has to be done with
all properties to which this (undocumented?) policy applies. Even if such a
mechanism is desired, my above OWL2 suspicions suggest that the OWL2 annotation
mechanisms would allow a simple OWL2 annotation assertions to be written for
which an annotation reasoner would signal neglect to update Domains. On the
other hand, that may be needlessly complex if the real issue is mainly to help
developers know what is "expected" rather than required. BUT:
My bigger worry is that setting the Domain on a property might make it
difficult or impossible for two devont extensions to be simultaneously
consistent.
I commit to trying to make a simple example of this.
Original comment by morris.bob
on 10 Aug 2010 at 6:48
One more related MMI page:
http://marinemetadata.org/community/teams/ontdevices/ontbasicsproperties
Original comment by caru...@gmail.com
on 10 Aug 2010 at 11:35
[deleted comment]
[deleted comment]
've had occasion to look at the OWL2 Annotation Property support. Any
rdf:Property can be declared to be an owl2:AnnotationProperty, and although not
here necessary, you can reason on owl2:AnnotationProperties independently of
the regular properties in the ontology. (For example, (I believe) you can ask
SPARQL queries about AnnotationProperties that behave as expected through a
SubAnnotationProperty hierarchy.).
A small specific set of standard rdf:Property's are predefined as being
owl2:AnnotationProperty. But none seem suitable for this purpose. See
http://www.w3.org/TR/owl2-syntax/#Annotation_Properties
Something like this snippet of OWL2 in Manchester syntax might work:
AnnotationProperty: designTarget
AnnotationPropertyRange: xsd:anyURI
ObjectProperty: hasPointOfContact
Annotations:
designTarget : <http://URI_For_UnionOfSystemAndManufacturer>
...
Individual: <http://carlos.org/Systems/s1>
Types:
<http:mmi.org/uriForSystemClass>
Facts:
<http://mmi.org/devont#hasPointOfContact> <http://morris_systems.com/contacts#Bob>
<http://mmi.org/devont#someStringAttribute> "theValue"
....
Original comment by morris.bob
on 21 Sep 2010 at 4:52
Original issue reported on code.google.com by
caru...@gmail.com
on 10 Aug 2010 at 4:15