ns1:hasSubject leaf node


URI

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

Label

Property: has subject

Description

The :hasSubject property relates a publication to a subject term which describes one of the main topics the publication is about.

Inherits from

Usage

DOMAINPROPERTYRANGE
ns1:Publication ns1:hasSubject ns1:Subject

Implementation

@prefix ns1: <http://scigraph.springernature.com/ontologies/core/> .
@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#> .

ns1:hasSubject a rdf:Property,
        owl:ObjectProperty ;
    rdfs:label "Property: has subject"@en ;
    rdfs:comment "The :hasSubject property relates a publication to a subject term which describes one of the main topics the publication is about."@en ;
    rdfs:domain ns1:Publication ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Subject ;
    rdfs:subPropertyOf ns1:hasCategory,
        ns1:hasSubject .