Skip to content

Instantly share code, notes, and snippets.

@tfgrahame
Last active August 29, 2015 13:56
Show Gist options
  • Save tfgrahame/8974800 to your computer and use it in GitHub Desktop.
Save tfgrahame/8974800 to your computer and use it in GitHub Desktop.
@prefix event: <http://purl.org/NET/c4dm/event.owl#> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://www.schema.org/sport/> .
@prefix sport: <http://www.bbc.co.uk/ontologies/sport/> .
@prefix time: <http://www.w3.org/2006/time#> .
@prefix timelineowl: <http://purl.org/NET/c4dm/timeline.owl#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<http://www.bbc.co.uk/things/manchester-city-v-chelsea> a sport:Match ;
event:place <http://www.bbc.co.uk/things/etihad-stadium> ;
event:time [ a time:TemporalEntity ;
timelineowl:hasBeginning "2014-02-03T20:00:00+00:00"^^xsd:dateTime ] ;
sport:awayCompetitor <http://www.bbc.co.uk/things/chelsea> ;
sport:discipline <http://www.bbc.co.uk/things/Football> ;
sport:homeCompetitor <http://www.bbc.co.uk/things/manchester-city> ;
schema:attendance 47364 ;
schema:eventStatus schema:EventCompleted ;
schema:result [ schema:competitor <http://www.bbc.co.uk/things/manchester-city> ;
schema:decision [ a schema:CompetitionDecision ;
schema:resultType schema:Loser ] ;
schema:statistics [ a schema:Statistics ;
schema:scoreFor 0 ] ],
[ schema:competitor <http://www.bbc.co.uk/things/chelsea> ;
schema:decision [ a schema:CompetitionDecision ;
schema:resultType schema:Winner ] ;
schema:statistics [ a schema:Statistics ;
schema:scoreFor 1 ] ] ;
rdfs:label "Manchester City v Chelsea"@en-gb .
<http://www.bbc.co.uk/things/joe-hart> a sport:Person ;
foaf:name "Joe Hart"@en-gb .
<http://www.bbc.co.uk/things/petr-cech> a sport:Person ;
foaf:name "Petr Cech"@en-gb .
<http://www.bbc.co.uk/things/etihad-stadium> a sport:Venue ;
rdfs:label "Etihad Stadium"@en-gb .
<http://www.bbc.co.uk/things/manchester-city> a sport:CompetitiveSportingOrganisation ;
schema:member <http://www.bbc.co.uk/things/joe-hart> ;
rdfs:label "Manchester City"@en-gb .
<http://www.bbc.co.uk/things/chelsea> a sport:CompetitiveSportingOrganisation ;
schema:member <http://www.bbc.co.uk/things/petr-cech> ;
rdfs:label "Chelsea"@en-gb .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment