Ontology Version: 2.3.0

cacontology-undercover:MotelShape leaf node


URI

https://cacontology.projectvic.org/undercover#MotelShape

Label

Motel Shape

Description

Validation shape for motel meeting location instances.

Target Classes (1)

Shape Properties

Instances of cacontology-undercover:Motel can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

cacontology-undercover:MeetingLocation
cacontology-undercover:arrangedTime 0 1 xsd:dateTime
cacontology-undercover:locationName 0 1 xsd:string
cacontology-undercover:roomNumber 0 1 xsd:string
0 1 rdf:langString

Implementation

@prefix cacontology-undercover: <https://cacontology.projectvic.org/undercover#> .
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
cacontology-undercover:MotelShape a sh:NodeShape ;
    rdfs:label "Motel Shape"@en ;
    rdfs:comment "Validation shape for motel meeting location instances."@en ;
    sh:property [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Motel should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ] ;
    sh:targetClass cacontology-undercover:Motel .