Ontology Version: 2.2.0

cacontology-legal-shapes:InternationalLawEnforcementShape leaf node


URI

https://cacontology.projectvic.org/legal-harmonization/shapes#InternationalLawEnforcementShape

Label

International Law Enforcement Shape

Description

Enhanced shape for international law enforcement with cooperation intensity assessment.

Shape Properties

Instances of cacontology-legal:InternationalLawEnforcement can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-legal:InternationalLawEnforcement
cacontology-legal:hasCooperationIntensity 1 xsd:string
1

Implementation

@prefix cacontology-legal: <https://cacontology.projectvic.org/legal-harmonization#> .
@prefix cacontology-legal-shapes: <https://cacontology.projectvic.org/legal-harmonization/shapes#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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-legal-shapes:InternationalLawEnforcementShape a sh:NodeShape ;
    rdfs:label "International Law Enforcement Shape"@en ;
    rdfs:comment "Enhanced shape for international law enforcement with cooperation intensity assessment."@en ;
    sh:property [ sh:hasValue gufo:EventType ;
            sh:message "Must be classified as gUFO EventType"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "moderate" "substantial" "intensive" "comprehensive" ) ;
            sh:maxCount 1 ;
            sh:message "Cooperation intensity should be assessed"@en ;
            sh:path cacontology-legal:hasCooperationIntensity ;
            sh:severity sh:Warning ] ;
    sh:targetClass cacontology-legal:InternationalLawEnforcement .