Ontology Version: 2.2.0

cacontology-platforms:ContentModerationCapabilityShape leaf node


URI

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

Label

Content Moderation Capability Shape

Description

Validation shape for content moderation capability instances.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-platforms:ContentModerationCapability
cacontology-platforms:csaiDetectionEnabled 0 1 xsd:boolean
cacontology-platforms:hashMatchingEnabled 0 1 xsd:boolean
cacontology-platforms:moderationMethod 0 1 xsd:string
cacontology-platforms:moderationPresence 0 1 xsd:string

Implementation

@prefix cacontology-platforms: <https://cacontology.projectvic.org/platforms#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@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-platforms:ContentModerationCapabilityShape a sh:NodeShape ;
    rdfs:label "Content Moderation Capability Shape"@en ;
    rdfs:comment "Validation shape for content moderation capability instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:in ( "automated" "human_review" "hybrid" "user_reporting" "ai_assisted" "none" ) ;
            sh:maxCount 1 ;
            sh:message "Moderation method must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:moderationMethod ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "CSAI detection enablement must be a boolean value."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:csaiDetectionEnabled ],
        [ sh:datatype xsd:boolean ;
            sh:maxCount 1 ;
            sh:message "Hash matching enablement must be a boolean value."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:hashMatchingEnabled ],
        [ sh:datatype xsd:string ;
            sh:in ( "24/7" "business_hours" "limited" "none" "automated_only" ) ;
            sh:maxCount 1 ;
            sh:message "Moderation presence must be from the allowed list."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:moderationPresence ] ;
    sh:targetClass cacontology-platforms:ContentModerationCapability .