prefix afn: prefix owl: prefix rdf: prefix xsd: prefix rdfs: ## # banner Text should not use special characters SELECT ?error WHERE { ?subject ?p ?o . FILTER NOT EXISTS {?o owl:deprecated "true"^^xsd:boolean} . FILTER (DATATYPE(?o)=xsd:string) FILTER regex(str(?subject), ) BIND (afn:localname (?p) AS ?prop) BIND ("[ÁáÇçÉéÍíÕõÖöäÄèÈμΜσΣʻa-zA-Z\\\\;'?@$%#&:/\"<*>,._+÷=)(\\[\\]{}0-9\n\t -]" AS ?reg) BIND (REPLACE (xsd:string (?o), ?reg, "") AS ?bads) FILTER (?bads != "") BIND (concat ("PRODERROR:", xsd:string(?o), " has a bad character |", ?bads, "|") AS ?error) }