Ontology Version: 2.2.0

cacontology-grooming:SexualConsequenceGameGroomingShape leaf node


URI

https://cacontology.projectvic.org/grooming#SexualConsequenceGameGroomingShape

Label

Sexual Consequence Game Grooming Shape

Description

Validation shape for physical-space 'sexual consequence game' grooming behaviors (Utah Christensen case), ensuring participant count and game context are captured for analytics.

Shape Properties

Instances of cacontology-grooming:SexualConsequenceGameGrooming can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-grooming:SexualConsequenceGameGrooming
cacontology-grooming:gameContext 0 1 xsd:string
cacontology-grooming:participantCount 0 1 xsd:nonNegativeInteger
cacontology-grooming:ruleStructureDescription 0 1 xsd:string
cacontology-grooming:GroomingBehavior
0 1 xsd:string
0 1 xsd:string
1 1 xsd:string
1 xsd:double
cacontology-grooming:groomingStage 1 1 xsd:string
1 xsd:string
1 xsd:dateTimeStamp
1 xsd:dateTimeStamp
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@prefix cacontology-grooming: <https://cacontology.projectvic.org/grooming#> .
@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-grooming:SexualConsequenceGameGroomingShape a sh:NodeShape ;
    rdfs:label "Sexual Consequence Game Grooming Shape"@en ;
    rdfs:comment "Validation shape for physical-space 'sexual consequence game' grooming behaviors (Utah Christensen case), ensuring participant count and game context are captured for analytics."@en ;
    sh:property [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:message "Sexual consequence game grooming should record at least one juvenile participant when participantCount is provided."@en ;
            sh:minCount 0 ;
            sh:minInclusive 1 ;
            sh:path cacontology-grooming:participantCount ],
        [ sh:datatype xsd:string ;
            sh:in ( "sleepover" "peer_group" "family_gathering" "youth_activity" ) ;
            sh:maxCount 1 ;
            sh:message "Game context, when provided, must be one of: sleepover, peer_group, family_gathering, youth_activity."@en ;
            sh:minCount 0 ;
            sh:path cacontology-grooming:gameContext ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 500 ;
            sh:message "Rule structure description, when provided, should be between 10 and 500 characters."@en ;
            sh:minCount 0 ;
            sh:minLength 10 ;
            sh:path cacontology-grooming:ruleStructureDescription ] ;
    sh:targetClass cacontology-grooming:SexualConsequenceGameGrooming .