Ontology Version: 2.2.0

cacontology-corruption-shapes:DetectionActivityTypeValidationShape leaf node


URI

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

Label

Detection Activity Type Validation Shape

Description

Validates that detection and investigation activities are properly classified as gUFO EventTypes.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-corruption:InsiderThreatDetection
cacontology-corruption:hasEvidenceIntegrity 1 xsd:double
cacontology-corruption:hasInvestigationComplexity 1 xsd:string
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:DetectionActivityTypeValidationShape a sh:NodeShape ;
    rdfs:label "Detection Activity Type Validation Shape"@en ;
    rdfs:comment "Validates that detection and investigation activities are properly classified as gUFO EventTypes."@en ;
    sh:property [ sh:hasValue gufo:EventType ;
            sh:maxCount 1 ;
            sh:message "Detection activities must be classified as gUFO EventType"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ;
            sh:severity sh:Violation ],
        [ sh:message "Detection activities must extend gUFO Event"@en ;
            sh:path rdfs:subClassOf ;
            sh:qualifiedMinCount 1 ;
            sh:qualifiedValueShape [ sh:class gufo:Event ] ;
            sh:severity sh:Violation ] ;
    sh:targetClass cacontology-corruption:InsiderThreatDetection .