ontology:firstName leaf node


URI

http://omv.ontoware.org/2005/05/ontology#firstName

Label

firstName

Description

The first name of a person

Usage

DOMAINPROPERTYRANGE
ontology:Person ontology:firstName xsd:string

Implementation

@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@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#> .

:firstName a owl:DatatypeProperty ;
    rdfs:label "firstName"^^xsd:string ;
    rdfs:comment "The first name of a person"^^xsd:string ;
    rdfs:domain :Person ;
    rdfs:range xsd:string .