Provenance Ontology
The provenance ontology supports data management and auditing tasks. It is used to define the different types of named graphs we used in the store (quad store) and enables their association with metadata that allow us to manage, validate and expose data to our services
Introduction
An ontology to capture data about the provenance of data in an RDF Triple Store. This provenance is focused on the immediate providers and not the ultimate source, so for example, this would record that geodata was provided by the BBC Locator team, and not geonames. In the Linked Data Platform, this data is applied to contexts or named graphs. A named graph is, in effect, a 'fourth part' to a triple, hence the term 'quad store'.
Sample Data
@prefix provenance: <http://www.bbc.co.uk/ontologies/provenance/> .
@prefix bbc: <http://www.bbc.co.uk/ontologies/bbc/> .
<http://www.bbc.co.uk/contexts/a-b-c-d#id>
a provenance:Dataset ;
rdfs:label "English Football Teams"^^xsd:string
;
provenance:changeReason "Initial creation of dataset"^^xsd:string ;
provenance:version "1"^^xsd:int ; provenance:product
bbc:Sport;
provenance:provided "20121010T16:34Z"^^xsd:datetime;
provenance:provider <mailto:tom.grahame@bbc.co.uk>.
Ontology Diagram
Ontology Terms
Automatically generated documentation for the ontology terms.