@prefix bio: <http://purl.org/vocab/bio/0.1/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix ex: <http://example.org/ex#> .
@prefix thing: <http://example.org/thing#> .

thing:oxfordshire a ex:County .

thing:gloucestershire a ex:County .

thing:widford a ex:Parish .
  
thing:widfordInGloucestershire 
  ex:subject thing:widford ;
  ex:property ex:partOf ;
  ex:value thing:gloucestershire ;
  time:start "1837" ;
  time:end "1844" .

thing:widfordInOxfordshire 
  ex:subject thing:widford ;
  ex:property ex:partOf ;
  ex:value thing:oxfordshire ;
  time:start "1844" ;
  time:end "9999" .

thing:widfordName 
  ex:subject thing:widford ;
  ex:property foaf:name ;
  ex:value "Widford" ;
  time:start "1837" ;
  time:end "9999" .
  
thing:oxfordshireName 
  ex:subject thing:oxfordshire ;
  ex:property foaf:name ;
  ex:value "Oxfordshire" ;
  time:start "1837" ;
  time:end "9999" . 
  
thing:gloucestershireName 
  ex:subject thing:gloucestershire ;
  ex:property foaf:name ;
  ex:value "Gloucestershire" ;
  time:start "1837" ;
  time:end "9999" . 

