Skip to content

Instantly share code, notes, and snippets.

@ccjr
Created July 4, 2009 00:16
Show Gist options
  • Save ccjr/140376 to your computer and use it in GitHub Desktop.
Save ccjr/140376 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#">
<rdfs:Class rdf:ID="Team">
<rdfs:comment>Team Class</rdfs:comment>
<rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Resource"/>
</rdfs:Class>
<rdf:Property rdf:ID="name">
<rdfs:comment>Name of the Team</rdfs:comment>
<rdfs:domain rdf:resource="#Team"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Literal"/>
<rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Resource"/>
</rdf:Property>
</rdf:RDF>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment