https://cacontology.projectvic.org/institutional-exploitation#InstitutionalFounderShape
Validation shape for institutional founder roles with gUFO integration.
Instances of cacontology-institutional:InstitutionalFounder can have the following properties:
PROPERTY |
MIN COUNT |
MAX COUNT |
TYPE |
|
|---|---|---|---|---|
| cacontology-institutional:InstitutionalFounder | ||||
| cacontology-institutional:hasAuthorityLevel | 1 | 1 |
xsd:string
|
|
| cacontology-institutional:hasRoleStartDate | 1 | 1 |
xsd:dateTime
|
|
| cacontology-institutional:hasTrustLevel | 1 | 1 |
xsd:string
|
|
@prefix cacontology-institutional: <https://cacontology.projectvic.org/institutional-exploitation#> .
@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-institutional:InstitutionalFounderShape a sh:NodeShape ;
rdfs:label "Institutional Founder Shape"@en ;
rdfs:comment "Validation shape for institutional founder roles with gUFO integration."@en ;
sh:property [ sh:datatype xsd:dateTime ;
sh:maxCount 1 ;
sh:message "Founder role must have start date (gUFO temporal boundary)"@en ;
sh:minCount 1 ;
sh:path cacontology-institutional:hasRoleStartDate ],
[ sh:datatype xsd:string ;
sh:in ( "founder" "executive_director" "board_chair" "senior_leadership" "middle_management" ) ;
sh:maxCount 1 ;
sh:message "Founder must specify authority level (gUFO quality aspect)"@en ;
sh:minCount 1 ;
sh:path cacontology-institutional:hasAuthorityLevel ],
[ sh:datatype xsd:string ;
sh:in ( "absolute" "high" "moderate" "low" "compromised" "none" ) ;
sh:maxCount 1 ;
sh:message "Founder must specify trust level (gUFO quality aspect)"@en ;
sh:minCount 1 ;
sh:path cacontology-institutional:hasTrustLevel ] ;
sh:targetClass cacontology-institutional:InstitutionalFounder .