Ontology Version: 2.7.0

cacontology-platforms:ModerationThroughputMetricsShape leaf node


URI

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

Label

Moderation Throughput Metrics Shape

Description

Validates moderation throughput/latency metrics used to quantify bottlenecks.

Shape Properties

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

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-platforms:ModerationThroughputMetrics
cacontology-platforms:flagVolumePerMonth 0 1 xsd:nonNegativeInteger
cacontology-platforms:reviewLatencyHours 0 1 xsd:decimal
cacontology-platforms:throughputPerDay 0 1 xsd:nonNegativeInteger

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-platforms:ModerationThroughputMetricsShape a sh:NodeShape ;
    rdfs:label "Moderation Throughput Metrics Shape"@en ;
    rdfs:comment "Validates moderation throughput/latency metrics used to quantify bottlenecks."@en ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:message "Review latency hours must be a non-negative decimal when present."@en ;
            sh:minCount 0 ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-platforms:reviewLatencyHours ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:message "Throughput per day must be a non-negative integer when present."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:throughputPerDay ],
        [ sh:datatype xsd:nonNegativeInteger ;
            sh:maxCount 1 ;
            sh:message "Flag volume per month must be a non-negative integer when present."@en ;
            sh:minCount 0 ;
            sh:path cacontology-platforms:flagVolumePerMonth ] ;
    sh:targetClass cacontology-platforms:ModerationThroughputMetrics .