Ontology Version: 2.3.0

cacontology-undercover:ShortTermRentalShape leaf node


URI

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

Label

Short Term Rental Shape

Description

Validation shape for short-term rental meeting location instances.

Shape Properties

Instances of cacontology-undercover:ShortTermRental 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:ShortTermRentalShape a sh:NodeShape ;
    rdfs:label "Short Term Rental Shape"@en ;
    rdfs:comment "Validation shape for short-term rental meeting location instances."@en ;
    sh:property [ sh:datatype rdf:langString ;
            sh:maxCount 1 ;
            sh:message "Short-term rental should have a label."@en ;
            sh:minCount 0 ;
            sh:path rdfs:label ] ;
    sh:targetClass cacontology-undercover:ShortTermRental .