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

Unclear modeling of subPropertyOf #32

Open
nichtich opened this issue Apr 22, 2024 · 0 comments
Open

Unclear modeling of subPropertyOf #32

nichtich opened this issue Apr 22, 2024 · 0 comments

Comments

@nichtich
Copy link

Modeling with subPropertyOf is unclear.

The ontology states for instance:

:hasBearsDate rdf:type owl:ObjectProperty ;
              rdfs:subPropertyOf :hasAppearance ;

The documentation exemplifies (link to archive bc nomisma.org is down):

:Coin_1 nmo:hasApperance [ nmo:hasBearsDate "0231"^^<xsd:gYear> ] .

So with RDF inference the data would be expanded to:

:Coin_1 nmo:hasApperance [
  nmo:hasBearsDate "0231"^^<xsd:gYear> ;
  nmo:hasApperance "0231"^^<xsd:gYear>
] .

Is this intended? Reading the ontology I'd assume the example is wrong and it should instead be

:Coin_1 nmo:hasBearsDate "0231"^^<xsd:gYear> .

expanding to

:Coin_1 nmo:hasApperance "0231"^^<xsd:gYear> .
:Coin_1 nmo:hasBearsDate "0231"^^<xsd:gYear> .

I guess either the ontology statement is wrong (don't use subPropertyOf) or the example is wrong (don't use intermediate blank nodes).

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

No branches or pull requests

1 participant