Open mprather opened 2 years ago
I think the text in sections 3.3.1.1 and 3.5.1.2 have recently been revised to clarify similar points. @mprather Can you please check and confirm if your concerns have adequately been addressed?
Notice that a description bundle only needs to import a vocabulary to use its annotation properties. Also, while a description bundle should import a vocabulary bundle (to get its closed world semantics), a description cannot and should not since it should maintain its open world semantics.
Description
In sections 3.3.1.1 and 3.5.1.2 of the OML language reference, the current text and example inform and lead the user to believe they should be using the namespace of the vocabulary. What is hidden is the fact that it may be highly preferrable to use the vocabulary bundle's namespace.
If the vocabulary bundle's namespace is used, the reason will use the bundle and then run the disjoint algorithm. This means the bundle.owl file that is created will have disjoint information.
If the namespace of the vocabulary is used instead of the bundle's namespace, disjoint information is not created and hence will not be available. This could alter reasoning significantly.
Steps to Reproduce
In either the description file or the vocabulary bundle file, if the namespace of the target vocabular is used, then Oml2OwlTask will not know to close the world and subsequently there will be no bundle.owl file that is created and thus no disjoint information for the vocabulary exists.
The result is that when the
uses
statement directly references a vocabulary file (in this casemonsid-types.owl
via catalog namespace mapping), there is no resulting disjoint information when the Oml2OwlTask runs.When the bundle's namespace used instead, a bundle.owl is created and the disjoint information exists within the file (see the following example).
Expected Behavior
In sections 3.3.1.1 and 3.5.1.2 (Description Imports Usage and Description Bundle Imports Usage, respectively), should clearly call out that referencing a bundle namespace will allow the creation of disjoint information. Otherwise, no disjoint information will be created.
Suggested wording:
where section NN.NN goes into detail about disjoints.