ns1:subtypeLabel leaf node


URI

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

Label

Property: subtype label

Description

The :subtypeLabel property specifies a label for a subject subtyoe.

Inherits from

Usage

DOMAINPROPERTYRANGE
ns1:Subject ns1:subtypeLabel xsd:string

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

ns1:subtypeLabel a owl:DatatypeProperty ;
    rdfs:label "Property: subtype label"@en ;
    rdfs:comment "The :subtypeLabel property specifies a label for a subject subtyoe."@en ;
    rdfs:domain ns1:Subject ;
    rdfs:isDefinedBy ns1: ;
    rdfs:range xsd:string ;
    rdfs:subPropertyOf ns1:nameInfo .