Ontology Version: 2.2.0

cacontology-grooming:BoundaryTestingProgressionBusinessRule leaf node


URI

https://cacontology.projectvic.org/grooming#BoundaryTestingProgressionBusinessRule

Label

BoundaryTestingProgressionBusinessRule

Implementation

@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:BoundaryTestingProgressionBusinessRule a sh:NodeShape ;
    sh:sparql [ sh:message "High severity boundary violations require victim compliance response"@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:boundaryViolationSeverity ?severity ;
                      cacontology-grooming:victimResponse ?response .
                FILTER (?severity >= 8 && ?response = "resistance")
            }
        """ ] ;
    sh:targetClass cacontology-grooming:BoundaryTesting .