gr:seeks leaf node


URI

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

Label

seeks (0..*)

Description

This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in (i.e., the buy side). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) gr:seeks gr:Offering

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:seeks a owl:ObjectProperty ;
    rdfs:label "seeks (0..*)"@en ;
    rdfs:comment "This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in (i.e., the buy side). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated."@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:Offering .