Ontology Version: 2.2.0

cacontology-gufo:InvestigationShape leaf node


URI

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

Label

gUFO Investigation 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 gufo: <http://purl.org/nemo/gufo#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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:InvestigationShape a sh:NodeShape ;
    rdfs:label "gUFO Investigation Shape"@en ;
    sh:property [ sh:hasValue gufo:Kind ;
            sh:message "Investigation must be typed as gUFO Kind"@en ;
            sh:minCount 1 ;
            sh:path rdf:type ],
        [ sh:class gufo:Phase ;
            sh:maxCount 1 ;
            sh:message "Investigation must be in exactly one phase"@en ;
            sh:minCount 1 ;
            sh:path cacontology-gufo:inPhase ],
        [ sh:class gufo:Role ;
            sh:message "Investigation must have at least one role"@en ;
            sh:minCount 1 ;
            sh:path cacontology-gufo:hasRole ] ;
    sh:targetClass cacontology-gufo:Investigation .