rescs:dash/localbusiness/LocalBusinessShape leaf node


URI

http://rescs.org/dash/localbusiness/LocalBusinessShape

Label

Local business

Description

A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc.

Target Classes (1)

Shape Properties

Instances of schema:LocalBusiness can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema:Organization
schema:address 1 xsd:string
schema:contactPoint 1 schema:ContactPoint
schema:department schema:Organization
schema:email 1 xsd:string
schema:funder
schema:keywords
schema:member
schema:parentOrganization schema:Organization
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/localbusiness/LocalBusinessShape> a sh:NodeShape ;
    rdfs:label "Local business"^^xsd:string ;
    rdfs:comment "A particular physical business or branch of an organization. Examples of LocalBusiness include a restaurant, a particular branch of a restaurant chain, a branch of a bank, a medical practice, a club, a bowling alley, etc."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/organization/OrganizationShape> ] ) ;
    sh:targetClass schema:LocalBusiness .