https://cacontology.projectvic.org/forensics#CorrelationEvidenceShape
Validates correlation evidence temporal scope and method.
Instances of cacontology-forensics:CorrelationEvidence can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-forensics:CorrelationEvidence | ||||
| cacontology-forensics:correlationMethod |
xsd:string
|
|||
| cacontology-forensics:correlationTimeWindowEnd | 1 |
xsd:dateTime
|
||
| cacontology-forensics:correlationTimeWindowStart | 1 |
xsd:dateTime
|
||
@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@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:CorrelationEvidenceShape a sh:NodeShape ;
rdfs:label "Correlation Evidence Shape"@en ;
rdfs:comment "Validates correlation evidence temporal scope and method."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Correlation time window start must be xsd:dateTime when specified."@en ;
sh:path cacontology-forensics:correlationTimeWindowStart ],
[ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Correlation time window end must be xsd:dateTime when specified."@en ;
sh:path cacontology-forensics:correlationTimeWindowEnd ],
[ sh:datatype xsd:string ;
sh:message "Correlation method must be a string when specified."@en ;
sh:path cacontology-forensics:correlationMethod ] ;
sh:targetClass cacontology-forensics:CorrelationEvidence .