Ontology Version: 2.2.0

cacontology-recruitment-shapes:SchoolSocialWorkerShape leaf node


URI

https://cacontology.projectvic.org/recruitment-networks/shapes#SchoolSocialWorkerShape

Label

School Social Worker Shape

Description

Validation shape for school social worker instances.

Shape Properties

Instances of cacontology-recruitment:SchoolSocialWorker can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-recruitment:SchoolStaffMember
cacontology-recruitment:employedAt 1 1 cacontology-recruitment:EducationalInstitution

Implementation

@prefix cacontology-recruitment: <https://cacontology.projectvic.org/recruitment-networks#> .
@prefix cacontology-recruitment-shapes: <https://cacontology.projectvic.org/recruitment-networks/shapes#> .
@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-recruitment-shapes:SchoolSocialWorkerShape a sh:NodeShape ;
    rdfs:label "School Social Worker Shape"@en ;
    rdfs:comment "Validation shape for school social worker instances."@en ;
    sh:property [ sh:datatype xsd:string ;
            sh:maxCount 1 ;
            sh:maxLength 100 ;
            sh:message "School social worker must have label 3-100 characters."@en ;
            sh:minCount 1 ;
            sh:minLength 3 ;
            sh:path rdfs:label ] ;
    sh:targetClass cacontology-recruitment:SchoolSocialWorker .