Ontology Version: 2.2.0

cacontology-recruitment-shapes:RecruitmentConsistencyShape leaf node


URI

https://cacontology.projectvic.org/recruitment-networks/shapes#RecruitmentConsistencyShape

Label

Recruitment Consistency Shape

Description

Validates consistency between recruitment attempts and successes.

Shape Properties

Instances of cacontology-recruitment:VictimMediatedRecruitment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recruitment:VictimMediatedRecruitment
cacontology-recruitment:facilitatedBy 1 1 uco-identity:Person
cacontology-recruitment:recruitmentAttempts 0 1 xsd:nonNegativeInteger
cacontology-recruitment:successfulRecruitments 0 1 xsd:nonNegativeInteger

Implementation

@prefix cacontology-recruitment: <https://cacontology.projectvic.org/recruitment-networks#> .
@prefix cacontology-recruitment-shapes: <https://cacontology.projectvic.org/recruitment-networks/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-recruitment-shapes:RecruitmentConsistencyShape a sh:NodeShape ;
    rdfs:label "Recruitment Consistency Shape"@en ;
    rdfs:comment "Validates consistency between recruitment attempts and successes."@en ;
    sh:sparql [ sh:message "Successful recruitments cannot exceed total recruitment attempts."@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/recruitment-networks#"^^xsd:anyURI ;
                            sh:prefix "cacontology-recruitment" ] ] ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-recruitment:successfulRecruitments ?successful ;
                      cacontology-recruitment:recruitmentAttempts ?attempts .
                FILTER (?successful > ?attempts)
            }
        """ ] ;
    sh:targetClass cacontology-recruitment:VictimMediatedRecruitment .