rescs:dash/service/ServiceShape leaf node


URI

http://rescs.org/dash/service/ServiceShape

Label

Service

Description

A service provided by an organization, e.g. delivery service, print services, etc.

Target Classes (1)

Shape Properties

Instances of schema1:Service can have the following properties:

PROPERTY

MIN COUNT

MAX COUNT

TYPE

schema1:Service
schema1:inLanguage xsd:string
schema1:isAccessibleForFree 1 xsd:boolean
schema1:keywords
schema1:provider 1
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/service/ServiceShape> a sh:NodeShape ;
    rdfs:label "Service"^^xsd:string ;
    rdfs:comment "A service provided by an organization, e.g. delivery service, print services, etc."^^xsd:string ;
    sh:and ( [ sh:node <http://rescs.org/dash/intangible/IntangibleShape> ] [ sh:property [ sh:description "The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller. Supersedes carrier." ;
                        sh:minCount 1 ;
                        sh:name "provider" ;
                        sh:or ( [ sh:class schema1:Person ;
                                    sh:nodeKind sh:IRI ] [ sh:class schema1:Organization ;
                                    sh:nodeKind sh:IRI ] ) ;
                        sh:path schema1:provider ],
                    [ sh:datatype xsd:string ;
                        sh:description "The language of the content or performance or used in an action. Please use one of the language codes from the [IETF BCP 47 standard](http://tools.ietf.org/html/bcp47). See also [[availableLanguage]]." ;
                        sh:name "inLanguage" ;
                        sh:path schema1:inLanguage ;
                        sh:pattern "^[a-z]{3}$" ],
                    [ sh:description "Keywords or tags used to describe this content. Multiple entries in a keywords list are typically delimited by commas." ;
                        sh:name "keywords" ;
                        sh:or ( [ sh:datatype xsd:string ] [ sh:datatype rdf:langString ] [ sh:nodeKind sh:IRI ] ) ;
                        sh:path schema1:keywords ],
                    [ sh:datatype xsd:boolean ;
                        sh:description "A flag to signal that the item, event, or place is accessible for free." ;
                        sh:maxCount 1 ;
                        sh:name "isAccessibleForFree" ;
                        sh:path schema1:isAccessibleForFree ] ] ) ;
    sh:targetClass schema1:Service .