gr:hasPOS leaf node


URI

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

Label

has POS (0..*)

Description

This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:hasPOS gr:Location

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:hasPOS a owl:ObjectProperty ;
    rdfs:label "has POS (0..*)"@en ;
    rdfs:comment "This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:BusinessEntity <http://schema.org/Organization> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:Location .