The ontology shown below is inconsistent.
Still running
stardogreasoning consistency ***database*** -u ***user*** -p ***password***
reports that it is consistent.
(Stardog server 7.6.0)
Thanks in advance,
Pawel
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix : <http://aaa.org/> .
:test_1 rdf:type owl:NamedIndividual, :Account ;
:hasOpenDate :test_2, :test_3 .
:test_2 rdf:type owl:NamedIndividual, :OpenDate .
:test_3 rdf:type owl:NamedIndividual, :OpenDate .
[ rdf:type owl:AllDifferent ;
owl:distinctMembers ( :test_2
:test_3
)
] .
:hasOpenDate
rdf:type owl:ObjectProperty ;
rdfs:label "has open date" ;
rdfs:range :OpenDate .
:Account
rdf:type owl:Class ;
rdfs:label "account" ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onClass :OpenDate ;
owl:onProperty :hasOpenDate ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger
] .