Ontology Version: 2.2.0

cacontology-coord:InformationSharingShape leaf node


URI

https://cacontology.projectvic.org/investigation-coordination#InformationSharingShape

Label

Information Sharing Shape

Description

Validation shape for information sharing instances with gUFO integration.

Shape Properties

Instances of cacontology-coord:InformationSharing can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:InformationSharing
cacontology-coord:classificationLevel 1 1 xsd:string
cacontology-coord:hasDataCompleteness 1 xsd:double
cacontology-coord:hasDataConsistency 1 xsd:double
cacontology-coord:hasDataQuality 1 xsd:string
cacontology-coord:hasSecurityLevel 1 xsd:string
cacontology-coord:hasSharingEfficiency 1 xsd:string
cacontology-coord:hasTimeliness 1 xsd:double
cacontology-coord:hasValidationLevel 1 xsd:string
cacontology-coord:reciprocity 1 1 xsd:boolean
cacontology-coord:sharingAgreement 1 1 xsd:boolean
cacontology-coord:sharingMechanism 1 1 xsd:string
cacontology-coord:sharingType 1 1 xsd:string
1 xsd:dateTime
1 xsd:dateTime
0 1 xsd:string
0 1 xsd:string
0 1 xsd:dateTime
0 1 xsd:dateTime

Implementation

@prefix cacontology-coord: <https://cacontology.projectvic.org/investigation-coordination#> .
@prefix gufo: <http://purl.org/nemo/gufo#> .
@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-coord:InformationSharingShape a sh:NodeShape ;
    rdfs:label "Information Sharing Shape"@en ;
    rdfs:comment "Validation shape for information sharing instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify if formal sharing agreement exists."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:sharingAgreement ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Information sharing may have start time (gUFO temporal boundary)"@en ;
            sh:path gufo:hasBeginPointInXSDDateTimeStamp ],
        [ sh:datatype xsd:string ;
            sh:in ( "poor" "fair" "good" "excellent" "optimal" ) ;
            sh:maxCount 1 ;
            sh:message "Sharing efficiency level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasSharingEfficiency ],
        [ sh:datatype xsd:string ;
            sh:in ( "basic" "standard" "enhanced" "high" "maximum" ) ;
            sh:maxCount 1 ;
            sh:message "Security level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasSecurityLevel ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Timeliness score must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasTimeliness ],
        [ sh:datatype xsd:string ;
            sh:in ( "intelligence_sharing" "evidence_sharing" "case_information" "suspect_information" "victim_information" "technical_data" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify sharing type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:sharingType ],
        [ sh:datatype xsd:string ;
            sh:in ( "unclassified" "law_enforcement_sensitive" "confidential" "restricted" "classified" "top_secret" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify classification level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:classificationLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "secure_email" "encrypted_portal" "database_access" "formal_request" "liaison_officer" "joint_briefing" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify sharing mechanism from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:sharingMechanism ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify if reciprocity is expected."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:reciprocity ] ;
    sh:targetClass cacontology-coord:InformationSharing .