Ontology Version: 2.2.0

cacontology-international:MultilingualSupportShape leaf node


URI

https://cacontology.projectvic.org/international#MultilingualSupportShape

Label

Multilingual Support Shape

Description

Validation shape for multilingual support instances.

Shape Properties

Instances of cacontology-international:MultilingualSupport can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-international:MultilingualSupport
cacontology-international:languageSupport 1 50 xsd:string

Implementation

@prefix cacontology-international: <https://cacontology.projectvic.org/international#> .
@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-international:MultilingualSupportShape a sh:NodeShape ;
    rdfs:label "Multilingual Support Shape"@en ;
    rdfs:comment "Validation shape for multilingual support instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 50 ;
            sh:maxLength 50 ;
            sh:message "Language support must specify 1-50 languages (2-50 characters each)."@en ;
            sh:minCount 1 ;
            sh:minLength 2 ;
            sh:path cacontology-international:languageSupport ] ;
    sh:targetClass cacontology-international:MultilingualSupport .