ns1:hasArticleType leaf node


URI

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

Label

Property: has article-type

Description

The :hasArticleType relates an article to an article-type.

Usage

DOMAINPROPERTYRANGE
ns1:Article ns1:hasArticleType ns1:ArticleType

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:hasArticleType a owl:ObjectProperty ;
    rdfs:label "Property: has article-type"@en ;
    rdfs:comment "The :hasArticleType relates an article to an article-type."@en ;
    rdfs:domain ns1:Article ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:ArticleType .