https://cacontology.projectvic.org/forensics#TemporalConsistencyBusinessRule
Instances of cacontology-forensics:TimelineAnalysisAction can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-forensics:TimelineAnalysisAction | ||||
| 1 |
xsd:double
|
|||
| cacontology-forensics:timelineEvent | 1 |
uco-core:UcoObject
|
||
| 1 |
xsd:string
|
|||
| 1 | 1 |
xsd:dateTimeStamp
|
||
| 1 |
uco-tool:Tool
|
|||
@prefix cacontology-forensics: <https://cacontology.projectvic.org/forensics#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-forensics:TemporalConsistencyBusinessRule a sh:NodeShape ;
sh:sparql [ sh:message "Timeline analysis must have sufficient temporal accuracy for evidence quality"@en ;
sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/forensics#"^^xsd:anyURI ;
sh:prefix "cacontology-forensics" ] ] ;
sh:select """
SELECT $this
WHERE {
$this cacontology-forensics:timelineScope "comprehensive" .
$this cacontology-forensics:temporalAccuracy ?accuracy .
FILTER (?accuracy < 0.9)
}
""" ] ;
sh:targetClass cacontology-forensics:TimelineAnalysisAction .