Ontology Version: 2.3.0

cacontology-sentencing:ComputerSeduceSolicitLureShape leaf node


URI

https://cacontology.projectvic.org/sentencing#ComputerSeduceSolicitLureShape

Label

Computer Seduce Solicit Lure Shape

Description

Validation shape for F.S. 847.0135(3) computer solicitation charges. - Validation shape for Florida computer lure charges.

Shape Properties

Instances of cacontology-sentencing:ComputerSeduceSolicitLure can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-sentencing:ComputerSeduceSolicitLure
cacontology-sentencing:communicationPlatform 0 1 xsd:string
0 1 xsd:string
cacontology-sentencing:solicitationType 1 1 xsd:string
0 1 rdf:langString
cacontology-sentencing:FloridaStateCharge
cacontology-sentencing:chargeClassification 0, 1 1 xsd:string
cacontology-sentencing:floridaStatute 0, 1 1 xsd:string
0 1 rdf:langString

Implementation

@prefix cacontology-sentencing: <https://cacontology.projectvic.org/sentencing#> .
@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-sentencing:ComputerSeduceSolicitLureShape a sh:NodeShape ;
    rdfs:label "Computer Seduce Solicit Lure Shape"@en ;
    rdfs:comment "Validation shape for F.S. 847.0135(3) computer solicitation charges."@en,
        "Validation shape for Florida computer lure charges."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "seduce" "solicit" "lure" "entice" "multiple" ) ;
            sh:maxCount 1 ;
            sh:message "Must specify type of solicitation from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-sentencing:solicitationType ],
        [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:message "May specify the communication platform used."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sentencing:communicationPlatform ],
        [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Computer lure charge should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:string ;
            sh:in ( "messaging app" "social media" "email" "chat room" "gaming platform" "video chat" "other" ) ;
            sh:maxCount 1 ;
            sh:message "Computer lure method should be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-sentencing:computerLureMethod ] ;
    sh:targetClass cacontology-sentencing:ComputerSeduceSolicitLure .