@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-grooming:TrustBuildingEffectivenessBusinessRule a sh:NodeShape ;
sh:sparql [ sh:message "High trust development rate requires consistent communication tactics"@en ;
sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/grooming#"^^xsd:anyURI ;
sh:prefix "cacontology-grooming" ] ] ;
sh:select """
SELECT $this
WHERE {
$this cacontology-grooming:trustDevelopmentRate ?rate ;
cacontology-grooming:usesCommunication ?comm .
?comm cacontology-grooming:communicationFrequency ?freq .
FILTER (?rate > 0.8 && ?freq IN ("sporadic", "weekly"))
}
""" ] ;
sh:targetClass cacontology-grooming:TrustBuilding .