Ontology Version: 2.2.0

cacontology-us-ncmec1:PlatformCooperationCrossReferenceShape leaf node


URI

https://cacontology.projectvic.org/us/ncmec#PlatformCooperationCrossReferenceShape

Label

Platform Cooperation Cross Reference Shape

Description

Validates that platform cooperation involves digital services.

Implementation

@prefix cacontology-us-ncmec1: <https://cacontology.projectvic.org/us/ncmec#> .
@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-us-ncmec1:PlatformCooperationCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Platform Cooperation Cross Reference Shape"@en ;
    rdfs:comment "Validates that platform cooperation involves digital services."@en ;
    sh:sparql [ sh:message "Platform cooperation should involve digital services."@en ;
            sh:prefixes [ sh:declare [ sh:namespace "https://cacontology.projectvic.org/us/ncmec#"^^xsd:anyURI ;
                            sh:prefix "icacus" ],
                        [ sh:namespace "https://ontology.unifiedcyberontology.org/uco/observable/"^^xsd:anyURI ;
                            sh:prefix "uco-observable" ] ] ;
            sh:select """
            SELECT $this WHERE {
                $this a cacontology-us-ncmec:PlatformCooperation .
                FILTER NOT EXISTS {
                    $this cacontology-us-ncmec:involvesPlatform ?platform .
                    ?platform a uco-observable:DigitalService .
                }
            }
        """ ] ;
    sh:targetClass cacontology-us-ncmec1:PlatformCooperation .