Ontology Version: 2.2.0

cacontology-platforms:ContentModerationCrossReferenceShape leaf node


URI

https://cacontology.projectvic.org/platforms#ContentModerationCrossReferenceShape

Label

Content Moderation Cross Reference Shape

Description

Validates that content platforms have moderation capabilities.

Shape Properties

Instances of cacontology-platforms:VideoStreamingPlatform can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-platforms:VideoStreamingPlatform
cacontology-platforms:ageVerificationRequired 0 1 xsd:boolean
1 1 xsd:string

Implementation

@prefix cacontology-platforms: <https://cacontology.projectvic.org/platforms#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
cacontology-platforms:ContentModerationCrossReferenceShape a sh:NodeShape ;
    rdfs:label "Content Moderation Cross Reference Shape"@en ;
    rdfs:comment "Validates that content platforms have moderation capabilities."@en ;
    sh:sparql [ sh:message "Content platforms should have associated content moderation capabilities."@en ;
            sh:select """
            SELECT $this
            WHERE {
                $this a ?platformType .
                FILTER (?platformType IN (
                    cacontology-platforms:SocialMediaPlatform,
                    cacontology-platforms:VideoStreamingPlatform
                ))
                FILTER NOT EXISTS {
                    $this cacontology-platforms:hasContentModerationCapability ?moderation .
                }
            }
        """ ] ;
    sh:targetClass cacontology-platforms:SocialMediaPlatform,
        cacontology-platforms:VideoStreamingPlatform .