<?xml version="1.0"?>
<rdf:RDF
    xmlns:owl="http://www.w3.org/2002/07/owl#"
    xmlns:swrl="http://www.w3.org/2003/11/swrl#"
    xmlns="http://www.lauken.com/doconnor/politics/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
    xmlns:dbpedia="http://bio2rdf.org/owl/dbpedia#"
    xmlns:skos="http://www.w3.org/2004/02/skos/core#"
    xmlns:reactome="http://bio2rdf.org/owl/reactome#"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
  <owl:Ontology rdf:about=""/>

  <!-- A speech, usually as part of a debate about a bill -->
  <owl:Class rdf:about="#Speech">
    <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
    <!-- made by a foaf:Agent -->
    <!-- has a dc:date, dc:time? -->
    <!-- mentions topics -->
  </owl:Class>

  <!-- A foaf:Person who has a profession in politics -->
  <owl:Class rdf:about="#Politician">
    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>  
  </owl:Class>

  <!-- A Document which a Politician is trying to enact as law. -->
  <owl:Class rdf:about="#Bill">
    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>  
  </owl:Class>
</rdf:RDF>
