ROBOT

- - - - - - - - - -
view on github
getting started
common errors
chaining commands
global options
makefile
plugins
- - - - - - - - - -
annotate
collapse
convert
diff
expand
explain
export
export-prefixes
extract
filter
materialize
measure
merge
mirror
python
query
reason
reduce
relax
remove
rename
repair
report
template
unmerge
validate-profile
verify
- - - - - - - - - -
ROBOT is licensed under the
BSD 3-Clause License.
Theme by orderedlist

Equivalent Pair

Problem: An entity has a one-to-one equivalency with another entity. This may be intentional (assuming it is not annotated with is_inferred true), or it may be due to incorrect logic and the reasoner asserting the equivalency.

Solution: Ensure the reasoner is not incorrectly inferring equivalency. If so, update the logical axioms.

PREFIX owl: <http://www.w3.org/2002/07/owl#>

SELECT DISTINCT ?entity ?property ?value WHERE {
  VALUES ?property {owl:equivalentClass}
  ?entity ?property ?value .
  FILTER (!isBlank(?value))
}
ORDER BY ?entity