ns1:hasRoot leaf node


URI

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

Label

Property: has root

Description

The :hasRoot property relates a :Concept instance to a toplevel :Concept instance within the same domain model.

Usage

DOMAINPROPERTYRANGE
ns1:Concept ns1:hasRoot ns1:Concept

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:hasRoot a owl:ObjectProperty ;
    rdfs:label "Property: has root"@en ;
    rdfs:comment "The :hasRoot property relates a :Concept instance to a toplevel :Concept instance within the same domain model."@en ;
    rdfs:domain ns1:Concept ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range ns1:Concept .