https://cacontology.projectvic.org/forensics#AttributionAssessmentShape
Validates attribution assessments linking observables to a controlling subject.
Instances of cacontology-forensics:AttributionAssessment can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-forensics:AttributionAssessment | ||||
| cacontology-forensics:attributionConfidence | 1 |
xsd:string
|
||
| cacontology-forensics:supportedByCorrelation | ||||
| cacontology-forensics:supportsAttributionOf | ||||
@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@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-forensics:AttributionAssessmentShape a sh:NodeShape ;
rdfs:label "Attribution Assessment Shape"@en ;
rdfs:comment "Validates attribution assessments linking observables to a controlling subject."@en ;
sh:property [ sh:datatype xsd:string ;
sh:in ( "high" "medium" "low" ) ;
sh:maxCount 1 ;
sh:message "Attribution confidence must be one of: high, medium, low."@en ;
sh:path cacontology-forensics:attributionConfidence ],
[ sh:message "supportedByCorrelation must reference correlation evidence nodes."@en ;
sh:nodeKind sh:IRI ;
sh:path cacontology-forensics:supportedByCorrelation ],
[ sh:message "supportsAttributionOf must reference person nodes."@en ;
sh:nodeKind sh:IRI ;
sh:path cacontology-forensics:supportsAttributionOf ] ;
sh:targetClass cacontology-forensics:AttributionAssessment .