gr:hasOpeningHoursSpecification leaf node


URI

http://purl.org/goodrelations/v1#hasOpeningHoursSpecification

Label

has opening hours specification (0..*)

Description

This property links a gr:Location to a gr:OpeningHoursSpecification.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasOpeningHoursSpecification gr:OpeningHoursSpecification

Implementation

@prefix gr: <http://purl.org/goodrelations/v1#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

gr:hasOpeningHoursSpecification a owl:ObjectProperty ;
    rdfs:label "has opening hours specification (0..*)"@en ;
    rdfs:comment "This property links a gr:Location to a gr:OpeningHoursSpecification."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:Location <http://schema.org/Place> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:OpeningHoursSpecification .