https://cacontology.projectvic.org/partnerships/shapes#InformationSharingSecurityRule
Advanced gUFO business rule: High data quality requires enhanced security levels.
Instances of cacontology-partnerships:InformationSharingFramework can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|---|
@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/shapes#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-partnerships-shapes:InformationSharingSecurityRule a sh:NodeShape ;
rdfs:label "Information Sharing Security Rule"@en ;
rdfs:comment "Advanced gUFO business rule: High data quality requires enhanced security levels."@en ;
sh:sparql [ sh:message "Excellent or verified data quality requires enhanced or high security levels (gUFO business rule)."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-partnerships:hasDataQuality ?quality .
FILTER (?quality IN ("excellent", "verified"))
FILTER NOT EXISTS {
$this cacontology-partnerships:hasSecurityLevel ?security .
FILTER (?security IN ("enhanced", "high", "maximum"))
}
}
""" ] ;
sh:targetClass cacontology-partnerships:InformationSharingFramework .