http://w3id.org/um/cbcm/eu-cm-ontology#authoredBy
(authoredBy ?ENTITY1 ?ENTITY2) means that ?ENTITY1 is an instance of a publication that is created primarily by the entity referred to by ?ENTITY2.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Company mobility document , Blank node (see implementation) | authored by | owl:Thing (inferred) |
@prefix cbcm: <http://w3id.org/um/cbcm/eu-cm-ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
cbcm:authoredBy a owl:ObjectProperty ;
rdfs:label "authored by"@en ;
cbcm:example "(authoredBy independentExpertReport1 independentExpert1)" ;
rdfs:comment "(authoredBy ?ENTITY1 ?ENTITY2) means that ?ENTITY1 is an instance of a publication that is created primarily by the entity referred to by ?ENTITY2."@en ;
rdfs:domain cbcm:CompanyMobilityDocument ;
rdfs:range [ a owl:Class ;
owl:unionOf ( cbcm:Organisation cbcm:Person ) ] ;
rdfs:seeAlso cbcm:authors ;
rdfs:subPropertyOf cbcm:cbcmDocumentRelation ;
owl:inverseOf cbcm:authors .