Abstract

This document describes a templating system to generate PROV.

Status of This Document

This document is merely a public working draft of a potential specification. It has no official standing of any kind and does not represent the support or consensus of any standards organisation.

This is probably the froodiest document that you will read all year. It has been authored using new means of achieving consensus that have been made possible through nanoethanol implants.

Table of Contents

1. Introduction

Generating provenance compatible with the PROV data model [prov-dm] remains challenging. Indeed, all serializations of PROV, whether RDF [prov-o], XML [prov-xml], text [prov-n], or JSON [prov-json] have got their own syntactic quirks, which make them difficult to generate directly. Likewise, specialized toolkits such as ProvToolbox and ProvPy require non trivial programming expertise.

Thus, recognizing that very often provenance follows patterns that are repeated during the lifetime of an application, we propose a template system for PROV, with the following characteristics:

1.1 Namespaces

The following namespaces and prefixes are used throughout this document.

Table 1 ◊: Table 1 Prefix and namespaces used in this specification
Prefix Namespace IRI Definition
tmpl http://openprovenance.org/tmpl# The prov-template namespace
var http://openprovenance.org/var# The namespace for template variables
vargen http://openprovenance.org/vargen# The namespace for template gensym variables
provhttp://www.w3.org/ns/prov#The PROV namespace
xsdhttp://www.w3.org/2001/XMLSchema#The XSD namespace

All other namespace prefixes are used in examples only. In particular, IRIs starting with http://example.org/ represent some application-dependent IRI [RFC3987].

1.2 Conventions

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in [RFC2119].

Unless otherwise stated, examples throughout this document use the PROV-N Provenance Notation [prov-n].

In this specification, we use the term Qualified Name in accordance to [prov-dm], and use its syntax as specified in [prov-n] (see production prod-QUALIFIED_NAME). In compliance with [prov-dm], we note that a qualified name can be mapped to an IRI by concatenating the IRI associated with the prefix and the local part.

2. Template Definition and Examples

A PROV-template is a PROV document that:

Example 1

The following template contains two variables var:a and var:b.

document
 prefix ex <http://example.org/>
 prefix var <http://openprovenance.org/var#>

 bundle ex:b 
  agent(var:a)
  entity(var:b)
  wasAttributedTo(var:b, var:a)
 endBundle
endDocument
With the following values, ex:ag and ex:en, for var:a and var:b, respectively, the template expands to the following document:
document
 prefix ex <http://example.org/>
 prefix tmpl <http://openprovenance.org/tmpl#>
 bundle ex:b 
  agent(ex:ag,[tmpl:order = "[0]"])
  entity(ex:en,[tmpl:order = "[0]"])
  wasAttributedTo(ex:en, ex:ag,[tmpl:order = "[0, 0]"])
 endBundle
endDocument

The role of the attribute tmpl:order is explained below.

Example 2

Multiple values are allowed for each variable, for instance ex:ag1, ex:ag2 for var:a, and ex:en1, ex:en2, ex:en3, for var:b. By default, the Cartesian product of the value sets forms the set of all possibilities to instantiate each statement in the template. We obtain:

document
 prefix ex <http://example.org/>
 prefix tmpl <http://openprovenance.org/tmpl#>
 bundle ex:b 
  agent(ex:ag1,[tmpl:order = "[0]"])
  agent(ex:ag2,[tmpl:order = "[1]"])
  entity(ex:en1,[tmpl:order = "[0]"])
  entity(ex:en2,[tmpl:order = "[1]"])
  entity(ex:en3,[tmpl:order = "[2]"])
  wasAttributedTo(ex:en1, ex:ag1,[tmpl:order = "[0, 0]"])
  wasAttributedTo(ex:en1, ex:ag2,[tmpl:order = "[1, 0]"])
  wasAttributedTo(ex:en2, ex:ag1,[tmpl:order = "[0, 1]"])
  wasAttributedTo(ex:en2, ex:ag2,[tmpl:order = "[1, 1]"])
  wasAttributedTo(ex:en3, ex:ag1,[tmpl:order = "[0, 2]"])
  wasAttributedTo(ex:en3, ex:ag2,[tmpl:order = "[1, 2]"])
  endBundle
endDocument
In the expanded document, the attribute tmpl:order indicates which combination of variable values is used to instantiate the current statement. In the wasAttributedTo statement, it indicates that two independent groups of variables are considered. There are two possible values (denoted by index 0 and 1) for the first group (i.e., variable var:a) and three possible values (denoted by index 0, 1, and 2) for the second group (i.e., variable var:b).
Example 3

In some cases, the Cartesian product of possibilities is not desirable. For instance, one may want the following values: ex:ag1, ex:ag2 for var:a, and ex:en1, ex:en2 for var:b. By default, the Cartesian product of the value sets forms the set of all possibilities to instantiate each statement in the template. Instead, here, we want var:b to be associated with ex:en1 whenever var:a is associated with ex:ag1. Hence, we modify the template of Example 1 by adding the tmpl:linked attribute in the template, which indicates that variables var:b, var:a belong to a same group, change value in a lockstep manner.

document
 prefix ex <http://example.org/>
 prefix var <http://openprovenance.org/var#>

 bundle ex:b 
  agent(var:a, [tmpl:linked='var:b'])
  entity(var:b)
  wasAttributedTo(var:b, var:a)
 endBundle
endDocument
The expansion now looks like the following. We see that the value ex:en1 is used at the same time as ex:ag1.
document
 prefix ex <http://example.org/>
 prefix tmpl <http://openprovenance.org/tmpl#>
 bundle ex:b 
  agent(ex:ag1,[tmpl:order = "[0]"])
  agent(ex:ag2,[tmpl:order = "[1]"])
  entity(ex:en1,[tmpl:order = "[0]"])
  entity(ex:en2,[tmpl:order = "[1]"])
  wasAttributedTo(ex:en1, ex:ag1,[tmpl:order = "[0]"])
  wasAttributedTo(ex:en2, ex:ag2,[tmpl:order = "[1]"])
 endBundle
endDocument
In the expanded document, the attribute tmpl:order indicates that a single group of variables is used for the wasAttributedTo statement: it has two possible values (denoted by index 0 and 1).

As we describe the expansion algorithm, it is useful to distinguish two types of variables.

A group variable is a variable that occurs in influencer or influencee position, in secondary position (e.g., plan in association, activity in delegation and derivation), or in mandatory identifier position (in entity, agent, or activity). The idea of a group variable is that it is instantiated as part of the Cartesian product of all possible groups in the current statement.

A statement-level variable is a variable that occurs in an attribute-value pair (either in attribute position or in value position), or that occurs in optional identifier position. While the Cartesian product of a statement's applicable groups dictates the number of instances of that statement, for each such statement we will find a value of statement-level variables.

A bundle variable is a variable that occurs as identifier of a bundle. A bundle variable is intended to be associated with one value only.

For a template to be valid, a variable MUST NOT be both an statement-level variable and group variable.

A bundle variable MAY also be a group variable in some statement, but a bundle variable MUST NOT be a statement-level variable.

Example 4

A template may contain a statement-level variable. For instance, var:c is a statement-level variable occurring in value position, in the attribute-value pair prov:type='var:c'.

document
 prefix ex <http://example.org/>
 prefix var <http://openprovenance.org/var#>

 bundle ex:b 
  agent(var:a)
  entity(var:b)
  wasAttributedTo(var:b, var:a,[prov:type='var:c'])
 endBundle
endDocument

The group variables determine the number of instantiations of a given statement according to their group's Cartesian product. So, following Example 1, we consider values ex:ag1, ex:ag2 for var:a, and ex:en1, ex:en2, ex:en3, for var:b. This leads to six different possibilities. It is expected that var:c is bound to six different values, one for each combination of values for var:a and var:b. However, attributes can be repeated in a statement, so var:c should be bound to six groups of values. For instance, for the following groups of values [[ex:t1], [ex:t2a, ex:t2b], [ex:t3], [ex:t4], [ex:t5a, ex:t5b, ex:t5c], [ex:t6]], we obtain the following expansion.

document
 prefix ex <http://example.org/>
 prefix tmpl <http://openprovenance.org/tmpl#>
 bundle ex:b 
  agent(ex:ag1,[tmpl:order = "[0]"])
  agent(ex:ag2,[tmpl:order = "[1]"])
  entity(ex:en1,[tmpl:order = "[0]"])
  entity(ex:en2,[tmpl:order = "[1]"])
  entity(ex:en3,[tmpl:order = "[2]"])
  wasAttributedTo(ex:en1, ex:ag1,[prov:type = 'ex:t1', tmpl:order = "[0, 0]"])
  wasAttributedTo(ex:en1, ex:ag2,[prov:type = 'ex:t2a', prov:type = 'ex:t2b', tmpl:order = "[1, 0]"])
  wasAttributedTo(ex:en2, ex:ag1,[prov:type = 'ex:t3', tmpl:order = "[0, 1]"])
  wasAttributedTo(ex:en2, ex:ag2,[prov:type = 'ex:t4', tmpl:order = "[1, 1]"])
  wasAttributedTo(ex:en3, ex:ag1,[prov:type = 'ex:t5a', prov:type = 'ex:t5b', prov:type = 'ex:t5c', tmpl:order = "[0, 2]"])
  wasAttributedTo(ex:en3, ex:ag2,[prov:type = 'ex:t6', tmpl:order = "[1, 2]"])
 endBundle
endDocument

3. Algorithm

3.1 Variable Grouping

We define a group of variables, or group for short, as a set of group variables that are expected to change values in lockstep with each other. Groups are identified by a natural number. A pattern's grouping of group variables is a partitioning of the set of variables occurring in a pattern; each partition forms a group and is allocated a natural number.

A binding is an association between a variable and some values. If there is a binding for a variable, the variable is said to be bound. If there is no binding for a variable, the variable is said to be unbound.

All group variables belonging to a given group MUST be bound to the same number of values, since their values have to change in lockstep manner. If this condition is not satisfied, it is an error situation (see error IncorrectNumberOfBindingsForGroupVariable).

A group variable SHALL NOT belong to more than one group.

The algorithm to deterministically create a grouping of variables for a pattern P is as follows.

Grouping function (Pattern: P) {
  List<Variable> variable_list=sort(extract_group_variables(P));

  Hashtable <Variable,Set<Variable>> linked = extract_linked_variables(P); // includes transitive closure
  
  Grouping g = new Grouping();
  int count = 0;
  for (Variable v: variable_list) {
    if (!(belong v g)) {
       add v and linked.get(v) to g as group identified by count;
    }
    count++;
  }	
  return g;
}

First, all group variables are extracted from the pattern and sorted by alphabetical order of their URIs. Then, all linked variables are computed, in the form of a map, associating a variable to the variables it is linked with. It is assumed that the transitive closure of this relation is computed here. Then, each variable (if not already inserted in the grouping) is added to the grouping with the variables it is linked with. Groups are deterministically identified, starting with value 0. This procedure is deterministic since it relies on the alphabetical sorting of group variables.

In the absence of tmpl:linked attribute, we have as many groups as variables.

Example 5

In Example 1 and Example 2, the grouping is as follows:

groupsvariables
0var:a
1var:b

In Example 3, the grouping consists of a single group:

groupsvariables
0var:a, var:b

3.2 Group Usage

A PROV statement MAY contain a set of group variables. A statement's group usage is the list of group identifiers corresponding to these variables; the list of group identifiers is ordered in ascending order. The group usage for a statement without group variable is the empty list []. A list is noted by integers separated by commas occurring in square brackets.

Example 6

In Example 1, Example 2, and Example 5, the only variable in agent(var:a) is var:a; since var:a belongs to group 0, the current statement's group usage is [0].

Likewise, the only variable in entity(var:b) is var:b, which belongs to group 1; so, the group usage is [1].

Finally, the group variables in wasAttributedTo(var:b, var:a) and wasAttributedTo(var:b, var:a, [prov:type='var:c']) are var:a and var:b, with respective groups 0 and 1. So, the group usage is [0,1].

In Example 3, since there is a single group, group usage is [0] for every statement.

3.3 Binding Structure

The examples above have shown that group variables belonging to a same group evolve in a lockstep manner, whereas the statement-level variables should be bound to as many group of values as the number of possible instantiations of the statement they occur in.

A group variable or a statement-level variable occurring in optional identifier position is bound to a list of values. A bundle variable is bound to a single value (i.e. a list of length 1). A statement-level variable (not occurring optional identifier position) is bound to a list of list of values: this allows a given attributes to be have 0, 1, or more occurrences in a given statement.

Since all group variables of a group g in a set of bindings B MUST be associated with lists of values having the same length; this length is given by number_of_variable_values(B,g). Otherwise, it is an error, see IncorrectNumberOfBindingsForGroupVariable.

Section 4. specifies how a set of bindings can be expressed as a PROV document.

Example 7

Symbolically, the bindings for Example 4, can be expressed as follows:

variablevalues
var:a[ex:ag1, ex:ag2]
var:b[ex:en1, ex:en2, ex:en3]
var:c[[ex:t1], [ex:t2a, ex:t2b], [ex:t3], [ex:t4], [ex:t5a, ex:t5b, ex:t5c], [ex:t6]]

3.4 Variable Value Indexing

Let us consider a set of bindings B and a statement's group usage [g1, ..., gn], where g1, ..., gn are group identifiers, with n ≥1 (meaning that the statement contains at least one group variable). A variable value index is a list [i1, ..., in] of naturals of length n, such that each 0 ≤ ij < number_of_variable_values(B, gj).

A variable value index for a group usage and a set of bindings B denotes a particular combination of variable values.

The expansion algorithm (see Section 3.5) enumerates and sorts all possible variable values indices for a given group usage. For that, we rely on the following index order: in [i1, ..., in], i1 is the least significant integer, and in is the most significant integer. So, [0,0] precedes [1,0], which precedes [0,1], which precedes [1,1].

Example 8

Let us consider the bindings Example 7.

The statement

  agent(ex:ag1,[tmpl:order = "[0]"])
in the expansion of Example 4 has index [0] for group usage [0], denoting value ex:ag1.

The statement

  entity(ex:en3,[tmpl:order = "[2]"])
in the expansion of Example 4 has index [2] for group usage [1], denoting value ex:en3.

The statement

  wasAttributedTo(ex:en2, ex:ag2,[prov:type = 'ex:t4', tmpl:order = "[1, 1]"])
in the expansion of Example 4 has index [1,1] for group usage [0,1], denoting values ex:en2 and ex:ag2.

3.5 Expansion

Expansion proceeds by processing each statement in turn, instantiating variables according to the following algorithm.

Bundle expansion(Set of bindings: B, Bundle b) {
  bid = substitution(bundle_variable(b),B);
  l = empty list of statements;
  for each statement s in bundle b {
    u = the group usage for s;
    count = 0;
    for all possible variable value index i (sorted by increasing index order) for u  {
      env = the effective bindings for B and i;
      s2 = substitution_group_variable(s,env);
      s3 = substitution_statement_level_variable(s2,B,count);
      s4 = set_tmpl_order_attribute(s3,i);
      count++;
      add s4 to l
    }
  }
  return new bundle with bid and l;
}

Table 2 summarizes the syntax and meaning of variables and attributes accepted in a PROV template.

Table 2 ◊: Kinds of parameters and variables supported by the templating system
template variabledefinition
var:xA variable x to be replaced by its value according to the expansion algorithm. If no binding is found, the following rules are applied. If the variable occurs in attribute position, the attribute is dropped. If in optional position of a statement (see [prov-n], section 2.4), the variable is dropped. If in mandatory position of a statement, it is an error situation (see error UnboundMandatoryVariable).
vargen:xA variable x to be replaced by its value according to the expansion algorithm. If no binding is found, the following rules are applied. If the variable occurs in attribute position, a unique qualified name (uuid) is generated. If in optional position of a statement (see [prov-n], section 2.4), the variable is dropped. If in mandatory position of a statement, a unique qualified name (uuid) is generated.
template parameterdefinition
tmpl:linkedAn attribute associated with a value that MUST be a qualified name also acting as a template variable v2 (with either var or vargen namespace prefix). Its presence in a term with identifier v1 indicates that the variable v2 changes value synchronously with v1.
tmpl:labelAn attribute associated with a value that MUST be a qualified name var:v also acting as a template variable. If bound, variable var:v MUST be bound to xsd:string values. The expanded current term will contain a prov:label for each value.
tmpl:timeAn attribute associated with a value that MUST be a qualified name var:v also acting as a template variable. This attribute may only occur in a Generation, Usage, Invalidation, Start, or End term. If var:v is bound, variable var:v MUST be bound to xsd:dateTime values. The expanded current term will be provided the corresponding time information.
tmpl:startTimeAn attribute associated with a value that MUST be a qualified name var:v also acting as a template variable. This attribute may only occur in an Activity term. If var:v is bound, variable var:v MUST be bound to xsd:dateTime values. The expanded current activity will be provided the corresponding start time information.
tmpl:endTimeAn attribute associated with a value that MUST be a qualified name var:v also acting as a template variable. This attribute may only occur in an Activity term. If var:v is bound, variable var:v MUST be bound to xsd:dateTime values. The expanded current activity will be provided the corresponding end time information.
Note
The idea of the tmpl:order attribute is that it should help the reconstruction of the set of bindings from an expanded document and the corresponding template. It is an open question as to whether this is possible with the current representation.
Dong: Regardless of the feasibility of reconstructing the original bindings, I think this attribute should be optional as it would clutter the resulted provenance, making it look untidy. One could argue that the attributes are artifacts of the templating system and not really asked for.
Note
Should we rename tmpl:order to tmpl:index? Dong: +1
Table 3 ◊: Attribute in expanded document
expanded instance parameterdefinition
tmpl:orderan attribute added to a statement by the expansion process;
its value is the index used to compute the actual binding that defined the current instantiation.

4. Set of Bindings

This section is non-normative.

Example 7 shows a symbolic representation of bindings. One should note that to be self-contained a set of bindings should also contain prefix declarations for all qualified names. Hence, to minimize the amount of new syntax required by the templating system, an encoding of a set of bindings as a PROV document is proposed.

Example 9

The set of bindings in Example 7 can be expressed as a PROV document as follows:

document
 prefix var <http://openprovenance.org/var#>
 prefix ex <http://example.org/>
 prefix tmpl <http://openprovenance.org/tmpl#>

 entity(var:a,[tmpl:value_0 = 'ex:ag1', tmpl:value_1 = 'ex:ag2'])
 entity(var:b,[tmpl:value_0 = 'ex:en1', tmpl:value_1 = 'ex:en2', tmpl:value_2 = 'ex:en3'])
 entity(var:c,[tmpl:2dvalue_0_0 = 'ex:t1',
               tmpl:2dvalue_1_0 = 'ex:t2a', tmpl:2dvalue_1_1 = 'ex:t2b',
 	       tmpl:2dvalue_2_0 = 'ex:t3',
 	       tmpl:2dvalue_3_0 = 'ex:t4',
 	       tmpl:2dvalue_4_0 = 'ex:t5a', tmpl:2dvalue_4_1 = 'ex:t5b', tmpl:2dvalue_4_2 = 'ex:t5c',
 	       tmpl:2dvalue_5_0 = 'ex:t6'])
  
endDocument

Each variable is represented by an entity, and the bound values are encoded with attribute-value pairs, using some reserved attributes in the tmpl namespace.

The reserved parameters are defined according to Table 4.

Table 4 ◊: Attributes for Bindings
binding parameterdefinition
tmpl:value_0attribute of a group variable (or variable occurring in optional identifier position) to provide value '0' for this variable
tmpl:value_1attribute of a group variable (or variable occurring in optional identifier position) to provide value '1' for this variable
tmpl:value_nattribute of a group variable (or variable occurring in optional identifier position) to provide value 'n' for this variable
tmpl:2dvalue_0_0attribute of a statement-level variable to provide value '0,0' for this variable
tmpl:2dvalue_x_yattribute of a statement-level variable to provide value 'x,y' for this variable
Example 10

The set of bindings in Example 9 can elegantly be expressed using the Turtle notation [turtle] as follows:

@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix tmpl: <http://openprovenance.org/tmpl#> .
@prefix var: <http://openprovenance.org/var#> .
@prefix ex: <http://example.org/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .


var:a a prov:Entity ;
	tmpl:value_0 ex:ag1 ;
	tmpl:value_1 ex:ag2 .

var:b a prov:Entity ;
	tmpl:value_0 ex:en1 ;
	tmpl:value_1 ex:en2 ;
	tmpl:value_2 ex:en3 .

var:c a prov:Entity ;
	tmpl:2dvalue_0_0 ex:t1 ;
	tmpl:2dvalue_1_0 ex:t2a ;
	tmpl:2dvalue_1_1 ex:t2b ;
	tmpl:2dvalue_2_0 ex:t3 ;
	tmpl:2dvalue_3_0 ex:t4 ;
	tmpl:2dvalue_4_0 ex:t5a ;
	tmpl:2dvalue_4_1 ex:t5b ;
	tmpl:2dvalue_4_2 ex:t5c ;
	tmpl:2dvalue_5_0 ex:t6 .
Alternatively, users of the template expander may user the [prov-json] representation.
{
  "entity": {
    "var:c": {
      "tmpl:2dvalue_4_1": {
        "$": "ex:t5b",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_4_0": {
        "$": "ex:t5a",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_3_0": {
        "$": "ex:t4",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_0_0": {
        "$": "ex:t1",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_4_2": {
        "$": "ex:t5c",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_2_0": {
        "$": "ex:t3",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_5_0": {
        "$": "ex:t6",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_1_1": {
        "$": "ex:t2b",
        "type": "xsd:QName"
      },
      "tmpl:2dvalue_1_0": {
        "$": "ex:t2a",
        "type": "xsd:QName"
      }
    },
    "var:a": {
      "tmpl:value_0": {
        "$": "ex:ag1",
        "type": "xsd:QName"
      },
      "tmpl:value_1": {
        "$": "ex:ag2",
        "type": "xsd:QName"
      }
    },
    "var:b": {
      "tmpl:value_0": {
        "$": "ex:en1",
        "type": "xsd:QName"
      },
      "tmpl:value_2": {
        "$": "ex:en3",
        "type": "xsd:QName"
      },
      "tmpl:value_1": {
        "$": "ex:en2",
        "type": "xsd:QName"
      }
    }
  },
  "prefix": {
    "xsd": "http://www.w3.org/2001/XMLSchema",
    "tmpl": "http://openprovenance.org/tmpl#",
    "var": "http://openprovenance.org/var#",
    "prov": "http://www.w3.org/ns/prov#",
    "ex": "http://example.org/"
  }
}

5. Errors

The following error situations have been identified in the specification prov-template.

UnboundMandatoryVariable: when a var:x variable occurs in mandatory position of a statement and is unbound.

IncorrectNumberOfBindingsForGroupVariable: when group variables of a given group are not bound to the same number of values.

IncorrectNumberOfBindingsForStatementVariable: when a statement-level variable is not bound to the same number of value lists as their are instantiations for the statement it occurs in.

6. Implementation

This section is non-normative.

ProvToolbox's executable provconvert can be called from the command line to perform template expansion as follows:

	
 provconvert -infile template.provn -outfile expanded.provn -bindings bindings.provn 
The input file template.provn, the output file template.provn, and the bindings file bindings.provn may can be encoded according to any serialization supported by ProvToolbox.

A. References

A.1 Informative references

[RFC2119]
S. Bradner. Key words for use in RFCs to Indicate Requirement Levels. March 1997. Internet RFC 2119. URL: http://www.ietf.org/rfc/rfc2119.txt
[prov-dm]
Luc Moreau; Paolo Missier. PROV-DM: The PROV Data Model. 30 April 2013. W3C Recommendation. URL: http://www.w3.org/TR/prov-dm/
[prov-json]
Trung Dong Huynh; Michael O. Jewell; Amir Sezavar Keshavarz; Danius T. Michaelides; Huanjia Yang; Luc Moreau. The PROV-JSON Serialization. A JSON Representation for the PROV Data Model. Member-SUBM. URL: http://www.w3.org/Submission/2013/SUBM-prov-json-20130424/
[prov-n]
Luc Moreau; Paolo Missier. PROV-N: The Provenance Notation. 30 April 2013. W3C Recommendation. URL: http://www.w3.org/TR/prov-n/
[prov-o]
Timothy Lebo; Satya Sahoo; Deborah McGuinness. PROV-O: The PROV Ontology. 30 April 2013. W3C Recommendation. URL: http://www.w3.org/TR/prov-o/
[prov-xml]
Hook Hua; Curt Tilmes; Stephan Zednik. PROV-XML: The PROV XML Schema. 30 April 2013. W3C Note. URL: http://www.w3.org/TR/prov-xml/
[turtle]
Eric Prud'hommeaux; Gavin Carothers. RDF 1.1 Turtle. 25 February 2014. W3C Recommendation. URL: http://www.w3.org/TR/turtle/