Skip to content

Commit

Permalink
first attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
fantasticlife committed Oct 31, 2024
1 parent 96f65aa commit 1ed36ae
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions interface/election/interface.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
@prefix election-interface: <http://parliament.uk/ontologies/interface/election> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .

@prefix election: <http://parliament.uk/ontologies/election/> .
@prefix geographic-area: <http://parliament.uk/ontologies/geographic-area/> .
@prefix geographic-area-overlap: <http://parliament.uk/ontologies/geographic-area-overlap/> .
@prefix delegation: <http://parliament.uk/ontologies/geographic-area-overlap/> .


<http://parliament.uk/ontologies/interface/election>
owl:imports <https://ukparliament.github.io/ontologies/election/election.ttl> ;
owl:imports <https://ukparliament.github.io/ontologies/geographic-area/geographic-area-ontology.ttl> ;
owl:imports <https://ukparliament.github.io/ontologies/geographic-area-overlap/geographic-area-overlap-ontology.ttl> ;
owl:imports <https://ukparliament.github.io/ontologies/delegation/delegation-ontology.ttl> ;
rdf:type owl:Ontology ;
dcterms:title "Election interface ontology"@en ;
dcterms:created "2024-10-31"^^xsd:date ;
dcterms:rights "Open Parliament Licence v3.0"@en ;
dcterms:description "An ontology to combine election-related models for UK Parliament."@en ;
foaf:maker
[ foaf:name "Robert Brook"; foaf:homepage <https://robert-brook.com/> ],
[ foaf:name "Ned Morrell" ],
[ foaf:name "Michael Smethurst"; foaf:homepage <http://smethur.st/> ] .



####### Equivalent classes #####

# Business item
delegation:StatutoryThing
owl:equivalentClass
geographic-area:StatutoryThing .

0 comments on commit 1ed36ae

Please sign in to comment.