:isRequestedBy leaf node


URI

https://liidr.org/trust-recommendation-in-social-internet-of-things/isRequestedBy

Label

is requested by

Description

A trust recommendation is requested by a trustee or a trustor

Usage

DOMAINPROPERTYRANGE
:TrustRecommendation :isRequestedBy :ServiceRequestor , :ServiceProvider

Implementation

@prefix : <https://liidr.org/trust-recommendation-in-social-internet-of-things/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

:isRequestedBy a owl:ObjectProperty ;
    rdfs:label "is requested by"@en ;
    rdfs:comment "A trust recommendation is requested by a trustee or a trustor"@en ;
    rdfs:domain :TrustRecommendation ;
    rdfs:range :ServiceProvider,
        :ServiceRequestor ;
    owl:inverseOf :requests .