npg:givenName leaf node


URI

http://ns.nature.com/terms/givenName

Label

Given Name

Description

The :givenName property specifies the given name of a person.

Usage

DOMAINPROPERTYRANGE
npg:Contributor npg:givenName rdfs:Literal

Implementation

@prefix npg: <http://ns.nature.com/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .

npg:givenName a owl:DatatypeProperty ;
    rdfs:domain npg:Contributor ;
    rdfs:isDefinedBy npg: ;
    rdfs:range rdfs:Literal ;
    skos:definition "The :givenName property specifies the given name of a person."@en ;
    skos:prefLabel "Given Name"@en .