fibo2023Q3 / src /etc /testing /hygiene_parameterized /testHygiene_annotations_comment.sparql
wikipunk's picture
add FIBO Q3 2023 release to src
38b6321
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 rdfs:comment shouldn't be used for FIBO annotation.
SELECT DISTINCT ?error
WHERE
{
?subject rdfs:comment ?o .
FILTER NOT EXISTS {?subject owl:deprecated "true"^^xsd:boolean} .
FILTER regex(str(?subject), <HYGIENE_TESTS_FILTER_PARAMETER>)
BIND (concat ("PRODERROR: ", str(?subject), " has an rdfs:comment annotation: ", str(?o)) AS ?error)
}