https://cacontology.projectvic.org#InvestigationTemporalConsistencyShape
Instances of cacontology:CACInvestigation can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology:CACInvestigation | ||||
| cacontology:currentPhase | 1 |
cac-core:Phase
|
||
|
cac-core:Role
|
||||
@prefix cacontology: <https://cacontology.projectvic.org#> .
@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:InvestigationTemporalConsistencyShape a sh:NodeShape ;
rdfs:label "Investigation Temporal Consistency Shape"@en ;
sh:sparql [ sh:message "Investigation events must occur within phase timeframes"@en ;
sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org#"^^xsd:anyURI ;
sh:prefix "cacontology" ],
[ sh:namespace "http://purl.org/nemo/gufo#"^^xsd:anyURI ;
sh:prefix "gufo" ] ] ;
sh:select """
SELECT ?this
WHERE {
?this cacontology:hasPhase ?phase .
?phase cacontology:hasPhaseBeginPoint ?phaseBegin ;
cacontology:hasPhaseEndPoint ?phaseEnd .
?event cacontology:occursInSituation ?situation .
?event gufo:hasBeginPointInXSDDateTimeStamp ?eventBegin .
FILTER (?eventBegin < ?phaseBegin || ?eventBegin > ?phaseEnd)
}
""" ] ;
sh:targetClass cacontology:CACInvestigation .