-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
time-prov: Drop alignment axioms that lead to deprecated property #1428
base: gh-pages
Are you sure you want to change the base?
time-prov: Drop alignment axioms that lead to deprecated property #1428
Conversation
The file time-prov.ttl provides a non-normative alignment between OWL-Time and PROV-O. One of the included suggestions is an alignment of `prov:endedAtTime` with `time:inXSDDateTime` via a property chain. Unfortunately, in the current draft of OWL-Time, `time:inXSDDateTime` is deprecated. A similar issue is present for `prov:startedAtTime` and `prov:atTime`. This patch drops alignment axioms that would lead an adopting user to cause their PROV-O data to yield deprecated property usage under OWL entailment. This contribution is made only by myself, and is not being made by the National Institute of Standards and Technology or any other organization. References: * w3c#1421 * https://www.w3.org/TR/2022/CRD-owl-time-20221115/#time:inXSDDateTime Signed-off-by: Alex Nelson <[email protected]>
Thanks @ajnelson-nist As you have noted, the proposed change is to a non-normative artefact which is provided informally in the repository. Nevertheless, these alignment axioms are also described in the Recommendation document at https://www.w3.org/TR/owl-time/#time-prov My feeling is that the property-chain axiom is a useful pointer, so I would be reluctant to remove it from the document, but maybe it needs to be hedged with some more wording. Note, however, that changes to the document also have to go through a larger process. Re. #1421 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I do not object to the removal of the non-normative example, but maybe leaving it in with some explanatory text would be more useful.
I've stumbled onto another syntactic reason for removal of the property chain axiom.
The last occurrence of
(I.e., each yi in the chain is defined as an object property. Notation is described in Section 3.2.1.) There is no corresponding mapping from RDF to the functional representation that reads
... would find that the parsing process described through Section 3 didn't exhaustively match the graph, making the graph OWL 2 FULL instead of OWL 2 DL. I saw a hint of this restriction on chains when I was first learning OWL and PROV-O some years ago. The Turtle encoding of PROV-O includes editorial notes like this: :endedAtTime
# ...
:editorialNote "It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime."@en ;
# ...
. I had thought it odd that they knew their intent enough to put it into English, but didn't encode it in Turtle. I can't guess to their reasoning back then, but I now think a reason is OWL 2 DL doesn't support a chain with a datatype property. So, it seems this PR also incidentally removes syntax that would move an adopter of this (non-normative) resource into OWL 2 FULL. @chris-little : Would adopting a similar informal description of the intended---but not encodable in OWL---property chain be satisfactory? E.g., borrowing and adapting the PROV-O wording style:
|
@ajnelson-nist You have pushed me well beyond my comfort zone. But if I understand correctly, the property chain would require OWL Full, which means some queries could be undecidable, which does not seem right for (simple) reasoning about time. I have been applying "when in doubt, cut it out" which may not be sensible. I need the other reviewers to jump in. |
The file time-prov.ttl provides a non-normative alignment between OWL-Time and PROV-O. One of the included suggestions is an alignment of
prov:endedAtTime
withtime:inXSDDateTime
via a property chain. Unfortunately, in the current draft of OWL-Time,time:inXSDDateTime
is deprecated. A similar issue is present forprov:startedAtTime
andprov:atTime
.This patch drops alignment axioms that would lead an adopting user to cause their PROV-O data to yield deprecated property usage under OWL entailment.
This contribution is made only by myself, and is not being made by the National Institute of Standards and Technology or any other organization.