Ontology Version: 2.7.0

cacontology-soe:LivestreamedCoercionShowShape leaf node


URI

https://cacontology.projectvic.org/soe#LivestreamedCoercionShowShape

Label

Livestreamed Coercion Show Shape

Description

Validation shape for livestreamed coercion show event instances.

Shape Properties

Instances of cacontology-soe:LivestreamedCoercionShow can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-soe:LivestreamedCoercionShow
cacontology-soe:coercionShowType 1 1 xsd:string
1 1 xsd:string
0 1 xsd:dateTime

Implementation

@prefix cacontology-soe: <https://cacontology.projectvic.org/soe#> .
@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 uco-action: <https://ontology.unifiedcyberontology.org/uco/action/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-soe:LivestreamedCoercionShowShape a sh:NodeShape ;
    rdfs:label "Livestreamed Coercion Show Shape"@en ;
    rdfs:comment "Validation shape for livestreamed coercion show event instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 300 ;
            sh:message "Livestreamed coercion show must have an rdfs:label (3-300 chars)."@en ;
            sh:minCount 1 ;
            sh:minLength 3 ;
            sh:path rdfs:label ],
        [ sh:datatype xsd:string ;
            sh:in ( "watch_party" "cut_show" "cut_stage" "stage" ) ;
            sh:maxCount 1 ;
            sh:message "coercionShowType must be one of: watch_party, cut_show, cut_stage, stage."@en ;
            sh:minCount 1 ;
            sh:path cacontology-soe:coercionShowType ],
        [ sh:datatype xsd:dateTime ;
            sh:maxCount 1 ;
            sh:message "Livestreamed coercion show may have startTime."@en ;
            sh:minCount 0 ;
            sh:path uco-action:startTime ] ;
    sh:targetClass cacontology-soe:LivestreamedCoercionShow .