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 schema:Place can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema:Place
schema:address 1 xsd:string
schema:geo 1 schema:GeoCoordinates
schema:telephone 1 xsd:string
schema:Thing
schema:alternateName xsd:string
schema:description 1
schema:identifier 1
schema:image 1
schema:name 1 1 xsd:string
schema:sameAs
schema: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 schema: <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:class schema: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 schema:geo ],
                    [ sh:datatype xsd:string ;
                        sh:description "The telephone number." ;
                        sh:maxCount 1 ;
                        sh:name "telephone" ;
                        sh:path schema:telephone ],
                    [ sh:datatype xsd:string ;
                        sh:description "Physical address of the item." ;
                        sh:maxCount 1 ;
                        sh:name "address" ;
                        sh:path schema:address ] ] ) ;
    sh:targetClass schema:Place .