:isRequiredBy leaf node


URI

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

Label

is required by

Description

The transaction context is required by the trustor and the trustee.

Usage

DOMAINPROPERTYRANGE
:TransactionContext :isRequiredBy :ServiceProvider , :ServiceRequestor

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#> .

:isRequiredBy a owl:ObjectProperty ;
    rdfs:label "is required by"@en ;
    rdfs:comment "The transaction context is required by the trustor and the trustee."@en ;
    rdfs:domain :TransactionContext ;
    rdfs:range :ServiceProvider,
        :ServiceRequestor ;
    owl:inverseOf :requires .