gr:owns leaf node


URI

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

Label

owns (0..*)

Description

This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers.

Note that the product must be an instance of the class gr:Individual.

This property can also be safely applied to foaf:Agent instances.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:owns gr:Individual

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:owns a owl:ObjectProperty ;
    rdfs:label "owns (0..*)"@en ;
    rdfs:comment """This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers.

Note that the product must be an instance of the class gr:Individual.

This property can also be safely applied to foaf:Agent instances."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( gr:BusinessEntity <http://schema.org/Organization> <http://schema.org/Person> ) ] ;
    rdfs:isDefinedBy <http://purl.org/goodrelations/v1> ;
    rdfs:range gr:Individual .