Ontology Version: 2.7.0

cacontology-detection:RiskStratificationActionShape leaf node


URI

https://cacontology.projectvic.org/detection#RiskStratificationActionShape

Label

Risk Stratification Action Shape

Description

Validates risk stratification actions that produce explainable prioritization outputs.

Shape Properties

Instances of cacontology-detection:RiskStratificationAction can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-detection:RiskStratificationAction
cacontology-detection:hasDetectionBeginPoint 1 xsd:dateTimeStamp
cacontology-detection:hasDetectionEndPoint 1 xsd:dateTimeStamp
cacontology-detection:producesRiskStratificationResult 1
cacontology-detection:stratifiesDetectionResult 0
1

Implementation

@prefix cacontology-detection: <https://cacontology.projectvic.org/detection#> .
@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-detection:RiskStratificationActionShape a sh:NodeShape ;
    rdfs:label "Risk Stratification Action Shape"@en ;
    rdfs:comment "Validates risk stratification actions that produce explainable prioritization outputs."@en ;
    sh:property [ sh:message "Risk stratification action must produce at least one risk stratification result."@en ;
            sh:minCount 1 ;
            sh:path cacontology-detection:producesRiskStratificationResult ],
        [ sh:message "Risk stratification action may link to a detection result it stratifies."@en ;
            sh:minCount 0 ;
            sh:path cacontology-detection:stratifiesDetectionResult ] ;
    sh:targetClass cacontology-detection:RiskStratificationAction .