@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix foaf:	<http://xmlns.com/foaf/0.1/> .
@prefix owl:	<http://www.w3.org/2002/07/owl#> .
foaf:givenName	rdf:type	owl:FunctionalProperty ,
		owl:DatatypeProperty .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
foaf:givenName	rdfs:label	"Nombre persona"@es ;
	rdfs:domain	foaf:Person .
@prefix xsd:	<http://www.w3.org/2001/XMLSchema#> .
foaf:givenName	rdfs:range	xsd:string ;
	rdfs:comment	"Nombre persona"@es .