Ontology Version: 2.2.0

cacontology-multi:LawEnforcementAgencyShape leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#LawEnforcementAgencyShape

Label

Law Enforcement Agency Shape

Description

Enhanced validation shape for law enforcement agency instances with gUFO quality aspects.

Shape Properties

Instances of cacontology-multi:LawEnforcementAgency can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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-multi:LawEnforcementAgencyShape a sh:NodeShape ;
    rdfs:label "Law Enforcement Agency Shape"@en ;
    rdfs:comment "Enhanced validation shape for law enforcement agency instances with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "limited" "basic" "standard" "advanced" "elite" ) ;
            sh:maxCount 1 ;
            sh:message "Capability level must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasCapabilityLevel ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Cooperation willingness must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasCooperationWillingness ],
        [ sh:datatype xsd:string ;
            sh:in ( "insufficient" "limited" "adequate" "substantial" "extensive" ) ;
            sh:maxCount 1 ;
            sh:message "Resource capacity must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasResourceCapacity ] ;
    sh:targetClass cacontology-multi:LawEnforcementAgency .