Skip to content
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

Rulebase: accept rdfs:subClassOf and owl:equivalentClass as synonyms for spindle:expressedAs for classes #104

Open
nevali opened this issue Feb 13, 2017 · 1 comment

Comments

@nevali
Copy link
Member

nevali commented Feb 13, 2017

This would make it easier to generate a meaningful ontology or class diagram from the rulebase.

@nevali
Copy link
Member Author

nevali commented Feb 13, 2017

it may be necessary to add additional code to allow matching the object of these triples to the subjects of other spindle:expressedAs statements.

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant