rescs:dash/place/PlaceShape leaf node


URI

http://rescs.org/dash/place/PlaceShape

Label

Place

Description

Entities that have a somewhat fixed, physical extension.

Target Classes (1)

Shape Properties

Instances of schema1:Place can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema1:Place
schema1:address 1 xsd:string
schema1:geo 1 schema1:GeoCoordinates
schema1:telephone 1 xsd:string
schema1:Thing
schema1:alternateName xsd:string
schema1:description 1
schema1:identifier 1
schema1:image 1
schema1:name 1 1 xsd:string
schema1:sameAs
schema1:url

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://rescs.org/dash/place/PlaceShape> a sh:NodeShape ;
    rdfs:label "Place"^^xsd:string ;
    rdfs:comment "Entities that have a somewhat fixed, physical extension."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/thing/ThingShape> ] [ sh:property [ sh:datatype xsd:string ;
                        sh:description "The telephone number." ;
                        sh:maxCount 1 ;
                        sh:name "telephone" ;
                        sh:path schema1:telephone ],
                    [ sh:class schema1:GeoCoordinates ;
                        sh:description "The geo coordinates of the place." ;
                        sh:maxCount 1 ;
                        sh:name "geo" ;
                        sh:node <http://rescs.org/dash/geocoordinates/GeoCoordinatesShape> ;
                        sh:nodeKind sh:BlankNode ;
                        sh:path schema1:geo ],
                    [ sh:datatype xsd:string ;
                        sh:description "Physical address of the item." ;
                        sh:maxCount 1 ;
                        sh:name "address" ;
                        sh:path schema1:address ] ] ) ;
    sh:targetClass schema1:Place .