fibo2023Q3 / src /etc /testing /hygiene_parameterized /testHygiene_classes_subclassof_non-circular.sparql
wikipunk's picture
add FIBO Q3 2023 release to src
38b6321
raw
history blame
514 Bytes
prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>
prefix owl: <http://www.w3.org/2002/07/owl#>
prefix xsd: <http://www.w3.org/2001/XMLSchema#>
##
# banner Class subClassOf hierarchy shouldn't be circular.
SELECT DISTINCT ?error ?class
WHERE
{
FILTER regex(str(?class), <HYGIENE_TESTS_FILTER_PARAMETER>)
?class rdfs:subClassOf+ ?class .
FILTER NOT EXISTS {?class owl:deprecated "true"^^xsd:boolean} .
BIND (concat ("PRODERROR: There is a hierarchy cycle around class ", str(?class)) AS ?error)
}