Ontology Version: 2.2.0

cacontology-international:InformationSharingCrossReferenceShape leaf node


URI

https://cacontology.projectvic.org/international#InformationSharingCrossReferenceShape

Label

Information Sharing Cross Reference Shape

Description

Validates that information sharing agreements have data sharing partners.

Shape Properties

Instances of cacontology-international:InformationSharingAgreement can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-international:InformationSharingAgreement
1 xsd:string
1 xsd:double
cacontology-international:informationSharingLevel 0 1 xsd:string
cacontology-international:multilateralAgreement 0 1 xsd:boolean
cacontology-international:sharesDataWith 2 uco-identity:Organization
1 xsd:dateTime
1 xsd:dateTime
1 1 xsd:string

Implementation

@prefix cacontology-international: <https://cacontology.projectvic.org/international#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-international:InformationSharingCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Information Sharing Cross Reference Shape"@en ;
    rdfs:comment "Validates that information sharing agreements have data sharing partners."@en ;
    sh:sparql [ sh:message "Information sharing agreement should have data sharing partners."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a cacontology-international:InformationSharingAgreement .
                FILTER NOT EXISTS {
                    $this cacontology-international:sharesDataWith ?partner .
                    ?partner a uco-identity:Organization .
                }
            }
        """ ] ;
    sh:targetClass cacontology-international:InformationSharingAgreement .