Skip to content

Instantly share code, notes, and snippets.

@orlybg
Last active December 14, 2015 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orlybg/5002090 to your computer and use it in GitHub Desktop.
Save orlybg/5002090 to your computer and use it in GitHub Desktop.
<?xml version="1.0"?>
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:owl="http://www.w3.org/2002/07/owl#">
<owl:Ontology rdf:about="">
<owl:versionInfo>Version 0.1</owl:versionInfo>
<rdfs:comment>
Ontologia personas
Creado por Orlando Briceno
Version 0.1, 20 Marzo 2013
</rdfs:comment>
</owl:Ontology>
<owl:Class owl:name="Person" owl:complete="false" />
<owl:Class owl:name="Region" owl:complete="false" />
<owl:Class owl:name="Sportsman" owl:complete="false">
<owl:Class owl:name="#Person" />
</owl:Class>
<owl:Class owl:name="Driver" owl:complete="false">
<owl:Class owl:name="#Sportsman" />
</owl:Class>
<owl:ObjectProperty owl:name="birthPlace">
<owl:domain owl:class="#Driver" />
<owl:range owl:class="#Region" />
</owl:ObjectProperty>
<owl:DatatypeProperty owl:name="birthYear">
<owl:domain owl:class="#Driver" />
<owl:range owl:datatype="positiveInteger" />
</owl:DatatypeProperty>
<owl:Individual owl:name="Fernando Alonso">
<owl:type owl:name="Driver" />
<owl:ObjectPropertyValue owl:property="birthPlace">
<owl:Individual owl:name="#Oviedo" />
</owl:ObjectPropertyValue>
<owl:DataPropertyValue owl:property="birthYear">
<owl:DataValue owl:datatype="positiveInteger">1981</owl:DataValue>
</owl:DataPropertyValue>
</owl:Individual>
</rdf:RDF>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment