:actsAs leaf node


URI

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

Label

acts as

Description

A node acts as trustor or as trustee.

Usage

DOMAINPROPERTYRANGE
:Device :actsAs :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#> .

:actsAs a owl:ObjectProperty ;
    rdfs:label "acts as"@en ;
    rdfs:comment "A node acts as trustor or as trustee."@en ;
    rdfs:domain :Device ;
    rdfs:range :ServiceProvider,
        :ServiceRequestor ;
    owl:inverseOf :isActedBy .