https://cacontology.projectvic.org/physical/shapes#ReliableAnalysisRule
Advanced gUFO business rule: Highly reliable analysis requires validated methods and high accuracy.
Instances of cacontology-physical:ForensicAnalystRole can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-physical:ForensicAnalystRole | ||||
| cacontology-physical:hasAnalysisAccuracy | 1 |
xsd:double
|
||
| cacontology-physical:hasAnalysisReliability | 1 |
xsd:string
|
||
| cacontology-physical:hasMethodValidation | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:string
|
||
| cac-core:Role | ||||
| cacontology-infrastructure:hasRoleBeginPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-infrastructure:hasRoleEndPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-multi:hasRoleBeginPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-multi:hasRoleEndPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-partnerships:hasRoleBeginPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-partnerships:hasRoleEndPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-physical:hasRoleBeginPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-physical:hasRoleEndPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology-production:hasRoleBeginPoint | 0 | 1 |
xsd:dateTimeStamp
|
|
| cacontology-production:hasRoleEndPoint | 0 | 1 |
xsd:dateTimeStamp
|
|
| cacontology:hasRoleBeginPoint | 1 |
xsd:dateTimeStamp
|
||
| cacontology:hasRoleEndPoint | 1 |
xsd:dateTimeStamp
|
||
| 0 |
cacontology:CACInvestigation
|
|||
@prefix cacontology-physical: <https://cacontology.projectvic.org/physical#> .
@prefix cacontology-physical-shapes: <https://cacontology.projectvic.org/physical/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-physical-shapes:ReliableAnalysisRule a sh:NodeShape ;
rdfs:label "Reliable Analysis Rule"@en ;
rdfs:comment "Advanced gUFO business rule: Highly reliable analysis requires validated methods and high accuracy."@en ;
sh:sparql [ sh:message "Highly reliable analysis must use validated methods and have high accuracy ratings (gUFO business rule)."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-physical:hasAnalysisReliability "highly_reliable" .
{
FILTER NOT EXISTS {
$this cacontology-physical:hasMethodValidation ?validation .
FILTER (?validation IN ("validated", "peer_reviewed", "certified"))
}
} UNION {
FILTER NOT EXISTS {
$this cacontology-physical:hasAnalysisAccuracy ?accuracy .
FILTER (?accuracy >= 0.9)
}
}
}
""" ] ;
sh:targetClass cacontology-physical:ForensicAnalystRole .