Label leaf node


URI

http://www.w3.org/2000/01/rdf-schema#label

Label

Label

Description

A concept label

Usage

DOMAINPROPERTYRANGE
Thing Label string

Implementation

@prefix icare: <https://w3id.org/icare4cvd/> .
@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#> .

rdfs:label a owl:DatatypeProperty ;
    rdfs:label "Label"@en ;
    rdfs:comment "A concept label"@en ;
    rdfs:domain owl:Thing ;
    rdfs:isDefinedBy icare: ;
    rdfs:range xsd:string .