Ontology Version: 2.2.0

cacontology-street:RecruitmentCrossReferenceShape leaf node


URI

https://cacontology.projectvic.org/street#RecruitmentCrossReferenceShape

Label

Recruitment Cross Reference Shape

Description

Validates cross-references between recruitment and related entities.

Shape Properties

Instances of cacontology-street:StreetBasedRecruitment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-street: <https://cacontology.projectvic.org/street#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-street:RecruitmentCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Recruitment Cross Reference Shape"@en ;
    rdfs:comment "Validates cross-references between recruitment and related entities."@en ;
    sh:sparql [ sh:message "Street-based recruitment should target at least one victim and occur at a location."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-street:StreetBasedRecruitment .
                FILTER NOT EXISTS {
                    $this cacontology-street:targetsVictim ?victim ;
                          cacontology-street:occursAt ?location .
                }
            }
        """ ] ;
    sh:targetClass cacontology-street:StreetBasedRecruitment .