-
Notifications
You must be signed in to change notification settings - Fork 0
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
Add option to trigger OWL validation on load #20
Comments
Validation The most common reasoner operation which can't be exposed through additional triples in the inference model is that of validation. Typically the ontology languages used with the semantic web allow constraints to be expressed, the validation interface is used to detect when such constraints are violated by some data set. https://jena.apache.org/documentation/inference/#validation For example, to check a data set and list any problems one could do something like:
|
Housekeeping RDFModel
RDFModel
RDFModelConfigurationDialog
RDFModel
Test
|
The validation of |
We needed to change the call that creates the empty
|
There may be the need to offer more than one type of validation in the future. There are different options within Jena, based on the type of reasoner for example. Furthermore, there are other validation tools outside of Jena that could be connected to the EMC driver offering a wider array of validation tools. |
Change the internal property representation for validation to a text string, which can be used for a wider scope of validation processes.
|
By default, Jena does not validate the RDF graph against the RDFS schema. We may want to add an option that triggers validation and either produces warnings or throws an exception when enabled.
The text was updated successfully, but these errors were encountered: