ns1:hasArticle leaf node


URI

http://scigraph.springernature.com/ontologies/core/hasArticle

Label

Property: has article

Description

The :hasArticle property relates a publication-event to an article.

Usage

DOMAINPROPERTYRANGE
ns1:PublicationEvent ns1:hasArticle ns1:Article

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

ns1:hasArticle a owl:ObjectProperty ;
    rdfs:label "Property: has article"@en ;
    rdfs:comment "The :hasArticle property relates a publication-event to an article."@en ;
    rdfs:domain ns1:PublicationEvent ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Article .