Ontology Version: 2.11.0

cacontology-registry:OffenderRegistrationCrossReferenceShape leaf node


URI

https://cacontology.projectvic.org/sex-offender-registry#OffenderRegistrationCrossReferenceShape

Label

Offender Registration Cross Reference Shape

Description

Validates that registered offenders have required registration records.

Implementation

@prefix cacontology-registry: <https://cacontology.projectvic.org/sex-offender-registry#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-registry:OffenderRegistrationCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Offender Registration Cross Reference Shape"@en ;
    rdfs:comment "Validates that registered offenders have required registration records."@en ;
    sh:sparql [ sh:message "Registered sex offender must have at least one registration record."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-registry:RegisteredSexOffender .
                FILTER NOT EXISTS {
                    $this cacontology-registry:hasRegistrationRecord ?record .
                    ?record a cacontology-registry:RegistrationRecord .
                }
            }
        """ ] ;
    sh:targetClass cacontology-registry:RegisteredSexOffender .