Ontology Version: 2.2.0

cacontology-coord:IntelligenceSharingShape leaf node


URI

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

Label

Intelligence Sharing Shape

Description

Validation shape for intelligence sharing instances with gUFO integration.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-coord:IntelligenceSharing
cacontology-coord:hasActionability 1 xsd:double
cacontology-coord:hasIntelligenceValue 1 xsd:string
cacontology-coord:informationAccuracy 1 1 xsd:string
cacontology-coord:intelligenceType 1 1 xsd:string
cacontology-coord:sourceReliability 1 1 xsd:string
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 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:IntelligenceSharingShape a sh:NodeShape ;
    rdfs:label "Intelligence Sharing Shape"@en ;
    rdfs:comment "Validation shape for intelligence sharing instances with gUFO integration."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "tactical" "strategic" "operational" "technical" "threat_assessment" "pattern_analysis" ) ;
            sh:maxCount 1 ;
            sh:message "Intelligence sharing must specify intelligence type from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:intelligenceType ],
        [ sh:datatype xsd:string ;
            sh:in ( "reliable" "usually_reliable" "fairly_reliable" "not_usually_reliable" "unreliable" "unknown" ) ;
            sh:maxCount 1 ;
            sh:message "Intelligence sharing must specify source reliability from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:sourceReliability ],
        [ sh:datatype xsd:string ;
            sh:in ( "confirmed" "probably_true" "possibly_true" "doubtfully_true" "improbable" "cannot_be_judged" ) ;
            sh:maxCount 1 ;
            sh:message "Intelligence sharing must specify information accuracy from the allowed list."@en ;
            sh:minCount 1 ;
            sh:path cacontology-coord:informationAccuracy ],
        [ sh:datatype xsd:string ;
            sh:in ( "low" "moderate" "high" "critical" "exceptional" ) ;
            sh:maxCount 1 ;
            sh:message "Intelligence value level must be from allowed list (gUFO quality aspect)"@en ;
            sh:path cacontology-coord:hasIntelligenceValue ],
        [ sh:datatype xsd:double ;
            sh:maxCount 1 ;
            sh:maxInclusive 1.0 ;
            sh:message "Actionability score must be between 0.0 and 1.0 (gUFO quality aspect)"@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-coord:hasActionability ] ;
    sh:targetClass cacontology-coord:IntelligenceSharing .