# Saved by TopBraid on Tue Jan 19 01:53:37 PST 2010 # baseURI: http://tests.uispin.topbraid.org/charts/chartsExampleData # imports: http://spinrdf.org/spin @prefix ex: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . rdf:type owl:Ontology ; owl:imports ; owl:versionInfo "Created with TopBraid Composer"^^xsd:string . ex:AustralianFederalElection2007 rdf:type ex:Election ; rdfs:label "Australian Federal Election 2007"^^xsd:string ; ex:result [ rdf:type ex:ElectionResult ; ex:party ex:Labor ; ex:percent "43.38"^^xsd:float ] ; ex:result [ rdf:type ex:ElectionResult ; ex:party ex:Liberals ; ex:percent "36.60"^^xsd:float ] ; ex:result [ rdf:type ex:ElectionResult ; ex:party ex:Greens ; ex:percent "7.79"^^xsd:float ] ; ex:result [ rdf:type ex:ElectionResult ; ex:party ex:National ; ex:percent "5.49"^^xsd:float ] . ex:Election rdf:type owl:Class ; rdfs:label "Election"^^xsd:string ; rdfs:subClassOf owl:Thing . ex:ElectionResult rdf:type owl:Class ; rdfs:label "Election result"^^xsd:string ; rdfs:subClassOf owl:Thing . ex:Greens rdf:type ex:Party ; rdfs:label "Greens"^^xsd:string . ex:Labor rdf:type ex:Party ; rdfs:label "Labor"^^xsd:string . ex:Liberals rdf:type ex:Party ; rdfs:label "Liberals"^^xsd:string . ex:National rdf:type ex:Party ; rdfs:label "National"^^xsd:string . ex:Party rdf:type owl:Class ; rdfs:label "Party"^^xsd:string ; rdfs:subClassOf owl:Thing . ex:party rdf:type owl:ObjectProperty ; rdfs:domain ex:ElectionResult ; rdfs:label "party"^^xsd:string ; rdfs:range ex:Party . ex:percent rdf:type owl:DatatypeProperty ; rdfs:domain ex:ElectionResult ; rdfs:label "percent"^^xsd:string ; rdfs:range xsd:float . ex:result rdf:type owl:ObjectProperty ; rdfs:domain ex:Election ; rdfs:label "result"^^xsd:string ; rdfs:range ex:ElectionResult .