Ontology Version: 2.3.0

cacontology-undercover:SuspectCommunicationActionShape leaf node


URI

https://cacontology.projectvic.org/undercover#SuspectCommunicationActionShape

Label

Suspect Communication Action Shape

Description

Validation shape for criminal communication actions by suspects.

Shape Properties

Instances of cacontology-undercover:SuspectCommunicationAction can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-undercover:SuspectCommunicationAction
cacontology-undercover:occurredDuringOperation 0 1 cacontology-undercover:UndercoverOperation
0 1 rdf:langString

Implementation

@prefix cacontology-undercover: <https://cacontology.projectvic.org/undercover#> .
@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-undercover:SuspectCommunicationActionShape a sh:NodeShape ;
    rdfs:label "Suspect Communication Action Shape"@en ;
    rdfs:comment "Validation shape for criminal communication actions by suspects."@en ;
    sh:property [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Suspect communication action should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ],
        [ sh:class cacontology-undercover:UndercoverOperation ;
            sh:maxCount 1 ;
            sh:message "Suspect communication action should link to an undercover operation."@en ;
            sh:minCount 0 ;
            sh:path cacontology-undercover:occurredDuringOperation ] ;
    sh:targetClass cacontology-undercover:SuspectCommunicationAction .