Ontology Version: 2.2.0

cacontology-partnerships-shapes:TechCooperationValidityShape leaf node


URI

https://cacontology.projectvic.org/partnerships/shapes#TechCooperationValidityShape

Label

Tech Cooperation Validity Shape

Description

Validates that tech industry cooperation includes at least one technology partner.

Shape Properties

Instances of cacontology-partnerships:TechIndustryCooperation can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-partnerships:PublicPrivatePartnership
1 1 xsd:boolean
1 xsd:string
1 xsd:string
cacontology-partnerships:hasPartnershipBeginPoint 1 xsd:dateTimeStamp
1 xsd:string
cacontology-partnerships:hasPartnershipEndPoint 1 xsd:dateTimeStamp
1 xsd:double
1 xsd:double
1 1 xsd:nonNegativeInteger
cacontology-partnerships:partnershipDuration 0 1 xsd:decimal
1 1 xsd:string

Implementation

@prefix cacontology-partnerships: <https://cacontology.projectvic.org/partnerships#> .
@prefix cacontology-partnerships-shapes: <https://cacontology.projectvic.org/partnerships/shapes#> .
@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-partnerships-shapes:TechCooperationValidityShape a sh:NodeShape ;
    rdfs:label "Tech Cooperation Validity Shape"@en ;
    rdfs:comment "Validates that tech industry cooperation includes at least one technology partner."@en ;
    sh:sparql [ sh:message "Tech industry cooperation must include at least one technology partner."@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/partnerships#"^^xsd:anyURI ;
                            sh:prefix "cacontology-partnerships" ] ] ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-partnerships:TechIndustryCooperation .
                FILTER NOT EXISTS {
                    $this cacontology-partnerships:includesPartner ?org .
                    ?org cacontology-partnerships:hasRole cacontology-partnerships:TechnologyPartner .
                }
            }
        """ ] ;
    sh:targetClass cacontology-partnerships:TechIndustryCooperation .