Skip to content

Instantly share code, notes, and snippets.

@tfgrahame
Last active October 17, 2022 00:14
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tfgrahame/f6c844301f814e075c12 to your computer and use it in GitHub Desktop.
Save tfgrahame/f6c844301f814e075c12 to your computer and use it in GitHub Desktop.
Season Model
@prefix sport: <http://www.bbc.co.uk/ontologies/sport/> .
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix timelineowl: <http://purl.org/NET/c4dm/timeline.owl#> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<#premier-league> a sport:RecurringCompetition .
<#barclays-premier-league-2014> a sport:Competition ;
sport:recurringCompetition <#premier-league> ;
event:time <#time> .
<#time> a time:TemporalEntity ;
timelineowl:hasBeginning "2014-06-18"^^xsd:date ;
timelineowl:hasEnd "2015-06-17"^^xsd:date .
<#manchester-city> a sport:CompetitiveSportingOrganisation ;
sport:competesIn <#barclays-premier-league-2014> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment