contained in leaf node


URI

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

Label

contained in

Description

(containedIn ?ENTITY1 ?ENTITY2) means that some document or publication ?ENTITY1 is archived or stored in some other document collection, database or data repository referred to by ?ENTITY2.

Usage

DOMAINPROPERTYRANGE
Company mobility document contained in Company mobility document repository

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:containedIn a owl:ObjectProperty ;
    rdfs:label "contained in"@en ;
    cbcm:example "(containedIn transactionNotice1 nationalRegistry1)"@en ;
    rdfs:comment "(containedIn ?ENTITY1 ?ENTITY2) means that some document or publication ?ENTITY1 is archived or stored in some other document collection, database or data repository referred to by ?ENTITY2."@en ;
    rdfs:domain cbcm:CompanyMobilityDocument ;
    rdfs:range cbcm:DocumentRepository ;
    rdfs:subPropertyOf cbcm:cbcmDocumentRelation .