@prefix : <https://w3id.org/citydata/part3/v1/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <https://w3id.org/citydata/part3/v1/> .

<https://w3id.org/citydata/part3/v1/CoreSHACL> rdf:type owl:Ontology ;
                                                owl:imports :CorePattern ;
                                                dcterms:title "City Data Model Part 3 - Core - SHACL constraints" ;
                                                vann:preferredNamespacePrefix "cdm3" ;
                                                vann:preferredNamespaceUri "https://w3id.org/citydata/part3/v1/" ;
                                                skos:definition "SHACL validation shapes for the Core pattern module, including reusable cardinality shapes." .

#################################################################
#    Shapes
#################################################################

###  https://w3id.org/citydata/part3/v1/ExactlyOneShape
:ExactlyOneShape rdf:type sh:NodeShape ;
                 sh:maxCount "1"^^xsd:integer ;
                 sh:minCount "1"^^xsd:integer .


###  https://w3id.org/citydata/part3/v1/MaxOneShape
:MaxOneShape rdf:type sh:NodeShape ;
             sh:maxCount "1"^^xsd:integer .


###  https://w3id.org/citydata/part3/v1/MinOneShape
:MinOneShape rdf:type sh:NodeShape ;
             sh:minCount "1"^^xsd:integer .
