Ontology Version: 2.2.0

cacontology-gufo:InvestigationCompletenessShape leaf node


URI

https://cacontology.projectvic.org/gufo#InvestigationCompletenessShape

Label

Investigation Completeness Shape

Target Classes (1)

Shape Properties

Instances of cacontology-gufo:Investigation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

Implementation

@prefix cacontology-gufo: <https://cacontology.projectvic.org/gufo#> .
@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-gufo:InvestigationCompletenessShape a sh:NodeShape ;
    rdfs:label "Investigation Completeness Shape"@en ;
    sh:sparql [ sh:message "Investigation must have coherent role and event participation"@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/gufo#"^^xsd:anyURI ;
                            sh:prefix "cacontology-gufo" ],
                        [ sh:namespace "https://cacontology.projectvic.org/gufo#"^^xsd:anyURI ;
                            sh:prefix "cacontology-gufo" ] ] ;
            sh:select """
            PREFIX cacontology-gufo: <https://cacontology.projectvic.org/gufo#>
            PREFIX gufo: <http://purl.org/nemo/gufo#>
            SELECT ?this
            WHERE {
                ?this cacontology-gufo:hasRole ?role .
                ?role cacontology-gufo:participatesInInvestigation ?this .
                FILTER NOT EXISTS {
                    ?role cacontology-gufo:participatesInEvent ?event .
                    ?event a gufo:Event .
                }
            }
        """ ] ;
    sh:targetClass cacontology-gufo:Investigation .