Ontology Version: 2.2.0

cacontology-enterprises:ContentValueAssessmentShape leaf node


URI

https://cacontology.projectvic.org/extremist-enterprises#ContentValueAssessmentShape

Label

ContentValueAssessmentShape

Shape Properties

Instances of cacontology-enterprises:ContentValueAssessment can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-enterprises:ContentValueAssessment
cacontology-enterprises:contentValue 1 xsd:decimal

Implementation

@prefix cacontology-enterprises: <https://cacontology.projectvic.org/extremist-enterprises#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-enterprises:ContentValueAssessmentShape a sh:NodeShape ;
    sh:property [ sh:datatype xsd:decimal ;
            sh:maxCount 1 ;
            sh:maxInclusive 10.0 ;
            sh:message "Content value must be between 0.0 and 10.0."@en ;
            sh:minInclusive 0.0 ;
            sh:path cacontology-enterprises:contentValue ] ;
    sh:targetClass cacontology-enterprises:ContentValueAssessment .