@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . @prefix ns0: <https://w3id.org/timebank#> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix ns1: <https://w3id.org/> . ns0:accepts a owl:ObjectProperty ; rdfs:comment "Indicates that a user who is willing to help accepted the request." ; rdfs:domain ns0:User ; rdfs:isDefinedBy ns1:timebank ; rdfs:label "accepts" ; rdfs:range ns0:Request ; owl:inverseOf ns0:isAcceptedBy .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ns0: <https://w3id.org/timebank#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix ns1: <https://w3id.org/> .

ns0:accepts
    a owl:ObjectProperty ;
    rdfs:comment "Indicates that a user who is willing to help accepted the request." ;
    rdfs:domain ns0:User ;
    rdfs:isDefinedBy ns1:timebank ;
    rdfs:label "accepts" ;
    rdfs:range ns0:Request ;
    owl:inverseOf ns0:isAcceptedBy .