Ontology Version: 2.3.0

cacontology-undercover:SexualIntentStatementShape leaf node


URI

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

Label

Sexual Intent Statement Shape

Description

Validation shape for explicit sexual intent statements by suspects.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-undercover:SexualIntentStatement
cacontology-undercover:sexualActsIntended 0 1 xsd:string
cacontology-undercover:targetedBothPersonas 0 1 xsd:boolean
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 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:SexualIntentStatementShape a sh:NodeShape ;
    rdfs:label "Sexual Intent Statement Shape"@en ;
    rdfs:comment "Validation shape for explicit sexual intent statements by suspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "May specify types of sexual acts intended."@en ;
            sh:minCount 0 ;
            sh:path cacontology-undercover:sexualActsIntended ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "May specify if suspect targeted both personas in sibling operation."@en ;
            sh:minCount 0 ;
            sh:path cacontology-undercover:targetedBothPersonas ] ;
    sh:targetClass cacontology-undercover:SexualIntentStatement .