Ontology Version: 2.2.0

cacontology-undercover:CovertRecordingShape leaf node


URI

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

Label

Covert Recording Shape

Description

Validation shape for covert recording instances.

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:CovertRecordingShape a sh:NodeShape ;
    rdfs:label "Covert Recording Shape"@en ;
    rdfs:comment "Validation shape for covert recording instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "audio_only" "video_only" "audio_video" "screen_recording" "call_recording" "meeting_recording" ) ;
            sh:maxCount 1 ;
            sh:message "Covert recording must specify recording type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:recordingType ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "fair" "good" "excellent" "professional" ) ;
            sh:maxCount 1 ;
            sh:message "Covert recording must specify recording quality from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:recordingQuality ],
        [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 480.0 ;
            sh:message "Recording duration must be between 0.1 and 480 minutes (8 hours)."@en ;
            sh:minCount 1 ;
            sh:minInclusive 0.1 ;
            sh:path cacontology-undercover:recordingDuration ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Covert recording must specify if consent is required."@en ;
            sh:minCount 1 ;
            sh:path cacontology-undercover:consentRequired ] ;
    sh:targetClass cacontology-undercover:CovertRecording .