https://cacontology.projectvic.org/multi-jurisdiction#CoordinationConsistencyShape
Validates coordination consistency in multi-jurisdictional operations. - Enhanced coordination consistency validation with gUFO quality aspects.
Instances of cacontology-multi:MultiJurisdictionalOperation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-multi:MultiJurisdictionalOperation | ||||
| 1 | 1 |
xsd:string
|
||
| 1 |
xsd:string
|
|||
| 1 |
xsd:string
|
|||
| 1 |
xsd:string
|
|||
| 1 |
xsd:double
|
|||
| 1 |
xsd:double
|
|||
| cacontology-multi:jurisdictionCount | 1 | 1 |
xsd:nonNegativeInteger
|
|
| 1 | 1 |
xsd:string
|
||
| cacontology-multi:operationDuration | 0 | 1 |
xsd:decimal
|
|
| 1 | 1 |
xsd:string
|
||
| 0 | 1 |
xsd:dateTime
|
||
| 0 | 1 |
xsd:dateTime
|
||
@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:CoordinationConsistencyShape a sh:NodeShape ;
rdfs:label "Coordination Consistency Shape"@en ;
rdfs:comment "Enhanced coordination consistency validation with gUFO quality aspects."@en,
"Validates coordination consistency in multi-jurisdictional operations."@en ;
sh:sparql [ sh:message "Operations with many jurisdictions should have enhanced coordination."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-multi:jurisdictionCount ?count ;
cacontology-multi:coordinationLevel ?level .
FILTER (?count > 10 && ?level IN ("minimal", "basic"))
}
""" ],
[ sh:message "Operations with many jurisdictions should have enhanced coordination with high effectiveness (gUFO quality consistency)."@en ;
sh:select """
SELECT $this
WHERE {
$this cacontology-multi:jurisdictionCount ?count ;
cacontology-multi:coordinationLevel ?level ;
cacontology-multi:hasCoordinationEffectiveness ?effectiveness .
FILTER (?count > 10 && ?level IN ("minimal", "basic"))
FILTER (?effectiveness IN ("ineffective", "limited"))
}
""" ] ;
sh:targetClass cacontology-multi:MultiJurisdictionalOperation .