Ontology Version: 2.2.0

cacontology-multi:InformationSharingShape leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#InformationSharingShape

Label

Information Sharing Shape

Description

Enhanced validation shape for information sharing instances with gUFO quality aspects.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@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-multi:InformationSharingShape a sh:NodeShape ;
    rdfs:label "Information Sharing Shape"@en ;
    rdfs:comment "Enhanced validation shape for information sharing instances with gUFO quality aspects."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "intelligence_sharing" "evidence_sharing" "case_information" "suspect_information" "victim_information" "operational_intelligence" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify sharing type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:sharingType ],
        [ sh:datatype xsd:string ;
            sh:in ( "unclassified" "law_enforcement_sensitive" "confidential" "secret" "top_secret" "compartmented" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify classification level from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:classificationLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "secure_database" "encrypted_email" "liaison_officer" "formal_request" "intelligence_bulletin" "joint_briefing" ) ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify sharing mechanism from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:sharingMechanism ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify if reciprocity is required."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:reciprocityRequired ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Information sharing must specify sharing date."@en ;
            sh:minCount 1 ;
            sh:path cacontology-multi:sharingDate ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Sharing efficiency must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasSharingEfficiency ],
        [ sh:datatype xsd:string ;
            sh:in ( "low" "moderate" "high" "very_high" "maximum" ) ;
            sh:maxCount 1 ;
            sh:message "Security level must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasSecurityLevel ],
        [ sh:datatype xsd:string ;
            sh:in ( "delayed" "slow" "timely" "fast" "real_time" ) ;
            sh:maxCount 1 ;
            sh:message "Timeliness must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasTimeliness ],
        [ sh:datatype xsd:string ;
            sh:in ( "minimal" "low" "moderate" "high" "critical" ) ;
            sh:maxCount 1 ;
            sh:message "Intelligence value must be from allowed values (gUFO quality aspect)."@en ;
            sh:path cacontology-multi:hasIntelligenceValue ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Actionability must be between 0.0 and 1.0 (gUFO quality aspect)."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-multi:hasActionability ] ;
    sh:targetClass cacontology-multi:InformationSharing .