maintained by leaf node


URI

http://w3id.org/um/cbcm/eu-cm-ontology#maintainedBy

Label

maintained by

Description

(maintainedBy ?ENTITY1 ?ENTITY2) means that some digital resource ?ENTITY1 (e.g. database, website, document repository etc.) has stewardship by some agent or organisation ?ENTITY2 who is responsible for the upkeep of ?ENTITY1.

Usage

DOMAINPROPERTYRANGE
owl:Thing (inferred) maintained by owl:Thing (inferred)

Implementation

@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

cbcm:maintainedBy a owl:ObjectProperty ;
    rdfs:label "maintained by"@en ;
    cbcm:example "(maintainedBy officialJournalRepository1 officialJournalAdministration1)"@en ;
    rdfs:comment "(maintainedBy ?ENTITY1 ?ENTITY2) means that some digital resource ?ENTITY1 (e.g. database, website, document repository etc.) has stewardship by some agent or organisation ?ENTITY2 who is responsible for the upkeep of ?ENTITY1."@en ;
    rdfs:subPropertyOf cbcm:cbcmDocumentRelation ;
    owl:inverseOf cbcm:maintains .