Ontology Version: 2.2.0

cacontology-multi:LargeScaleResourceSharingRule leaf node


URI

https://cacontology.projectvic.org/multi-jurisdiction#LargeScaleResourceSharingRule

Label

Large Scale Resource Sharing Rule

Description

gUFO business rule: Large-scale resource sharing requires high availability and cost effectiveness.

Shape Properties

Instances of cacontology-multi:ResourceSharing can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-multi:ResourceSharing
1 1 xsd:string
1 xsd:double
1 xsd:string
1 xsd:double
cacontology-multi:resourceType 1 1 xsd:string
cacontology-multi:resourceValue 0 1 xsd:decimal
cacontology-multi:sharingDuration 1 1 xsd:decimal

Implementation

@prefix cacontology-multi: <https://cacontology.projectvic.org/multi-jurisdiction#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-multi:LargeScaleResourceSharingRule a sh:NodeShape ;
    rdfs:label "Large Scale Resource Sharing Rule"@en ;
    rdfs:comment "gUFO business rule: Large-scale resource sharing requires high availability and cost effectiveness."@en ;
    sh:sparql [ sh:message "High-value resource sharing must have good or better cost effectiveness (gUFO business rule)."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this cacontology-multi:resourceValue ?value .
                $this cacontology-multi:hasCostEffectiveness ?effectiveness .
                FILTER (?value > 500000)
                FILTER (?effectiveness IN ("poor", "fair"))
            }
        """ ] ;
    sh:targetClass cacontology-multi:ResourceSharing .