We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This would make it easier to generate a meaningful ontology or class diagram from the rulebase.
The text was updated successfully, but these errors were encountered:
it may be necessary to add additional code to allow matching the object of these triples to the subjects of other spindle:expressedAs statements.
spindle:expressedAs
For example, the rulebase currently contains:
foaf:Agent a spindle:Class ; olo:index 30 ; rdfs:label "Agent"@en . dct:Agent spindle:expressedAs foaf:Agent . <http://www.tate.org.uk/ontologies/collection#Artist> spindle:expressedAs foaf:Agent . <http://dbpedia.org/ontology/Agent> spindle:expressedAs foaf:Agent .
It ought to be possible to express this as:
foaf:Agent a spindle:Class ; olo:index 30 ; rdfs:label "Agent"@en ; owl:equivalentClass dct:Agent . <http://dbpedia.org/ontology/Agent> owl:equivalentClass dct:Agent . <http://www.tate.org.uk/ontologies/collection#Artist> rdfs:subClassOf foaf:Agent .
Because this equivalence handling is all within a single graph, it ought to be somewhat simpler than Spindle's usual co-reference matching.
Sorry, something went wrong.
No branches or pull requests
This would make it easier to generate a meaningful ontology or class diagram from the rulebase.
The text was updated successfully, but these errors were encountered: