https://cacontology.projectvic.org/specialized-units#AffiliateOrganizationValidationShape
Validates affiliate organization relationships and status.
@prefix cacontology-specialized: <https://cacontology.projectvic.org/specialized-units#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-specialized:AffiliateOrganizationValidationShape a sh:NodeShape ;
rdfs:label "Affiliate Organization Validation Shape"@en ;
rdfs:comment "Validates affiliate organization relationships and status."@en ;
sh:sparql [ sh:message "Active affiliate organizations should have resource sharing or support relationships."@en ;
sh:select """
SELECT $this
WHERE {
$this a cacontology-specialized:ICACAffiliateOrganization ;
cacontology-specialized:affiliationStatus "active" .
FILTER NOT EXISTS {
{ $this cacontology-specialized:receivesResourceFrom ?sharing } UNION
{ $this cacontology-specialized:receivesSupportFrom ?support } UNION
{ $this cacontology-specialized:participatesInJointOperation ?operation }
}
}
""" ] ;
sh:targetClass cacontology-specialized:ICACAffiliateOrganization .