Ontology Version: 2.2.0

cacontology-corruption-shapes:CorruptLawEnforcementOfficerShape leaf node


URI

https://cacontology.projectvic.org/law-enforcement-corruption/shapes#CorruptLawEnforcementOfficerShape

Label

Corrupt Law Enforcement Officer Shape

Description

Enhanced shape for corrupt officers with corruption dependency and trust betrayal assessments.

Shape Properties

Instances of cacontology-corruption:CorruptLawEnforcementOfficer can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-corruption:CorruptLawEnforcementOfficer
cacontology-corruption:authorityLevel 1 xsd:string
cacontology-corruption:corruptionDuration xsd:nonNegativeInteger
cacontology-corruption:departmentAffiliation 1 xsd:string
cacontology-corruption:employmentStatus 1 xsd:string
cacontology-corruption:hasCorruptionDependency 1 xsd:string
cacontology-corruption:hasPositionExploitationLevel 1 xsd:double
cacontology-corruption:hasTrustBetrayalLevel 1 xsd:string
cacontology-corruption:participatesIn 1 cacontology-corruption:LawEnforcementCorruption
cacontology-corruption:yearsOfService xsd:nonNegativeInteger
1

Implementation

@prefix cacontology-corruption: <https://cacontology.projectvic.org/law-enforcement-corruption#> .
@prefix cacontology-corruption-shapes: <https://cacontology.projectvic.org/law-enforcement-corruption/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-corruption-shapes:CorruptLawEnforcementOfficerShape a sh:NodeShape ;
    rdfs:label "Corrupt Law Enforcement Officer Shape"@en ;
    rdfs:comment "Enhanced shape for corrupt officers with corruption dependency and trust betrayal assessments."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "Department affiliation should be specified"@en ;
            sh:minLength 1 ;
            sh:path cacontology-corruption:departmentAffiliation ;
            sh:severity sh:Warning ],
        [ sh:hasValue gufo:Role ;
            sh:message "Must be classified as gUFO Role"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ sh:datatype xsd:string ;
            sh:in ( "low" "moderate" "high" "complete" "systemic" ) ;
            sh:maxCount 1 ;
            sh:message "Corruption dependency level should be assessed"@en ;
            sh:path cacontology-corruption:hasCorruptionDependency ;
            sh:severity sh:Warning ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Position exploitation level should be measured"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-corruption:hasPositionExploitationLevel ;
            sh:severity sh:Info ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "moderate" "significant" "severe" "complete" ) ;
            sh:maxCount 1 ;
            sh:message "Trust betrayal level should be assessed"@en ;
            sh:path cacontology-corruption:hasTrustBetrayalLevel ;
            sh:severity sh:Warning ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxInclusive 50 ;
            sh:message "Years of service should be reasonable"@en ;
            sh:minInclusive 0 ;
            sh:path cacontology-corruption:yearsOfService ;
            sh:severity sh:Warning ],
        [ sh:datatype xsd:string ;
            sh:in ( "patrol" "detective" "supervisor" "command" "executive" ) ;
            sh:maxCount 1 ;
            sh:message "Authority level should be specified"@en ;
            sh:path cacontology-corruption:authorityLevel ;
            sh:severity sh:Info ],
        [ sh:datatype xsd:string ;
            sh:in ( "active" "reserve" "retired" "terminated" "suspended" ) ;
            sh:maxCount 1 ;
            sh:message "Employment status should be specified"@en ;
            sh:path cacontology-corruption:employmentStatus ;
            sh:severity sh:Warning ] ;
    sh:targetClass cacontology-corruption:CorruptLawEnforcementOfficer .