prov-1.5.2/ 0000755 0000765 0000000 00000000000 13236426126 012407 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/PKG-INFO 0000644 0000765 0000000 00000007265 13236426126 013516 0 ustar tdh wheel 0000000 0000000 Metadata-Version: 1.1
Name: prov
Version: 1.5.2
Summary: A library for W3C Provenance Data Model supporting PROV-JSON, PROV-XML and PROV-O (RDF)
Home-page: https://github.com/trungdong/prov
Author: Trung Dong Huynh
Author-email: trungdong@donggiang.com
License: MIT
Description-Content-Type: UNKNOWN
Description: ============
Introduction
============
.. image:: https://badge.fury.io/py/prov.svg
:target: http://badge.fury.io/py/prov
:alt: Latest Release
.. image:: https://travis-ci.org/trungdong/prov.svg
:target: https://travis-ci.org/trungdong/prov
:alt: Build Status
.. image:: https://img.shields.io/coveralls/trungdong/prov.svg
:target: https://coveralls.io/r/trungdong/prov?branch=master
:alt: Coverage Status
.. image:: https://landscape.io/github/trungdong/prov/master/landscape.svg?style=flat
:target: https://landscape.io/github/trungdong/prov/master
:alt: Code Health
.. image:: https://img.shields.io/pypi/wheel/prov.svg
:target: https://pypi.python.org/pypi/prov/
:alt: Wheel Status
.. image:: https://img.shields.io/pypi/pyversions/prov.svg
:target: https://pypi.python.org/pypi/prov/
:alt: Supported Python version
.. image:: https://img.shields.io/pypi/l/prov.svg
:target: https://pypi.python.org/pypi/prov/
:alt: License
A library for W3C Provenance Data Model supporting PROV-O (RDF), PROV-XML, PROV-JSON import/export
* Free software: MIT license
* Documentation: http://prov.readthedocs.io/.
Features
--------
* An implementation of the `W3C PROV Data Model `_ in Python.
* In-memory classes for PROV assertions, which can then be output as `PROV-N `_
* Serialization and deserialization support: `PROV-O `_ (RDF), `PROV-XML `_ and `PROV-JSON `_.
* Exporting PROV documents into various graphical formats (e.g. PDF, PNG, SVG).
* Convert a PROV document to a `Networkx MultiDiGraph `_ and back.
Uses
^^^^
See `a short tutorial `_ for using this package.
This package is used extensively by `ProvStore `_,
a free online repository for provenance documents.
Keywords: provenance,graph,model,PROV,PROV-DM,PROV-JSON,JSON,PROV-XML,PROV-N,PROV-O,RDF
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Security
Classifier: Topic :: System :: Logging
prov-1.5.2/prov/ 0000755 0000765 0000000 00000000000 13236426125 013374 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/graph.py 0000644 0000765 0000000 00000006657 13236423634 015067 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import networkx as nx
from prov.model import (
ProvDocument, ProvRecord, ProvElement, ProvEntity, ProvActivity, ProvAgent,
ProvRelation, PROV_ATTR_ENTITY, PROV_ATTR_ACTIVITY, PROV_ATTR_AGENT,
PROV_ATTR_TRIGGER, PROV_ATTR_GENERATED_ENTITY, PROV_ATTR_USED_ENTITY,
PROV_ATTR_DELEGATE, PROV_ATTR_RESPONSIBLE, PROV_ATTR_SPECIFIC_ENTITY,
PROV_ATTR_GENERAL_ENTITY, PROV_ATTR_ALTERNATE1, PROV_ATTR_ALTERNATE2,
PROV_ATTR_COLLECTION, PROV_ATTR_INFORMED, PROV_ATTR_INFORMANT
)
__author__ = 'Trung Dong Huynh'
__email__ = 'trungdong@donggiang.com'
INFERRED_ELEMENT_CLASS = {
PROV_ATTR_ENTITY: ProvEntity,
PROV_ATTR_ACTIVITY: ProvActivity,
PROV_ATTR_AGENT: ProvAgent,
PROV_ATTR_TRIGGER: ProvEntity,
PROV_ATTR_GENERATED_ENTITY: ProvEntity,
PROV_ATTR_USED_ENTITY: ProvEntity,
PROV_ATTR_DELEGATE: ProvAgent,
PROV_ATTR_RESPONSIBLE: ProvAgent,
PROV_ATTR_SPECIFIC_ENTITY: ProvEntity,
PROV_ATTR_GENERAL_ENTITY: ProvEntity,
PROV_ATTR_ALTERNATE1: ProvEntity,
PROV_ATTR_ALTERNATE2: ProvEntity,
PROV_ATTR_COLLECTION: ProvEntity,
PROV_ATTR_INFORMED: ProvActivity,
PROV_ATTR_INFORMANT: ProvActivity
}
def prov_to_graph(prov_document):
"""
Convert a :class:`~prov.model.ProvDocument` to a `MultiDiGraph
`_
instance of the `NetworkX `_ library.
:param prov_document: The :class:`~prov.model.ProvDocument` instance to convert.
"""
g = nx.MultiDiGraph()
unified = prov_document.unified()
node_map = dict()
for element in unified.get_records(ProvElement):
g.add_node(element)
node_map[element.identifier] = element
for relation in unified.get_records(ProvRelation):
# taking the first two elements of a relation
attr_pair_1, attr_pair_2 = relation.formal_attributes[:2]
# only need the QualifiedName (i.e. the value of the attribute)
qn1, qn2 = attr_pair_1[1], attr_pair_2[1]
if qn1 and qn2: # only proceed if both ends of the relation exist
try:
if qn1 not in node_map:
node_map[qn1] = \
INFERRED_ELEMENT_CLASS[attr_pair_1[0]](None, qn1)
if qn2 not in node_map:
node_map[qn2] = \
INFERRED_ELEMENT_CLASS[attr_pair_2[0]](None, qn2)
except KeyError:
# Unsupported attribute; cannot infer the type of the element
continue # skipping this relation
g.add_edge(node_map[qn1], node_map[qn2], relation=relation)
return g
def graph_to_prov(g):
"""
Convert a `MultiDiGraph
`_
that was previously produced by :func:`prov_to_graph` back to a
:class:`~prov.model.ProvDocument`.
:param g: The graph instance to convert.
"""
prov_doc = ProvDocument()
for n in g.nodes():
if isinstance(n, ProvRecord) and n.bundle is not None:
prov_doc.add_record(n)
for _, _, edge_data in g.edges(data=True):
try:
relation = edge_data['relation']
if isinstance(relation, ProvRecord):
prov_doc.add_record(relation)
except KeyError:
pass
return prov_doc
prov-1.5.2/prov/constants.py 0000644 0000765 0000000 00000016552 13236423634 015775 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import six
from prov.identifier import Namespace
__author__ = 'Trung Dong Huynh'
__email__ = 'trungdong@donggiang.com'
XSD = Namespace('xsd', 'http://www.w3.org/2001/XMLSchema#')
PROV = Namespace('prov', 'http://www.w3.org/ns/prov#')
XSI = Namespace('xsi', 'http://www.w3.org/2001/XMLSchema-instance')
# C1. Entities/Activities
PROV_ENTITY = PROV['Entity']
PROV_ACTIVITY = PROV['Activity']
PROV_GENERATION = PROV['Generation']
PROV_USAGE = PROV['Usage']
PROV_COMMUNICATION = PROV['Communication']
PROV_START = PROV['Start']
PROV_END = PROV['End']
PROV_INVALIDATION = PROV['Invalidation']
# C2. Derivations
PROV_DERIVATION = PROV['Derivation']
# C3. Agents/Responsibility
PROV_AGENT = PROV['Agent']
PROV_ATTRIBUTION = PROV['Attribution']
PROV_ASSOCIATION = PROV['Association']
PROV_DELEGATION = PROV['Delegation']
PROV_INFLUENCE = PROV['Influence']
# C4. Bundles
PROV_BUNDLE = PROV['Bundle']
# C5. Alternate
PROV_ALTERNATE = PROV['Alternate']
PROV_SPECIALIZATION = PROV['Specialization']
PROV_MENTION = PROV['Mention']
# C6. Collections
PROV_MEMBERSHIP = PROV['Membership']
PROV_N_MAP = {
PROV_ENTITY: u'entity',
PROV_ACTIVITY: u'activity',
PROV_GENERATION: u'wasGeneratedBy',
PROV_USAGE: u'used',
PROV_COMMUNICATION: u'wasInformedBy',
PROV_START: u'wasStartedBy',
PROV_END: u'wasEndedBy',
PROV_INVALIDATION: u'wasInvalidatedBy',
PROV_DERIVATION: u'wasDerivedFrom',
PROV_AGENT: u'agent',
PROV_ATTRIBUTION: u'wasAttributedTo',
PROV_ASSOCIATION: u'wasAssociatedWith',
PROV_DELEGATION: u'actedOnBehalfOf',
PROV_INFLUENCE: u'wasInfluencedBy',
PROV_ALTERNATE: u'alternateOf',
PROV_SPECIALIZATION: u'specializationOf',
PROV_MENTION: u'mentionOf',
PROV_MEMBERSHIP: u'hadMember',
PROV_BUNDLE: u'bundle',
}
# Records defined as subtypes in PROV-N but top level types in for example
# PROV XML also need a mapping.
ADDITIONAL_N_MAP = {
PROV['Revision']: u'wasRevisionOf',
PROV['Quotation']: u'wasQuotedFrom',
PROV['PrimarySource']: u'hadPrimarySource',
PROV['SoftwareAgent']: u'softwareAgent',
PROV['Person']: u'person',
PROV['Organization']: u'organization',
PROV['Plan']: u'plan',
PROV['Collection']: u'collection',
PROV['EmptyCollection']: u'emptyCollection',
}
# Maps qualified names from the PROV namespace to their base class. If it
# has no baseclass it maps to itsself. This is needed for example for PROV
# XML (de)serializer where extended types are used a lot.
PROV_BASE_CLS = {
PROV_ENTITY: PROV_ENTITY,
PROV_ACTIVITY: PROV_ACTIVITY,
PROV_GENERATION: PROV_GENERATION,
PROV_USAGE: PROV_USAGE,
PROV_COMMUNICATION: PROV_COMMUNICATION,
PROV_START: PROV_START,
PROV_END: PROV_END,
PROV_INVALIDATION: PROV_INVALIDATION,
PROV_DERIVATION: PROV_DERIVATION,
PROV['Revision']: PROV_DERIVATION,
PROV['Quotation']: PROV_DERIVATION,
PROV['PrimarySource']: PROV_DERIVATION,
PROV_AGENT: PROV_AGENT,
PROV['SoftwareAgent']: PROV_AGENT,
PROV['Person']: PROV_AGENT,
PROV['Organization']: PROV_AGENT,
PROV_ATTRIBUTION: PROV_ATTRIBUTION,
PROV_ASSOCIATION: PROV_ASSOCIATION,
PROV['Plan']: PROV_ENTITY,
PROV_DELEGATION: PROV_DELEGATION,
PROV_INFLUENCE: PROV_INFLUENCE,
PROV_ALTERNATE: PROV_ALTERNATE,
PROV_SPECIALIZATION: PROV_SPECIALIZATION,
PROV_MENTION: PROV_MENTION,
PROV['Collection']: PROV_ENTITY,
PROV['EmptyCollection']: PROV_ENTITY,
PROV_MEMBERSHIP: PROV_MEMBERSHIP,
PROV_BUNDLE: PROV_ENTITY
}
# Identifiers for PROV's attributes
PROV_ATTR_ENTITY = PROV['entity']
PROV_ATTR_ACTIVITY = PROV['activity']
PROV_ATTR_TRIGGER = PROV['trigger']
PROV_ATTR_INFORMED = PROV['informed']
PROV_ATTR_INFORMANT = PROV['informant']
PROV_ATTR_STARTER = PROV['starter']
PROV_ATTR_ENDER = PROV['ender']
PROV_ATTR_AGENT = PROV['agent']
PROV_ATTR_PLAN = PROV['plan']
PROV_ATTR_DELEGATE = PROV['delegate']
PROV_ATTR_RESPONSIBLE = PROV['responsible']
PROV_ATTR_GENERATED_ENTITY = PROV['generatedEntity']
PROV_ATTR_USED_ENTITY = PROV['usedEntity']
PROV_ATTR_GENERATION = PROV['generation']
PROV_ATTR_USAGE = PROV['usage']
PROV_ATTR_SPECIFIC_ENTITY = PROV['specificEntity']
PROV_ATTR_GENERAL_ENTITY = PROV['generalEntity']
PROV_ATTR_ALTERNATE1 = PROV['alternate1']
PROV_ATTR_ALTERNATE2 = PROV['alternate2']
PROV_ATTR_BUNDLE = PROV['bundle']
PROV_ATTR_INFLUENCEE = PROV['influencee']
PROV_ATTR_INFLUENCER = PROV['influencer']
PROV_ATTR_COLLECTION = PROV['collection']
# Literal properties
PROV_ATTR_TIME = PROV['time']
PROV_ATTR_STARTTIME = PROV['startTime']
PROV_ATTR_ENDTIME = PROV['endTime']
PROV_ATTRIBUTE_QNAMES = {
PROV_ATTR_ENTITY,
PROV_ATTR_ACTIVITY,
PROV_ATTR_TRIGGER,
PROV_ATTR_INFORMED,
PROV_ATTR_INFORMANT,
PROV_ATTR_STARTER,
PROV_ATTR_ENDER,
PROV_ATTR_AGENT,
PROV_ATTR_PLAN,
PROV_ATTR_DELEGATE,
PROV_ATTR_RESPONSIBLE,
PROV_ATTR_GENERATED_ENTITY,
PROV_ATTR_USED_ENTITY,
PROV_ATTR_GENERATION,
PROV_ATTR_USAGE,
PROV_ATTR_SPECIFIC_ENTITY,
PROV_ATTR_GENERAL_ENTITY,
PROV_ATTR_ALTERNATE1,
PROV_ATTR_ALTERNATE2,
PROV_ATTR_BUNDLE,
PROV_ATTR_INFLUENCEE,
PROV_ATTR_INFLUENCER,
PROV_ATTR_COLLECTION
}
PROV_ATTRIBUTE_LITERALS = {
PROV_ATTR_TIME, PROV_ATTR_STARTTIME, PROV_ATTR_ENDTIME
}
# Set of formal attributes of PROV records
PROV_ATTRIBUTES = PROV_ATTRIBUTE_QNAMES | PROV_ATTRIBUTE_LITERALS
PROV_RECORD_ATTRIBUTES = list((attr, six.text_type(attr)) for attr in
PROV_ATTRIBUTES)
PROV_RECORD_IDS_MAP = dict(
(PROV_N_MAP[rec_type_id], rec_type_id) for rec_type_id in PROV_N_MAP
)
PROV_ID_ATTRIBUTES_MAP = dict(
(prov_id, attribute) for (prov_id, attribute) in PROV_RECORD_ATTRIBUTES
)
PROV_ATTRIBUTES_ID_MAP = dict(
(attribute, prov_id) for (prov_id, attribute) in PROV_RECORD_ATTRIBUTES
)
# Extra definition for convenience
PROV_TYPE = PROV['type']
PROV_LABEL = PROV['label']
PROV_VALUE = PROV['value']
PROV_LOCATION = PROV['location']
PROV_ROLE = PROV['role']
PROV_QUALIFIEDNAME = PROV['QUALIFIED_NAME']
# XSD DATA TYPES
XSD_ANYURI = XSD['anyURI']
XSD_QNAME = XSD['QName']
XSD_DATETIME = XSD['dateTime']
XSD_TIME = XSD['time']
XSD_DATE = XSD['date']
XSD_STRING = XSD['string']
XSD_BOOLEAN = XSD['boolean']
# All XSD Integer types
XSD_INTEGER = XSD['integer']
XSD_LONG = XSD['long']
XSD_INT = XSD['int']
XSD_SHORT = XSD['short']
XSD_BYTE = XSD['byte']
XSD_NONNEGATIVEINTEGER = XSD['nonNegativeInteger']
XSD_UNSIGNEDLONG = XSD['unsignedLong']
XSD_UNSIGNEDINT = XSD['unsignedInt']
XSD_UNSIGNEDSHORT = XSD['unsignedShort']
XSD_UNSIGNEDBYTE = XSD['unsignedByte']
XSD_POSITIVEINTEGER = XSD['positiveInteger']
XSD_NONPOSITIVEINTEGER = XSD['nonPositiveInteger']
XSD_NEGATIVEINTEGER = XSD['negativeInteger']
# All XSD real number types
XSD_FLOAT = XSD['float']
XSD_DOUBLE = XSD['double']
XSD_DECIMAL = XSD['decimal']
prov-1.5.2/prov/tests/ 0000755 0000765 0000000 00000000000 13236426125 014536 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/test_model.py 0000644 0000765 0000000 00000020160 13236423634 017250 0 ustar tdh wheel 0000000 0000000 """
Created on Jan 25, 2012
@author: Trung Dong Huynh
"""
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import unittest
import logging
import os
from prov.model import ProvDocument, ProvBundle, ProvException, first, Literal
from prov.tests import examples
from prov.tests.attributes import TestAttributesBase
from prov.tests.qnames import TestQualifiedNamesBase
from prov.tests.statements import TestStatementsBase
from prov.tests.utility import RoundTripTestCase
logger = logging.getLogger(__name__)
EX_URI = 'http://www.example.org/'
EX2_URI = 'http://www.example2.org/'
class TestExamplesBase(object):
"""This is the base class for testing support for all the examples provided
in prov.tests.examples.
It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
def test_all_examples(self):
counter = 0
for name, graph in examples.tests:
counter += 1
logger.info('%d. Testing the %s example', counter, name)
g = graph()
self.do_tests(g)
class TestLoadingProvToolboxJSON(unittest.TestCase):
def setUp(self):
self.json_path = os.path.dirname(os.path.abspath(__file__)) + '/json/'
filenames = os.listdir(self.json_path)
self.fails = []
for filename in filenames:
if filename.endswith('.json'):
with open(self.json_path + filename) as json_file:
try:
g1 = ProvDocument.deserialize(json_file)
json_str = g1.serialize(indent=4)
g2 = ProvDocument.deserialize(content=json_str)
self.assertEqual(
g1, g2,
'Round-trip JSON encoding/decoding failed: %s.'
% filename
)
except:
self.fails.append(filename)
def test_loading_all_json(self):
# self.assertFalse(fails, 'Failed to load/round-trip %d JSON files (%s)' % (len(fails), ', '.join(fails)))
# Code for debugging the failed tests
for filename in self.fails:
# Reload the failed files
filepath = self.json_path + filename
# os.rename(json_path + filename, json_path + filename + '-fail')
with open(filepath) as json_file:
logger.info("Loading %s...", filepath)
g1 = ProvDocument.deserialize(json_file)
json_str = g1.serialize(indent=4)
g2 = ProvDocument.deserialize(content=json_str)
self.assertEqual(
g1, g2,
'Round-trip JSON encoding/decoding failed: %s.'
% filename
)
class TestFlattening(unittest.TestCase):
def test_flattening(self):
for name, graph in examples.tests:
logger.info('Testing flattening of the %s example', name)
document = graph()
flattened = document.flattened()
flattened_records = set(flattened.get_records())
# counting all the records:
n_records = 0
for record in document.get_records():
n_records += 1
self.assertIn(record, flattened_records)
for bundle in document.bundles:
for record in bundle.get_records():
n_records += 1
self.assertIn(record, flattened_records)
self.assertEqual(n_records, len(flattened.get_records()))
class TestUnification(unittest.TestCase):
def test_unifying(self):
# This is a very trivial test just to exercise the unified() function
# TODO: Create a proper unification test
json_path = os.path.dirname(os.path.abspath(__file__)) + '/unification/'
filenames = os.listdir(json_path)
for filename in filenames:
if not filename.endswith('.json'):
continue
filepath = json_path + filename
with open(filepath) as json_file:
logger.info('Testing unifying: %s', filename)
logger.debug("Loading %s...", filepath)
document = ProvDocument.deserialize(json_file)
flattened = document.flattened()
unified = flattened.unified()
self.assertLess(
len(unified.get_records()),
len(flattened.get_records())
)
class TestBundleUpdate(unittest.TestCase):
def test_bundle_update_simple(self):
doc = ProvDocument()
doc.set_default_namespace(EX_URI)
b1 = doc.bundle('b1')
b1.entity('e')
b2 = doc.bundle('b2')
b2.entity('e')
self.assertRaises(ProvException, lambda: b1.update(1))
self.assertRaises(ProvException, lambda: b1.update(doc))
b1.update(b2)
self.assertEqual(len(b1.get_records()), 2)
def test_document_update_simple(self):
d1 = ProvDocument()
d1.set_default_namespace(EX_URI)
d1.entity('e')
b1 = d1.bundle('b1')
b1.entity('e')
d2 = ProvDocument()
d2.set_default_namespace(EX_URI)
d2.entity('e')
b1 = d2.bundle('b1')
b1.entity('e')
b2 = d2.bundle('b2')
b2.entity('e')
self.assertRaises(ProvException, lambda: d1.update(1))
d1.update(d2)
self.assertEqual(len(d1.get_records()), 2)
self.assertEqual(len(d1.bundles), 2)
class TestAddBundle(unittest.TestCase):
def document_1(self):
d1 = ProvDocument()
ns_ex = d1.add_namespace('ex', EX_URI)
d1.entity(ns_ex['e1'])
return d1
def document_2(self):
d2 = ProvDocument()
ns_ex = d2.add_namespace('ex', EX2_URI)
d2.activity(ns_ex['a1'])
return d2
def bundle_0(self):
b = ProvBundle(namespaces={'ex': EX2_URI})
return b
def test_add_bundle_simple(self):
d1 = self.document_1()
b0 = self.bundle_0()
def sub_test_1():
d1.add_bundle(b0)
self.assertRaises(ProvException, sub_test_1)
self.assertFalse(d1.has_bundles())
d1.add_bundle(b0, 'ex:b0')
self.assertTrue(d1.has_bundles())
self.assertIn(b0, d1.bundles)
def sub_test_2():
ex2_b0 = b0.identifier
d1.add_bundle(ProvBundle(identifier=ex2_b0))
self.assertRaises(ProvException, sub_test_2)
d1.add_bundle(ProvBundle(), 'ex:b0')
self.assertEqual(len(d1.bundles), 2)
def test_add_bundle_document(self):
d1 = self.document_1()
d2 = self.document_2()
def sub_test_1():
d1.add_bundle(d2)
self.assertRaises(ProvException, sub_test_1)
ex2_b2 = d2.valid_qualified_name('ex:b2')
d1.add_bundle(d2, 'ex:b2')
self.assertEqual(ex2_b2, first(d1.bundles).identifier)
self.assertNotIn(d2, d1.bundles)
b2 = ProvBundle()
b2.update(d2)
self.assertIn(b2, d1.bundles)
class TestLiteralRepresentation(unittest.TestCase):
def test_literal_provn_with_single_quotes(self):
l = Literal('{"foo": "bar"}')
string_rep = l.provn_representation()
self.assertTrue('{\\"f' in string_rep)
def test_literal_provn_with_triple_quotes(self):
l = Literal('"""foo\\nbar"""')
string_rep = l.provn_representation()
self.assertTrue('\\"\\"\\"f' in string_rep)
class AllTestsBase(TestExamplesBase, TestStatementsBase,
TestAttributesBase, TestQualifiedNamesBase):
"""This is a test to include all available tests.
"""
pass
class RoundTripModelTest(RoundTripTestCase, AllTestsBase):
def assertRoundTripEquivalence(self, prov_doc, msg=None):
"""Exercises prov.model without the actual serialization and PROV-N
generation.
"""
provn_content = prov_doc.get_provn()
# Checking for self-equality
self.assertEqual(
prov_doc, prov_doc,
'The document is not self-equal:\n' + provn_content)
if __name__ == "__main__":
unittest.main()
prov-1.5.2/prov/tests/unification/ 0000755 0000765 0000000 00000000000 13236426126 017047 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/unification/unification-activity-s4-PASS-c22.json 0000644 0000765 0000000 00000000350 13236423634 025557 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:startTime": "2012-11-16T16:05:00.000Z"
},
{
"prov:endTime": "2012-11-16T17:05:00.000Z"
}
]
}
} prov-1.5.2/prov/tests/unification/unification-activity-start-s1-PASS-c28.json 0000644 0000765 0000000 00000000550 13236423634 026717 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:startTime": "2012-11-16T16:05:00.000Z"
},
{
"prov:endTime": "2012-11-16T17:05:00.000Z"
}
]
},
"wasStartedBy": {
"ex:start1": {
"prov:activity": "ex:a1",
"prov:time": "2012-11-16T16:05:00.000Z"
}
}
} prov-1.5.2/prov/tests/unification/unification-activity-s3-PASS-c22.json 0000644 0000765 0000000 00000000254 13236423634 025561 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:endTime": "2012-11-16T17:05:00.000Z"
},
{}
]
}
} prov-1.5.2/prov/tests/unification/unification-attributes-activity-s1-PASS-c22.json 0000644 0000765 0000000 00000000527 13236423634 027746 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:type": {
"$": "ex:test1",
"type": "xsd:QName"
}
},
{
"prov:type": {
"$": "ex:test2",
"type": "xsd:QName"
}
}
]
}
} prov-1.5.2/prov/tests/unification/unification-attributes-entity-s1-PASS-c22.json 0000644 0000765 0000000 00000000527 13236423634 027426 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": [
{
"prov:type": {
"$": "ex:test1",
"type": "xsd:QName"
}
},
{
"prov:type": {
"$": "ex:test2",
"type": "xsd:QName"
}
}
]
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/unification/unification-activity-end-s1-PASS-c29.json 0000644 0000765 0000000 00000000544 13236423634 026334 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": {
"prov:activity": "ex:a1",
"prov:time": "2012-11-16T17:05:00.000Z"
}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:startTime": "2012-11-16T16:05:00.000Z"
},
{
"prov:endTime": "2012-11-16T17:05:00.000Z"
}
]
}
} prov-1.5.2/prov/tests/unification/unification-attributes-end-s2-PASS-c23.json 0000644 0000765 0000000 00000001342 13236423634 026656 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"_:wEB4": {
"prov:activity": "ex:a1",
"prov:type": {
"$": "ex:test1",
"type": "xsd:string"
},
"prov:trigger": "ex:e1",
"prov:ender": "ex:a2"
},
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:type": {
"$": "ex:test1",
"type": "xsd:QName"
},
"prov:time": "2011-11-16T16:05:00.000Z"
},
{
"prov:activity": "ex:a1",
"prov:type": {
"$": "1",
"type": "xsd:int"
},
"prov:ender": "ex:a2"
}
]
},
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {},
"ex:a1": {}
}
} prov-1.5.2/prov/tests/unification/unification-activity-s2-PASS-c22.json 0000644 0000765 0000000 00000000256 13236423634 025562 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{
"prov:startTime": "2012-11-16T16:05:00.000Z"
},
{}
]
}
} prov-1.5.2/prov/tests/unification/unification-activity-s1-PASS-c22.json 0000644 0000765 0000000 00000000162 13236423634 025555 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": [
{},
{}
]
}
} prov-1.5.2/prov/tests/test_xml.py 0000644 0000765 0000000 00000033025 13236423634 016754 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import difflib
import glob
import inspect
import io
from lxml import etree
import os
import unittest
import warnings
from prov.identifier import Namespace, QualifiedName
from prov.constants import PROV
import prov.model as prov
from prov.tests.test_model import AllTestsBase
from prov.tests.utility import RoundTripTestCase
EX_NS = ('ex', 'http://example.com/ns/ex#')
EX_TR = ('tr', 'http://example.com/ns/tr#')
# Most general way to get the path.
DATA_PATH = os.path.join(os.path.dirname(os.path.abspath(inspect.getfile(
inspect.currentframe()))), "xml")
def remove_empty_tags(tree):
if tree.text is not None and tree.text.strip() == "":
tree.text = None
for elem in tree:
if etree.iselement(elem):
remove_empty_tags(elem)
def compare_xml(doc1, doc2):
"""
Helper function to compare two XML files. It will parse both once again
and write them in a canonical fashion.
"""
try:
doc1.seek(0, 0)
except AttributeError:
pass
try:
doc2.seek(0, 0)
except AttributeError:
pass
obj1 = etree.parse(doc1)
obj2 = etree.parse(doc2)
# Remove comments from both.
for c in obj1.getroot().xpath("//comment()"):
p = c.getparent()
p.remove(c)
for c in obj2.getroot().xpath("//comment()"):
p = c.getparent()
p.remove(c)
remove_empty_tags(obj1.getroot())
remove_empty_tags(obj2.getroot())
buf = io.BytesIO()
obj1.write_c14n(buf)
buf.seek(0, 0)
str1 = buf.read().decode()
str1 = [_i.strip() for _i in str1.splitlines() if _i.strip()]
buf = io.BytesIO()
obj2.write_c14n(buf)
buf.seek(0, 0)
str2 = buf.read().decode()
str2 = [_i.strip() for _i in str2.splitlines() if _i.strip()]
unified_diff = difflib.unified_diff(str1, str2)
err_msg = "\n".join(unified_diff)
if err_msg:
msg = "Strings are not equal.\n"
raise AssertionError(msg + err_msg)
class ProvXMLTestCase(unittest.TestCase):
def test_serialization_example_6(self):
"""
Test the serialization of example 6 which is a simple entity
description.
"""
document = prov.ProvDocument()
ex_ns = document.add_namespace(*EX_NS)
document.add_namespace(*EX_TR)
document.entity("tr:WD-prov-dm-20111215", (
(prov.PROV_TYPE, ex_ns["Document"]),
("ex:version", "2")
))
with io.BytesIO() as actual:
document.serialize(format='xml', destination=actual)
compare_xml(os.path.join(DATA_PATH, "example_06.xml"), actual)
def test_serialization_example_7(self):
"""
Test the serialization of example 7 which is a basic activity.
"""
document = prov.ProvDocument()
document.add_namespace(*EX_NS)
document.activity(
"ex:a1",
"2011-11-16T16:05:00",
"2011-11-16T16:06:00", [
(prov.PROV_TYPE, prov.Literal("ex:edit", prov.XSD_QNAME)),
("ex:host", "server.example.org")])
with io.BytesIO() as actual:
document.serialize(format='xml', destination=actual)
compare_xml(os.path.join(DATA_PATH, "example_07.xml"), actual)
def test_serialization_example_8(self):
"""
Test the serialization of example 8 which deals with generation.
"""
document = prov.ProvDocument()
document.add_namespace(*EX_NS)
e1 = document.entity("ex:e1")
a1 = document.activity("ex:a1")
document.wasGeneratedBy(entity=e1, activity=a1,
time="2001-10-26T21:32:52",
other_attributes={"ex:port": "p1"})
e2 = document.entity("ex:e2")
document.wasGeneratedBy(entity=e2, activity=a1,
time="2001-10-26T10:00:00",
other_attributes={"ex:port": "p2"})
with io.BytesIO() as actual:
document.serialize(format='xml', destination=actual)
compare_xml(os.path.join(DATA_PATH, "example_08.xml"), actual)
def test_deserialization_example_6(self):
"""
Test the deserialization of example 6 which is a simple entity
description.
"""
actual_doc = prov.ProvDocument.deserialize(
source=os.path.join(DATA_PATH, "example_06.xml"),
format="xml")
expected_document = prov.ProvDocument()
ex_ns = expected_document.add_namespace(*EX_NS)
expected_document.add_namespace(*EX_TR)
expected_document.entity("tr:WD-prov-dm-20111215", (
(prov.PROV_TYPE, ex_ns["Document"]),
("ex:version", "2")
))
self.assertEqual(actual_doc, expected_document)
def test_deserialization_example_7(self):
"""
Test the deserialization of example 7 which is a simple activity
description.
"""
actual_doc = prov.ProvDocument.deserialize(
source=os.path.join(DATA_PATH, "example_07.xml"),
format="xml")
expected_document = prov.ProvDocument()
ex_ns = Namespace(*EX_NS)
expected_document.add_namespace(ex_ns)
expected_document.activity(
"ex:a1",
"2011-11-16T16:05:00",
"2011-11-16T16:06:00", [
(prov.PROV_TYPE, QualifiedName(ex_ns, "edit")),
("ex:host", "server.example.org")])
self.assertEqual(actual_doc, expected_document)
def test_deserialization_example_04_and_05(self):
"""
Example 4 and 5 have a different type specification. They use an
xsi:type as an attribute on an entity. This can be read but if
written again it will become an XML child element. This is
semantically identical but cannot be tested with a round trip.
"""
# Example 4.
xml_string = """
ex:Workflow
"""
with io.StringIO() as xml:
xml.write(xml_string)
xml.seek(0, 0)
actual_document = prov.ProvDocument.deserialize(source=xml,
format="xml")
expected_document = prov.ProvDocument()
ex_ns = Namespace(*EX_NS)
expected_document.add_namespace(ex_ns)
expected_document.add_namespace(*EX_TR)
# The xsi:type attribute is mapped to a proper PROV attribute.
expected_document.entity("tr:WD-prov-dm-20111215", (
(prov.PROV_TYPE, QualifiedName(ex_ns, "Workflow")),
(prov.PROV_TYPE, PROV["Plan"])))
self.assertEqual(actual_document, expected_document, "example_04")
# Example 5.
xml_string = """
ex:Workflow
prov:Plan
prov:Entity
"""
with io.StringIO() as xml:
xml.write(xml_string)
xml.seek(0, 0)
actual_document = prov.ProvDocument.deserialize(source=xml,
format="xml")
expected_document = prov.ProvDocument()
expected_document.add_namespace(*EX_NS)
expected_document.add_namespace(*EX_TR)
# The xsi:type attribute is mapped to a proper PROV attribute.
expected_document.entity("tr:WD-prov-dm-20111215", (
(prov.PROV_TYPE, QualifiedName(ex_ns, "Workflow")),
(prov.PROV_TYPE, PROV["Entity"]),
(prov.PROV_TYPE, PROV["Plan"])
))
self.assertEqual(actual_document, expected_document, "example_05")
def test_other_elements(self):
"""
PROV XML uses the element to enable the storage of non
PROV information in a PROV XML document. It will be ignored by this
library a warning will be raised informing the user.
"""
# This is example 42 from the PROV XML documentation.
xml_string = """
bar
"""
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
with io.StringIO() as xml:
xml.write(xml_string)
xml.seek(0, 0)
doc = prov.ProvDocument.deserialize(source=xml, format="xml")
self.assertEqual(len(w), 1)
self.assertTrue(
"Document contains non-PROV information in . It will "
"be ignored in this package." in str(w[0].message))
# This document contains nothing else.
self.assertEqual(len(doc._records), 0)
def test_nested_default_namespace(self):
"""
Tests that a default namespace that is defined in a lower level tag is
written to a bundle.
"""
filename = os.path.join(DATA_PATH, "nested_default_namespace.xml")
doc = prov.ProvDocument.deserialize(source=filename, format="xml")
ns = Namespace("", "http://example.org/0/")
self.assertEqual(len(doc._records), 1)
self.assertEqual(doc.get_default_namespace(), ns)
self.assertEqual(doc._records[0].identifier.namespace, ns)
self.assertEqual(doc._records[0].identifier.localpart, "e001")
def test_redefining_namespaces(self):
"""
Test the behaviour when namespaces are redefined at the element level.
"""
filename = os.path.join(DATA_PATH,
"namespace_redefined_but_does_not_change.xml")
doc = prov.ProvDocument.deserialize(source=filename, format="xml")
# This has one record part of the original namespace.
self.assertEqual(len(doc._records), 1)
ns = Namespace("ex", "http://example.com/ns/ex#")
self.assertEqual(doc._records[0].attributes[0][1].namespace, ns)
# This also has one record but now in a different namespace.
filename = os.path.join(DATA_PATH, "namespace_redefined.xml")
doc = prov.ProvDocument.deserialize(source=filename, format="xml")
new_ns = doc._records[0].attributes[0][1].namespace
self.assertNotEqual(new_ns, ns)
self.assertEqual(new_ns.uri, "http://example.com/ns/new_ex#")
class ProvXMLRoundTripFromFileTestCase(unittest.TestCase):
def _perform_round_trip(self, filename, force_types=False):
document = prov.ProvDocument.deserialize(
source=filename, format="xml")
with io.BytesIO() as new_xml:
document.serialize(format='xml', destination=new_xml,
force_types=force_types)
compare_xml(filename, new_xml)
# Add one test for each found file. Lazy way to do metaprogramming...
# I think parametrized tests are justified in this case as the test
# function names make it clear what is going on.
for filename in glob.iglob(os.path.join(
DATA_PATH, "*" + os.path.extsep + "xml")):
name = os.path.splitext(os.path.basename(filename))[0]
test_name = "test_roundtrip_from_xml_%s" % name
# Cannot round trip this one as the namespace in the PROV data model are
# always defined per bundle and not per element.
if name in ("nested_default_namespace",
"nested_changing_default_namespace",
"namespace_redefined_but_does_not_change",
"namespace_redefined"):
continue
# Python creates closures on function calls...
def get_fct(f):
# Some test files have a lot of type declarations...
if name in ["pc1"]:
force_types = True
else:
force_types = False
def fct(self):
self._perform_round_trip(f, force_types=force_types)
return fct
fct = get_fct(filename)
fct.__name__ = str(test_name)
# Disabled round-trip XML comparisons since deserializing then serializing
# PROV-XML does not maintain XML equivalence. (For example, prov:entity
# elements with type prov:Plan become prov:plan elements)
# TODO: Revisit these tests
# setattr(ProvXMLRoundTripFromFileTestCase, test_name, fct)
class RoundTripXMLTests(RoundTripTestCase, AllTestsBase):
FORMAT = 'xml'
if __name__ == '__main__':
unittest.main()
prov-1.5.2/prov/tests/attributes.py 0000644 0000765 0000000 00000012425 13236423634 017304 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
from prov.model import *
EX_NS = Namespace('ex', 'http://example.org/')
EX_OTHER_NS = Namespace('other', 'http://example.org/')
class TestAttributesBase(object):
"""This is the base class for testing support for various datatypes.
It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
attribute_values = [
"un lieu",
Literal("un lieu", langtag='fr'),
Literal("a place", langtag='en'),
Literal(1, XSD_INT),
Literal(1, XSD_LONG),
Literal(1, XSD_SHORT),
Literal(2.0, XSD_DOUBLE),
Literal(1.0, XSD_FLOAT),
Literal(10, XSD_DECIMAL),
True,
False,
Literal(10, XSD_BYTE),
Literal(10, XSD_UNSIGNEDINT),
Literal(10, XSD_UNSIGNEDLONG),
Literal(10, XSD_INTEGER),
Literal(10, XSD_UNSIGNEDSHORT),
Literal(10, XSD_NONNEGATIVEINTEGER),
Literal(-10, XSD_NONPOSITIVEINTEGER),
Literal(10, XSD_POSITIVEINTEGER),
Literal(10, XSD_UNSIGNEDBYTE),
Identifier('http://example.org'),
Literal('http://example.org', XSD_ANYURI),
EX_NS['abc'],
EX_OTHER_NS['abcd'],
Namespace('ex', 'http://example4.org/')['zabc'],
Namespace('other', 'http://example4.org/')['zabcd'],
datetime.datetime.now(),
Literal(datetime.datetime.now().isoformat(), XSD_DATETIME)
]
def new_document(self):
return ProvDocument()
def run_entity_with_one_type_attribute(self, n):
document = self.new_document()
document.entity(
EX_NS['et%d' % n], {'prov:type': self.attribute_values[n]}
)
self.do_tests(document)
def test_entity_with_one_type_attribute_0(self):
self.run_entity_with_one_type_attribute(0)
def test_entity_with_one_type_attribute_1(self):
self.run_entity_with_one_type_attribute(1)
def test_entity_with_one_type_attribute_2(self):
self.run_entity_with_one_type_attribute(2)
def test_entity_with_one_type_attribute_3(self):
self.run_entity_with_one_type_attribute(3)
def test_entity_with_one_type_attribute_4(self):
self.run_entity_with_one_type_attribute(4)
def test_entity_with_one_type_attribute_5(self):
self.run_entity_with_one_type_attribute(5)
def test_entity_with_one_type_attribute_6(self):
self.run_entity_with_one_type_attribute(6)
def test_entity_with_one_type_attribute_7(self):
self.run_entity_with_one_type_attribute(7)
def test_entity_with_one_type_attribute_8(self):
self.run_entity_with_one_type_attribute(8)
def test_entity_with_one_type_attribute_9(self):
self.run_entity_with_one_type_attribute(9)
def test_entity_with_one_type_attribute_10(self):
self.run_entity_with_one_type_attribute(10)
def test_entity_with_one_type_attribute_11(self):
self.run_entity_with_one_type_attribute(11)
def test_entity_with_one_type_attribute_12(self):
self.run_entity_with_one_type_attribute(12)
def test_entity_with_one_type_attribute_13(self):
self.run_entity_with_one_type_attribute(13)
def test_entity_with_one_type_attribute_14(self):
self.run_entity_with_one_type_attribute(14)
def test_entity_with_one_type_attribute_15(self):
self.run_entity_with_one_type_attribute(15)
def test_entity_with_one_type_attribute_16(self):
self.run_entity_with_one_type_attribute(16)
def test_entity_with_one_type_attribute_17(self):
self.run_entity_with_one_type_attribute(17)
def test_entity_with_one_type_attribute_18(self):
self.run_entity_with_one_type_attribute(18)
def test_entity_with_one_type_attribute_19(self):
self.run_entity_with_one_type_attribute(19)
def test_entity_with_one_type_attribute_20(self):
self.run_entity_with_one_type_attribute(20)
def test_entity_with_one_type_attribute_21(self):
self.run_entity_with_one_type_attribute(21)
def test_entity_with_one_type_attribute_22(self):
self.run_entity_with_one_type_attribute(22)
def test_entity_with_one_type_attribute_23(self):
self.run_entity_with_one_type_attribute(23)
def test_entity_with_one_type_attribute_24(self):
self.run_entity_with_one_type_attribute(24)
def test_entity_with_one_type_attribute_25(self):
self.run_entity_with_one_type_attribute(25)
def test_entity_with_one_type_attribute_26(self):
self.run_entity_with_one_type_attribute(26)
def test_entity_with_one_type_attribute_27(self):
self.run_entity_with_one_type_attribute(27)
def test_entity_with_multiple_attribute(self):
document = self.new_document()
attributes = [
(EX_NS['v_%d' % i], value)
for i, value in enumerate(self.attribute_values)
]
document.entity(EX_NS['emov'], attributes)
self.do_tests(document)
def test_entity_with_multiple_value_attribute(self):
document = self.new_document()
attributes = [
('prov:value', value)
for i, value in enumerate(self.attribute_values)
]
document.entity(EX_NS['emv'], attributes)
self.do_tests(document)
prov-1.5.2/prov/tests/test_graphs.py 0000644 0000765 0000000 00000001307 13236423634 017436 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import unittest
from prov.tests.examples import tests
from prov.graph import prov_to_graph, graph_to_prov
class ProvGraphTestCase(unittest.TestCase):
def test_simple_graph_conversion(self):
for name, doc_func in tests:
prov_org = doc_func()
g = prov_to_graph(prov_org)
if prov_org.has_bundles():
# Cannot round-trip with documents containing bundles, skipping
continue
prov_doc = graph_to_prov(g)
self.assertEqual(prov_doc, prov_org, "Round trip graph conversion for '{}' failed.".format(name))
prov-1.5.2/prov/tests/utility.py 0000644 0000765 0000000 00000003065 13236423634 016621 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import io
import logging
import unittest
from prov.model import ProvDocument
logger = logging.getLogger(__name__)
class DocumentBaseTestCase(unittest.TestCase):
def do_tests(self, prov_doc, msg=None):
pass
class RoundTripTestCase(DocumentBaseTestCase):
"""A serializer test should subclass this class and set the class property
FORMAT to the correct value (e.g. 'json', 'xml', 'rdf').
"""
FORMAT = None # a subclass should change this
def do_tests(self, prov_doc, msg=None):
self.assertRoundTripEquivalence(prov_doc, msg)
def assertRoundTripEquivalence(self, prov_doc, msg=None):
if self.FORMAT is None:
# This is a dummy test, just return
return
with io.BytesIO() as stream:
prov_doc.serialize(destination=stream, format=self.FORMAT, indent=4)
stream.seek(0, 0)
prov_doc_new = ProvDocument.deserialize(source=stream,
format=self.FORMAT)
stream.seek(0, 0)
# Assume UTF-8 encoding which is forced by the particular
# PROV XML implementation and should also work for the PROV
# JSON implementation.
msg_extra = u"'%s' serialization content:\n%s" % (
self.FORMAT, stream.read().decode("utf-8"))
msg = u'\n'.join((msg, msg_extra)) if msg else msg_extra
self.assertEqual(prov_doc, prov_doc_new, msg)
prov-1.5.2/prov/tests/__init__.py 0000644 0000765 0000000 00000000000 13236423634 016637 0 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/xml/ 0000755 0000765 0000000 00000000000 13236426126 015337 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/xml/namespace_redefined.xml 0000644 0000765 0000000 00000000663 13236423634 022030 0 ustar tdh wheel 0000000 0000000
ex:Workflow
prov-1.5.2/prov/tests/xml/example_41.xml 0000644 0000765 0000000 00000000406 13236423634 020021 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_40.xml 0000644 0000765 0000000 00000000665 13236423634 020027 0 ustar tdh wheel 0000000 0000000
abcd
4
prov-1.5.2/prov/tests/xml/prov_primer_complete_example.xml 0000644 0000765 0000000 00000013744 13236423634 024042 0 ustar tdh wheel 0000000 0000000
Crime rises in cities
prov:Person
Derek
mailto:derek@example.org
prov:Organization
Chart Generators Inc
exc:dataToCompose
exc:regionsToAggregateBy
exc:analyst
exc:composedData
prov:Revision
prov:Revision
prov:Plan
prov:Person
2012-03-02T10:30:00
2012-04-01T15:21:00
2012-03-31T09:21:00
2012-04-01T15:21:00
2012-03-31T09:21:00
2012-04-01T15:21:00
prov:Quotation
prov-1.5.2/prov/tests/xml/nested_default_namespace.xml 0000644 0000765 0000000 00000000301 13236423634 023056 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_36.xml 0000644 0000765 0000000 00000000755 13236423634 020034 0 ustar tdh wheel 0000000 0000000
This is a human-readable label
Car 01
Voiture 01
prov-1.5.2/prov/tests/xml/example_22.xml 0000644 0000765 0000000 00000002050 13236423634 020015 0 ustar tdh wheel 0000000 0000000
prov:Person
prov:Person
rec54:WD
editorship
authorship
prov-1.5.2/prov/tests/xml/example_23.xml 0000644 0000765 0000000 00000002272 13236423634 020024 0 ustar tdh wheel 0000000 0000000
workflow execution
operator
designator
loggedInUser
webapp
designer
project1
http://example.org/workflow1.bpel
Workflow 1
prov-1.5.2/prov/tests/xml/example_37.xml 0000644 0000765 0000000 00000001111 13236423634 020020 0 ustar tdh wheel 0000000 0000000
Le Louvre, Paris
StillImage
(5,5)
10
prov-1.5.2/prov/tests/xml/example_21.xml 0000644 0000765 0000000 00000000414 13236423634 020016 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_35.xml 0000644 0000765 0000000 00000000755 13236423634 020033 0 ustar tdh wheel 0000000 0000000
2001-10-26T21:32:52
p1
prov-1.5.2/prov/tests/xml/example_09.xml 0000644 0000765 0000000 00000001300 13236423634 020017 0 ustar tdh wheel 0000000 0000000
2011-11-16T16:00:00
p1
2011-11-16T16:00:01
p2
prov-1.5.2/prov/tests/xml/example_08.xml 0000644 0000765 0000000 00000001324 13236423634 020024 0 ustar tdh wheel 0000000 0000000
2001-10-26T21:32:52
p1
2001-10-26T10:00:00
p2
prov-1.5.2/prov/tests/xml/example_34.xml 0000644 0000765 0000000 00000000646 13236423634 020031 0 ustar tdh wheel 0000000 0000000
document
2
prov-1.5.2/prov/tests/xml/example_20.xml 0000644 0000765 0000000 00000000410 13236423634 020011 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_18.xml 0000644 0000765 0000000 00000000617 13236423634 020031 0 ustar tdh wheel 0000000 0000000
prov:Person
1234
Alice
prov-1.5.2/prov/tests/xml/example_24.xml 0000644 0000765 0000000 00000002272 13236423634 020025 0 ustar tdh wheel 0000000 0000000
workflow execution
operator
designator
loggedInUser
webapp
designer
project1
http://example.org/workflow1.bpel
Workflow 1
prov-1.5.2/prov/tests/xml/example_30.xml 0000644 0000765 0000000 00000001413 13236423634 020016 0 ustar tdh wheel 0000000 0000000
a news item for desktop
a news item for mobile devices
prov-1.5.2/prov/tests/xml/example_31.xml 0000644 0000765 0000000 00000000411 13236423634 020014 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_25.xml 0000644 0000765 0000000 00000003035 13236423634 020024 0 ustar tdh wheel 0000000 0000000
workflow
programmer
researcher
funder
loggedInUser
line-management
contract
prov-1.5.2/prov/tests/xml/example_19.xml 0000644 0000765 0000000 00000000410 13236423634 020021 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/namespace_redefined_but_does_not_change.xml 0000644 0000765 0000000 00000000657 13236423634 026104 0 ustar tdh wheel 0000000 0000000
ex:Workflow
prov-1.5.2/prov/tests/xml/example_33.xml 0000644 0000765 0000000 00000001046 13236423634 020023 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_27.xml 0000644 0000765 0000000 00000001752 13236423634 020032 0 ustar tdh wheel 0000000 0000000
1
report
2
2012-05-25T11:00:01
prov-1.5.2/prov/tests/xml/example_26.xml 0000644 0000765 0000000 00000000771 13236423634 020031 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_32.xml 0000644 0000765 0000000 00000000417 13236423634 020023 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_17.xml 0000644 0000765 0000000 00000001303 13236423634 020021 0 ustar tdh wheel 0000000 0000000
map
journal
prov-1.5.2/prov/tests/xml/example_03.xml 0000644 0000765 0000000 00000000722 13236423634 020020 0 ustar tdh wheel 0000000 0000000
ex:Workflow
prov:Entity
prov:Plan
prov-1.5.2/prov/tests/xml/example_02.xml 0000644 0000765 0000000 00000000606 13236423634 020020 0 ustar tdh wheel 0000000 0000000
ex:Workflow
prov-1.5.2/prov/tests/xml/example_16.xml 0000644 0000765 0000000 00000002076 13236423634 020030 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_14.xml 0000644 0000765 0000000 00000001170 13236423634 020020 0 ustar tdh wheel 0000000 0000000
physical transform
prov-1.5.2/prov/tests/xml/example_28.xml 0000644 0000765 0000000 00000001752 13236423634 020033 0 ustar tdh wheel 0000000 0000000
1
report
2
2012-05-25T11:00:01
prov-1.5.2/prov/tests/xml/example_29.xml 0000644 0000765 0000000 00000000775 13236423634 020040 0 ustar tdh wheel 0000000 0000000
prov-1.5.2/prov/tests/xml/example_15.xml 0000644 0000765 0000000 00000001266 13236423634 020027 0 ustar tdh wheel 0000000 0000000
rec54:WD
rec54:WD
prov-1.5.2/prov/tests/xml/example_01.xml 0000644 0000765 0000000 00000000704 13236423634 020016 0 ustar tdh wheel 0000000 0000000
ex:Workflow
prov:Plan
prov-1.5.2/prov/tests/xml/example_39.xml 0000644 0000765 0000000 00000001531 13236423634 020030 0 ustar tdh wheel 0000000 0000000
document
2
prov:Person
1234
Alice
2011-11-16T16:05:00
2011-11-16T16:06:00
ex:edit
server.example.org
prov-1.5.2/prov/tests/xml/example_11.xml 0000644 0000765 0000000 00000002456 13236423634 020025 0 ustar tdh wheel 0000000 0000000
email message
Discuss
2011-11-16T16:05:00
Write
2011-11-16T16:05:00
2011-11-16T16:05:00
prov-1.5.2/prov/tests/xml/pc1.xml 0000644 0000765 0000000 00000075616 13236423634 016564 0 ustar tdh wheel 0000000 0000000
align_warp 1
prim:align_warp
align_warp 2
prim:align_warp
align_warp 3
prim:align_warp
align_warp 4
prim:align_warp
Reslice 1
http://openprovenance.org/primitives#reslice
Reslice 2
http://openprovenance.org/primitives#reslice
Reslice 3
http://openprovenance.org/primitives#reslice
Reslice 4
http://openprovenance.org/primitives#reslice
Softmean
http://openprovenance.org/primitives#softmean
Slicer 1
http://openprovenance.org/primitives#slicer
Slicer 2
http://openprovenance.org/primitives#slicer
Slicer 3
http://openprovenance.org/primitives#slicer
Convert 1
http://openprovenance.org/primitives#convert
Convert 2
http://openprovenance.org/primitives#convert
Convert 3
http://openprovenance.org/primitives#convert
Reference Image
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/reference.img
Reference Header
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/reference.hdr
Anatomy I2
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy2.img
Anatomy H2
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy2.hdr
Anatomy I1
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy1.img
Anatomy H1
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy1.hdr
Anatomy I3
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy3.img
Anatomy H3
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy3.hdr
Anatomy I4
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy4.img
Anatomy H4
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/anatomy4.hdr
Warp Params1
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/warp1.warp
Warp Params2
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/warp2.warp
Warp Params3
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/warp3.warp
Warp Params4
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/warp4.warp
Resliced I1
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced1.img
Resliced H1
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced1.hdr
Resliced I2
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced2.img
Resliced H2
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced2.hdr
Resliced I3
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced3.img
Resliced H3
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced3.hdr
Resliced I4
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced4.img
Resliced H4
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/resliced4.hdr
Atlas Image
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas.img
Atlas Header
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas.hdr
Atlas X Slice
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-x.pgm
slicer param 1
http://openprovenance.org/primitives#String
-x .5
Atlas Y Slice
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-y.pgm
slicer param 2
http://openprovenance.org/primitives#String
-y .5
Atlas Z Slice
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-z.pgm
slicer param 3
http://openprovenance.org/primitives#String
-z .5
Atlas X Graphic
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-x.gif
Atlas Y Graphic
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-y.gif
Atlas Z Graphic
http://openprovenance.org/primitives#File
http://www.ipaw.info/challenge/atlas-z.gif
John Doe
img
hdr
imgRef
hdrRef
img
hdr
imgRef
hdrRef
img
hdr
imgRef
hdrRef
img
hdr
imgRef
hdrRef
in
in
in
in
i1
h1
i2
h2
i3
h3
i4
h4
img
hdr
img
hdr
img
hdr
param
param
param
in
in
in
out
out
out
out
img
hdr
img
hdr
img
hdr
img
hdr
img
hdr
out
out
out
2012-10-26T09:58:08.407000+01:00
out
2012-10-26T09:58:08.407000+01:00
out
2012-10-26T09:58:08.407000+01:00
out
prov-1.5.2/prov/tests/xml/example_10.xml 0000644 0000765 0000000 00000001163 13236423634 020016 0 ustar tdh wheel 0000000 0000000
traffic regulations enforcing
fine paying, check writing, and mailing
prov-1.5.2/prov/tests/xml/example_38.xml 0000644 0000765 0000000 00000001276 13236423634 020035 0 ustar tdh wheel 0000000 0000000
loggedInUser
webapp
designer
project1
prov-1.5.2/prov/tests/xml/example_12.xml 0000644 0000765 0000000 00000001072 13236423634 020017 0 ustar tdh wheel 0000000 0000000
approval document
Editing
prov-1.5.2/prov/tests/xml/example_06.xml 0000644 0000765 0000000 00000000651 13236423634 020024 0 ustar tdh wheel 0000000 0000000
ex:Document
2
prov-1.5.2/prov/tests/xml/example_07.xml 0000644 0000765 0000000 00000000750 13236423634 020025 0 ustar tdh wheel 0000000 0000000
2011-11-16T16:05:00
2011-11-16T16:06:00
ex:edit
server.example.org
prov-1.5.2/prov/tests/xml/example_13.xml 0000644 0000765 0000000 00000001403 13236423634 020016 0 ustar tdh wheel 0000000 0000000
1998-09-03T01:31:00
plane accident
prov-1.5.2/prov/tests/test_extras.py 0000644 0000765 0000000 00000021025 13236423634 017457 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import io
import unittest
from prov.model import *
from prov.dot import prov_to_dot
from prov.serializers import Registry
from prov.tests.examples import primer_example, primer_example_alternate
EX_NS = Namespace('ex', 'http://example.org/')
EX2_NS = Namespace('ex2', 'http://example2.org/')
EX_OTHER_NS = Namespace('other', 'http://exceptions.example.org/')
def add_label(record):
record.add_attributes(
[('prov:label', Literal("hello"))]
)
def add_labels(record):
record.add_attributes([
('prov:label', Literal("hello")),
('prov:label', Literal("bye", langtag="en")),
('prov:label', Literal("bonjour", langtag="fr"))
])
def add_types(record):
record.add_attributes([
('prov:type', 'a'),
('prov:type', 1),
('prov:type', 1.0),
('prov:type', True),
('prov:type', EX_NS['abc']),
('prov:type', datetime.datetime.now()),
('prov:type', Literal('http://boiled-egg.example.com',
datatype=XSD_ANYURI)),
])
def add_locations(record):
record.add_attributes([
('prov:Location', "Southampton"),
('prov:Location', 1),
('prov:Location', 1.0),
('prov:Location', True),
('prov:Location', EX_NS['london']),
('prov:Location', datetime.datetime.now()),
('prov:Location', EX_NS.uri + "london"),
('prov:Location', Literal(2002, datatype=XSD['gYear'])),
])
def add_value(record):
record.add_attributes([
('prov:value', EX_NS['avalue'])
])
def add_further_attributes(record):
record.add_attributes([
(EX_NS['tag1'], "hello"),
(EX_NS['tag2'], "bye"),
(EX2_NS['tag3'], "hi"),
(EX_NS['tag1'], "hello\nover\nmore\nlines"),
])
def add_further_attributes0(record):
record.add_attributes([
(EX_NS['tag1'], "hello"),
(EX_NS['tag2'], "bye"),
(EX_NS['tag2'], Literal("hola", langtag="es")),
(EX2_NS['tag3'], "hi"),
(EX_NS['tag'], 1),
# long on python 2, int on python 3
(EX_NS['tag'], six.integer_types[-1](1)),
(EX_NS['tag'], Literal(1, datatype=XSD_SHORT)),
(EX_NS['tag'], Literal(1, datatype=XSD_DOUBLE)),
(EX_NS['tag'], 1.0),
(EX_NS['tag'], True),
(EX_NS['tag'], EX_NS.uri + "southampton"),
])
add_further_attributes_with_qnames(record)
def add_further_attributes_with_qnames(record):
record.add_attributes([
(EX_NS['tag'], EX2_NS['newyork']),
(EX_NS['tag'], EX_NS['london']),
])
class TestExtras(unittest.TestCase):
def test_dot(self):
# This is naive, since we can't programatically check the output is
# correct
document = ProvDocument()
bundle1 = ProvBundle(identifier=EX_NS['bundle1'])
bundle1.usage(
activity=EX_NS['a1'], entity=EX_NS['e1'], identifier=EX_NS['use1']
)
bundle1.entity(
identifier=EX_NS['e1'], other_attributes={PROV_ROLE: "sausage"}
)
bundle1.activity(identifier=EX_NS['a1'])
document.activity(EX_NS['a2'])
bundle2 = ProvBundle(identifier=EX_NS['bundle2'])
bundle2.usage(
activity=EX_NS['aa1'], entity=EX_NS['ee1'],
identifier=EX_NS['use2']
)
bundle2.entity(identifier=EX_NS['ee1'])
bundle2.activity(identifier=EX_NS['aa1'])
document.add_bundle(bundle1)
document.add_bundle(bundle2)
prov_to_dot(document)
def test_extra_attributes(self):
document = ProvDocument()
inf = document.influence(
EX_NS['a2'], EX_NS['a1'], identifier=EX_NS['inf7']
)
add_labels(inf)
add_types(inf)
add_further_attributes(inf)
self.assertEqual(
len(inf.attributes),
len(list(inf.formal_attributes) + inf.extra_attributes)
)
def test_serialize_to_path(self):
document = ProvDocument()
document.serialize("output.json")
os.remove('output.json')
document.serialize("http://netloc/outputmyprov/submit.php")
def test_bundle_no_id(self):
document = ProvDocument()
def test():
bundle = ProvBundle()
document.add_bundle(bundle)
self.assertRaises(ProvException, test)
def test_use_set_time_helpers(self):
dt = datetime.datetime.now()
document1 = ProvDocument()
document1.activity(EX_NS['a8'], startTime=dt, endTime=dt)
document2 = ProvDocument()
a = document2.activity(EX_NS['a8'])
a.set_time(startTime=dt, endTime=dt)
self.assertEqual(document1, document2)
self.assertEqual(a.get_startTime(), dt)
self.assertEqual(a.get_endTime(), dt)
def test_bundle_add_garbage(self):
document = ProvDocument()
def test():
document.add_bundle(
document.entity(EX_NS['entity_trying_to_be_a_bundle'])
)
self.assertRaises(ProvException, test)
def test():
bundle = ProvBundle()
document.add_bundle(bundle)
self.assertRaises(ProvException, test)
def test_bundle_equality_garbage(self):
document = ProvBundle()
self.assertNotEqual(document, 1)
def test_bundle_is_bundle(self):
document = ProvBundle()
self.assertTrue(document.is_bundle())
def test_bundle_get_record_by_id(self):
document = ProvDocument()
self.assertEqual(document.get_record(None), None)
# record = document.entity(identifier=EX_NS['e1'])
# self.assertEqual(document.get_record(EX_NS['e1']), record)
#
# bundle = document.bundle(EX_NS['b'])
# self.assertEqual(bundle.get_record(EX_NS['e1']), record)
def test_bundle_get_records(self):
document = ProvDocument()
document.entity(identifier=EX_NS['e1'])
document.agent(identifier=EX_NS['e1'])
self.assertEqual(len(list(document.get_records(ProvAgent))), 1)
self.assertEqual(len(document.get_records()), 2)
def test_bundle_name_clash(self):
document = ProvDocument()
def test():
document.bundle(EX_NS['indistinct'])
document.bundle(EX_NS['indistinct'])
self.assertRaises(ProvException, test)
document = ProvDocument()
def test():
document.bundle(EX_NS['indistinct'])
bundle = ProvBundle(identifier=EX_NS['indistinct'])
document.add_bundle(bundle)
self.assertRaises(ProvException, test)
def test_document_helper_methods(self):
document = ProvDocument()
self.assertFalse(document.is_bundle())
self.assertFalse(document.has_bundles())
document.bundle(EX_NS['b'])
self.assertTrue(document.has_bundles())
self.assertEqual(u'', str(document))
def test_reading_and_writing_to_file_like_objects(self):
"""
Tests reading and writing to and from file like objects.
"""
# Create some random document.
document = ProvDocument()
document.entity(EX2_NS["test"])
objects = [io.BytesIO, io.StringIO]
Registry.load_serializers()
formats = Registry.serializers.keys()
for obj in objects:
for format in formats:
try:
buf = obj()
document.serialize(destination=buf, format=format)
buf.seek(0, 0)
new_document = ProvDocument.deserialize(source=buf,
format=format)
self.assertEqual(document, new_document)
except NotImplementedError:
# Some serializers might not implement serialize or
# deserialize method
pass # and this is fine in the context of this test
finally:
buf.close()
# def test_document_unification(self):
# # TODO: Improve testing of this...
# document = ProvDocument()
# bundle = document.bundle(identifier=EX_NS['b'])
# e1 = bundle.entity(EX_NS['e'])
# e2 = bundle.entity(EX_NS['e'])
# unified = document.unified()
#
# self.assertEqual(len(unified._bundles[0]._records), 1)
def test_primer_alternate(self):
g1 = primer_example()
g2 = primer_example_alternate()
self.assertEqual(g1, g2)
if __name__ == '__main__':
unittest.main()
prov-1.5.2/prov/tests/test_dot.py 0000644 0000765 0000000 00000002152 13236423634 016737 0 ustar tdh wheel 0000000 0000000 """
Created on Aug 13, 2015
@author: Trung Dong Huynh
"""
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import unittest
# Skipping SVG tests if pydot is not installed
from pkgutil import find_loader
if find_loader("pydot") is not None:
from prov.dot import prov_to_dot
from prov.tests.test_model import AllTestsBase
from prov.tests.utility import DocumentBaseTestCase
class SVGDotOutputTest(DocumentBaseTestCase, AllTestsBase):
"""
One-way output SVG with prov.dot to exercise its code
"""
MIN_SVG_SIZE = 850
def do_tests(self, prov_doc, msg=None):
dot = prov_to_dot(prov_doc)
svg_content = dot.create(format="svg")
# Very naive check of the returned SVG content as we have no way to check the graphical content
self.assertGreater(
len(svg_content), self.MIN_SVG_SIZE,
"The size of the generated SVG content should be greater than %d bytes" % self.MIN_SVG_SIZE
)
if __name__ == '__main__':
unittest.main()
prov-1.5.2/prov/tests/json/ 0000755 0000765 0000000 00000000000 13236426125 015507 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/json/attribution7.json 0000644 0000765 0000000 00000002030 13236423634 021032 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.504+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:agent": "ex:ag1",
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr37.json 0000644 0000765 0000000 00000003004 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et37": {
"prov:type": {
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication3.json 0000644 0000765 0000000 00000000246 13236423634 021336 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"ex:inf3": {
"prov:informant": "ex:a1",
"prov:informed": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr17.json 0000644 0000765 0000000 00000000274 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v17": {
"prov:value": {
"$": "-10",
"type": "xsd:nonPositiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr11.json 0000644 0000765 0000000 00000000314 13236423634 024206 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o11": {
"ex:tag2": {
"$": "10",
"type": "xsd:byte"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr40.json 0000644 0000765 0000000 00000000257 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v40": {
"prov:value": {
"$": "TOK",
"type": "xsd:token"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-usage1-M.json 0000644 0000765 0000000 00000000657 13236423634 021452 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.647+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr39.json 0000644 0000765 0000000 00000000300 13236423634 024702 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l39": {
"prov:location": {
"$": "normal",
"type": "xsd:normalizedString"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage2.json 0000644 0000765 0000000 00000000232 13236423634 017567 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use2": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr6.json 0000644 0000765 0000000 00000000316 13236423634 024134 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o6": {
"ex:tag2": {
"$": "2.0",
"type": "xsd:double"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start2.json 0000644 0000765 0000000 00000000245 13236423634 017624 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start2": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr21.json 0000644 0000765 0000000 00000000271 13236423634 023010 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et21": {
"prov:type": {
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation3.json 0000644 0000765 0000000 00000000257 13236423634 020637 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der3": {
"prov:generatedEntity": "ex:e2",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr15.json 0000644 0000765 0000000 00000000271 13236423634 024703 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l15": {
"prov:location": {
"$": "10",
"type": "xsd:unsignedShort"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr42.json 0000644 0000765 0000000 00000000262 13236423634 024703 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l42": {
"prov:location": {
"$": "name",
"type": "xsd:Name"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association6.json 0000644 0000765 0000000 00000000743 13236423634 021012 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc6": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:plan": "ex:plan1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start2-S.json 0000644 0000765 0000000 00000001036 13236423634 021502 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.623+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
}
} prov-1.5.2/prov/tests/json/bundle3.json 0000644 0000765 0000000 00000001675 13236423634 017751 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:bundle1": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
},
"ex:bundle2": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
},
"bundle": {
"ex:bundle1": {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"activity": {
"ex:a1": {}
}
},
"ex:bundle2": {
"entity": {
"ex:ee1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use2": {
"prov:activity": "ex:aa1",
"prov:entity": "ex:ee1"
}
},
"activity": {
"ex:aa1": {}
}
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr16.json 0000644 0000765 0000000 00000000404 13236423634 025033 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r16": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:nonNegativeInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr2.json 0000644 0000765 0000000 00000000333 13236423634 024122 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v2": {
"prov:value": {
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr41.json 0000644 0000765 0000000 00000000374 13236423634 025037 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r41": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "NMTOK",
"type": "xsd:NMTOKEN"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr36.json 0000644 0000765 0000000 00000000404 13236423634 025035 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r36": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "AAECIgUG",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr6.json 0000644 0000765 0000000 00000000262 13236423634 024623 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l6": {
"prov:location": {
"$": "2.0",
"type": "xsd:double"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association0.json 0000644 0000765 0000000 00000076360 13236423634 022046 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"assoc0": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:agent": "ag1",
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.585+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation5.json 0000644 0000765 0000000 00000000253 13236423634 020604 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"_:aOBO1": {
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr23.json 0000644 0000765 0000000 00000000341 13236423634 024700 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"en_l23": {
"prov:location": {
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr0.json 0000644 0000765 0000000 00000000374 13236423634 024752 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r0": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "un lieu",
"type": "xsd:string"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_usage0.json 0000644 0000765 0000000 00000110564 13236423634 020631 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"used": {
"_:u1": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:entity": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:42.433+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/generation2.json 0000644 0000765 0000000 00000000244 13236423634 020621 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen2": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr35.json 0000644 0000765 0000000 00000000277 13236423634 024713 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l35": {
"prov:location": {
"$": "000102220506",
"type": "xsd:hexBinary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_start0.json 0000644 0000765 0000000 00000110577 13236423634 020666 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"wasStartedBy": {
"_:wSB1": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:trigger": "e1",
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr20.json 0000644 0000765 0000000 00000000410 13236423634 025023 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r20": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "http://example.org",
"type": "xsd:anyURI"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-end2-M.json 0000644 0000765 0000000 00000001142 13236423634 021103 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.688+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/agent6.json 0000644 0000765 0000000 00000001323 13236423634 017567 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag6": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.345+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:label": "agent6"
}
}
} prov-1.5.2/prov/tests/json/influence3.json 0000644 0000765 0000000 00000000253 13236423634 020437 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf3": {
"prov:influencer": "ex:a1",
"prov:influencee": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr19.json 0000644 0000765 0000000 00000000270 13236423634 024706 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l19": {
"prov:location": {
"$": "10",
"type": "xsd:unsignedByte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation10.json 0000644 0000765 0000000 00000000412 13236423634 020706 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"_:wDF2": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:usage": "ex:u",
"prov:generation": "ex:g",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/scruffy-invalidation1-M.json 0000644 0000765 0000000 00000000673 13236423634 023025 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.755+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/mention1.json 0000644 0000765 0000000 00000000252 13236423634 020135 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"mentionOf": {
"_:mO1": {
"prov:generalEntity": "ex:e1",
"prov:specificEntity": "ex:e2"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr27.json 0000644 0000765 0000000 00000000353 13236423634 024220 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o27": {
"ex:tag2": {
"$": "2014-06-23T12:28:41.703+01:00",
"type": "xsd:dateTime"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr21.json 0000644 0000765 0000000 00000000274 13236423634 024207 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v21": {
"prov:value": {
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end2.json 0000644 0000765 0000000 00000000241 13236423634 017231 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end2": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity3.json 0000644 0000765 0000000 00000000316 13236423634 020323 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {
"prov:startTime": "2014-06-23T12:28:53.809+01:00",
"prov:endTime": "2014-06-23T12:28:53.809+01:00"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr17.json 0000644 0000765 0000000 00000000271 13236423634 023015 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et17": {
"prov:type": {
"$": "-10",
"type": "xsd:nonPositiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity0.json 0000644 0000765 0000000 00000001172 13236423634 020001 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e0": {
"ex:tag2": {
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
},
"prov:location": [
{
"$": "un llieu",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2",
"type": "xsd:long"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr37.json 0000644 0000765 0000000 00000003007 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v37": {
"prov:value": {
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr31.json 0000644 0000765 0000000 00000000326 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o31": {
"ex:tag2": {
"$": "--12-25",
"type": "xsd:gMonthDay"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr40.json 0000644 0000765 0000000 00000000254 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et40": {
"prov:type": {
"$": "TOK",
"type": "xsd:token"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr2.json 0000644 0000765 0000000 00000000330 13236423634 022723 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et2": {
"prov:type": {
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation2.json 0000644 0000765 0000000 00000000246 13236423634 021151 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv2": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity0.json 0000644 0000765 0000000 00000076374 13236423634 021053 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"e0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:value": {
"$": "10",
"type": "xsd:string"
},
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.435+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr3.json 0000644 0000765 0000000 00000000247 13236423634 022733 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et3": {
"prov:type": {
"$": "1",
"type": "xsd:int"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation3.json 0000644 0000765 0000000 00000000542 13236423634 021151 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv3": {
"prov:activity": "ex:a1",
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr41.json 0000644 0000765 0000000 00000000260 13236423634 023010 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et41": {
"prov:type": {
"$": "NMTOK",
"type": "xsd:NMTOKEN"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start4-M.json 0000644 0000765 0000000 00000001360 13236423634 021476 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e2": {},
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {},
"ex:a2s": {},
"ex:a1": {},
"ex:a1s": {}
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.639+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:starter": "ex:a1s"
},
{
"prov:activity": "ex:a2",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e2",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:starter": "ex:a2s"
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr16.json 0000644 0000765 0000000 00000000270 13236423634 023013 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et16": {
"prov:type": {
"$": "10",
"type": "xsd:nonNegativeInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity1.json 0000644 0000765 0000000 00000000130 13236423634 017773 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr36.json 0000644 0000765 0000000 00000000273 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v36": {
"prov:value": {
"$": "AAECIgUG",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr30.json 0000644 0000765 0000000 00000000317 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o30": {
"ex:tag2": {
"$": "---30",
"type": "xsd:gDay"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-generation1-S.json 0000644 0000765 0000000 00000000561 13236423634 022501 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.265+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr26.json 0000644 0000765 0000000 00000000402 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o26": {
"ex:tag2": {
"$": "zabcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example4.org/",
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr20.json 0000644 0000765 0000000 00000000277 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v20": {
"prov:value": {
"$": "http://example.org",
"type": "xsd:anyURI"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end3.json 0000644 0000765 0000000 00000000202 13236423634 017227 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end3": {
"prov:activity": "ex:a1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity2.json 0000644 0000765 0000000 00000000177 13236423634 020327 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {
"prov:label": "activity2"
}
}
} prov-1.5.2/prov/tests/json/agent7.json 0000644 0000765 0000000 00000002760 13236423634 017576 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.363+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "2014-06-23T12:28:54.364+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
}
],
"prov:label": [
"agent7",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/influence2.json 0000644 0000765 0000000 00000000211 13236423634 020430 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf2": {
"prov:influencer": "ex:a1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr18.json 0000644 0000765 0000000 00000000273 13236423634 024710 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l18": {
"prov:location": {
"$": "10",
"type": "xsd:positiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation11.json 0000644 0000765 0000000 00000000555 13236423634 020717 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:rev1": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:type": {
"$": "prov:Revision",
"type": "prov:QUALIFIED_NAME"
},
"prov:usage": "ex:u",
"prov:generation": "ex:g",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_attribution0.json 0000644 0000765 0000000 00000064135 13236423634 022073 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"assoc0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:agent": "ag1",
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:entity": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_delegation0.json 0000644 0000765 0000000 00000064177 13236423634 021650 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"actedOnBehalfOf": {
"del0": {
"prov:activity": "a3",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.836+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:delegate": "a1",
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.836+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.836+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:responsible": "a2",
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.836+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.836+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr21.json 0000644 0000765 0000000 00000000405 13236423634 025030 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r21": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr34.json 0000644 0000765 0000000 00000000374 13236423634 024710 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l34": {
"prov:location": {
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/generation3.json 0000644 0000765 0000000 00000000540 13236423634 020621 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen3": {
"prov:activity": "ex:a1",
"prov:role": [
{
"$": "somerole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation4.json 0000644 0000765 0000000 00000000312 13236423634 020577 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del4": {
"prov:activity": "ex:a",
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr22.json 0000644 0000765 0000000 00000000344 13236423634 024702 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l22": {
"prov:location": {
"$": "ex:abcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr1.json 0000644 0000765 0000000 00000000444 13236423634 024751 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r1": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr37.json 0000644 0000765 0000000 00000003120 13236423634 025034 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r37": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr7.json 0000644 0000765 0000000 00000000261 13236423634 024623 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l7": {
"prov:location": {
"$": "1.0",
"type": "xsd:float"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr40.json 0000644 0000765 0000000 00000000370 13236423634 025032 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r40": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "TOK",
"type": "xsd:token"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr3.json 0000644 0000765 0000000 00000000252 13236423634 024123 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v3": {
"prov:value": {
"$": "1",
"type": "xsd:int"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/bundle2.json 0000644 0000765 0000000 00000001671 13236423634 017744 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:bundle1": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
},
"ex:bundle2": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
},
"bundle": {
"ex:bundle1": {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"activity": {
"ex:a1": {}
}
},
"ex:bundle2": {
"entity": {
"ex:a1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use2": {
"prov:activity": "ex:e1",
"prov:entity": "ex:a1"
}
},
"activity": {
"ex:e1": {}
}
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr17.json 0000644 0000765 0000000 00000000405 13236423634 025035 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r17": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "-10",
"type": "xsd:nonPositiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association7.json 0000644 0000765 0000000 00000002074 13236423634 021012 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc7": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.781+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:agent": "ex:ag1",
"prov:plan": "ex:plan1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr43.json 0000644 0000765 0000000 00000000266 13236423634 024710 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l43": {
"prov:location": {
"$": "NCName",
"type": "xsd:NCName"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation2.json 0000644 0000765 0000000 00000000215 13236423634 020630 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der2": {
"prov:generatedEntity": "ex:e2"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr14.json 0000644 0000765 0000000 00000000263 13236423634 024703 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l14": {
"prov:location": {
"$": "10",
"type": "xsd:integer"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/specialization1.json 0000644 0000765 0000000 00000000261 13236423634 021502 0 ustar tdh wheel 0000000 0000000 {
"specializationOf": {
"_:sO1": {
"prov:generalEntity": "ex:e1",
"prov:specificEntity": "ex:e2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr20.json 0000644 0000765 0000000 00000000274 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et20": {
"prov:type": {
"$": "http://example.org",
"type": "xsd:anyURI"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start3.json 0000644 0000765 0000000 00000000206 13236423634 017622 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start3": {
"prov:activity": "ex:a1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr38.json 0000644 0000765 0000000 00000000264 13236423634 024712 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l38": {
"prov:location": {
"$": "en",
"type": "xsd:language"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage3.json 0000644 0000765 0000000 00000000526 13236423634 017576 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use3": {
"prov:activity": "ex:a1",
"prov:role": [
{
"$": "somerole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr7.json 0000644 0000765 0000000 00000000315 13236423634 024134 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o7": {
"ex:tag2": {
"$": "1.0",
"type": "xsd:float"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr41.json 0000644 0000765 0000000 00000000263 13236423634 024207 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v41": {
"prov:value": {
"$": "NMTOK",
"type": "xsd:NMTOKEN"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation8.json 0000644 0000765 0000000 00000002701 13236423634 020607 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"actedOnBehalfOf": {
"ex:del8": {
"prov:activity": "ex:a",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.328+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attribution6.json 0000644 0000765 0000000 00000000677 13236423634 021050 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr6": {
"prov:agent": "ex:ag1",
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr36.json 0000644 0000765 0000000 00000000270 13236423634 023015 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et36": {
"prov:type": {
"$": "AAECIgUG",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication2.json 0000644 0000765 0000000 00000000206 13236423634 021331 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"ex:inf2": {
"prov:informant": "ex:a1"
}
}
} prov-1.5.2/prov/tests/json/scruffy-end4-S.json 0000644 0000765 0000000 00000001132 13236423634 021112 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.695+01:00",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a1s",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a2",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e2",
"prov:ender": "ex:a2s",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr16.json 0000644 0000765 0000000 00000000273 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v16": {
"prov:value": {
"$": "10",
"type": "xsd:nonNegativeInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr10.json 0000644 0000765 0000000 00000000322 13236423634 024204 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o10": {
"ex:tag2": {
"$": "false",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr30.json 0000644 0000765 0000000 00000000371 13236423634 025032 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r30": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "---30",
"type": "xsd:gDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr0.json 0000644 0000765 0000000 00000000266 13236423634 024621 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l0": {
"prov:location": {
"$": "un lieu",
"type": "xsd:string"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity10.json 0000644 0000765 0000000 00000004031 13236423634 020057 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e10": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.037+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.037+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"entity10",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr6.json 0000644 0000765 0000000 00000000370 13236423634 024754 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r6": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "2.0",
"type": "xsd:double"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation3.json 0000644 0000765 0000000 00000000253 13236423634 020602 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del3": {
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr25.json 0000644 0000765 0000000 00000000351 13236423634 024703 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l25": {
"prov:location": {
"$": "other:zabcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start8.json 0000644 0000765 0000000 00000004475 13236423634 017643 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasStartedBy": {
"ex:start8": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.459+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.459+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.459+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:starter": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/generation4.json 0000644 0000765 0000000 00000000454 13236423634 020626 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen4": {
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.586+01:00",
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr33.json 0000644 0000765 0000000 00000000300 13236423634 024674 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l33": {
"prov:location": {
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr26.json 0000644 0000765 0000000 00000000454 13236423634 025041 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r26": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "zabcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/influence5.json 0000644 0000765 0000000 00000000706 13236423634 020444 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf5": {
"prov:influencer": "ex:a1",
"prov:influencee": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation9.json 0000644 0000765 0000000 00000001345 13236423634 020644 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"_:wDF1": {
"prov:generatedEntity": "ex:e2",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.753+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
]
}
}
} prov-1.5.2/prov/tests/json/end4.json 0000644 0000765 0000000 00000000236 13236423634 017237 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end4": {
"prov:trigger": "ex:e1",
"prov:ender": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr21.json 0000644 0000765 0000000 00000000333 13236423634 024210 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o21": {
"ex:tag2": {
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr27.json 0000644 0000765 0000000 00000000314 13236423634 024210 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v27": {
"prov:value": {
"$": "2014-06-23T12:28:41.879+01:00",
"type": "xsd:dateTime"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity5.json 0000644 0000765 0000000 00000001330 13236423634 020322 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.843+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:label": "activity2"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr31.json 0000644 0000765 0000000 00000000267 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v31": {
"prov:value": {
"$": "--12-25",
"type": "xsd:gMonthDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr37.json 0000644 0000765 0000000 00000003046 13236423634 024223 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o37": {
"ex:tag2": {
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr11.json 0000644 0000765 0000000 00000000252 13236423634 023006 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et11": {
"prov:type": {
"$": "10",
"type": "xsd:byte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr8.json 0000644 0000765 0000000 00000000257 13236423634 024135 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v8": {
"prov:value": {
"$": "10",
"type": "xsd:decimal"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity6.json 0000644 0000765 0000000 00000001454 13236423634 020012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e6": {
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.493+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": "entity6"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-end4-M.json 0000644 0000765 0000000 00000001350 13236423634 021106 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.695+01:00",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a1s",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a2",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e2",
"prov:ender": "ex:a2s",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"entity": {
"ex:e2": {},
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {},
"ex:a2s": {},
"ex:a1": {},
"ex:a1s": {}
}
} prov-1.5.2/prov/tests/json/attr_invalidation0.json 0000644 0000765 0000000 00000110602 13236423634 022177 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"wasInvalidatedBy": {
"_:wIB1": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:entity": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.899+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_generation0.json 0000644 0000765 0000000 00000110600 13236423634 021647 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"_:wGB1": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:entity": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.859+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation4.json 0000644 0000765 0000000 00000000456 13236423634 021156 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv4": {
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.231+01:00",
"prov:role": {
"$": "someRole",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr4.json 0000644 0000765 0000000 00000000250 13236423634 022726 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et4": {
"prov:type": {
"$": "1",
"type": "xsd:long"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start4-S.json 0000644 0000765 0000000 00000001142 13236423634 021502 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.639+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:starter": "ex:a1s"
},
{
"prov:activity": "ex:a2",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e2",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:starter": "ex:a2s"
}
]
}
} prov-1.5.2/prov/tests/json/attribution1.json 0000644 0000765 0000000 00000000206 13236423634 021027 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr1": {
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr11.json 0000644 0000765 0000000 00000000255 13236423634 024205 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v11": {
"prov:value": {
"$": "10",
"type": "xsd:byte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr17.json 0000644 0000765 0000000 00000000333 13236423634 024215 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o17": {
"ex:tag2": {
"$": "-10",
"type": "xsd:nonPositiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr31.json 0000644 0000765 0000000 00000000264 13236423634 023013 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et31": {
"prov:type": {
"$": "--12-25",
"type": "xsd:gMonthDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication5.json 0000644 0000765 0000000 00000000701 13236423634 021334 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"ex:inf5": {
"prov:informant": "ex:a1",
"prov:informed": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr29.json 0000644 0000765 0000000 00000000264 13236423634 024712 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l29": {
"prov:location": {
"$": "--01",
"type": "xsd:gMonth"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr40.json 0000644 0000765 0000000 00000000316 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o40": {
"ex:tag2": {
"$": "TOK",
"type": "xsd:token"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage4.json 0000644 0000765 0000000 00000000442 13236423634 017574 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use4": {
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.503+01:00",
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr0.json 0000644 0000765 0000000 00000000322 13236423634 024123 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o0": {
"ex:tag2": {
"$": "un lieu",
"type": "xsd:string"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start4.json 0000644 0000765 0000000 00000000244 13236423634 017625 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start4": {
"prov:trigger": "ex:e1",
"prov:starter": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/scruffy-generation1-M.json 0000644 0000765 0000000 00000000671 13236423634 022475 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"wasGeneratedBy": {
"ex:gen1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.265+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr27.json 0000644 0000765 0000000 00000000311 13236423634 023011 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et27": {
"prov:type": {
"$": "2014-06-23T12:28:41.760+01:00",
"type": "xsd:dateTime"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr13.json 0000644 0000765 0000000 00000000270 13236423634 024700 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l13": {
"prov:location": {
"$": "10",
"type": "xsd:unsignedLong"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation5.json 0000644 0000765 0000000 00000000316 13236423634 020635 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der5": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr44.json 0000644 0000765 0000000 00000000551 13236423634 024706 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l44": {
"prov:location": {
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
}
},
"prefix": {
"ex": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
}
} prov-1.5.2/prov/tests/json/end8.json 0000644 0000765 0000000 00000004467 13236423634 017255 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end8": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.225+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:53.225+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"prov:ender": "ex:a2",
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.225+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/activity9.json 0000644 0000765 0000000 00000004033 13236423634 020331 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"activity": {
"ex:a9": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.932+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.932+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"activity9",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr10.json 0000644 0000765 0000000 00000000374 13236423634 025033 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r10": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "false",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr4.json 0000644 0000765 0000000 00000000253 13236423634 024125 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v4": {
"prov:value": {
"$": "1",
"type": "xsd:long"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr8.json 0000644 0000765 0000000 00000000254 13236423634 022736 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et8": {
"prov:type": {
"$": "10",
"type": "xsd:decimal"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/member1.json 0000644 0000765 0000000 00000000260 13236423634 017732 0 ustar tdh wheel 0000000 0000000 {
"hadMember": {
"_:hM1": {
"prov:collection": "ex:c",
"prov:entity": [
"ex:e1"
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr5.json 0000644 0000765 0000000 00000000254 13236423634 024127 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v5": {
"prov:value": {
"$": "1",
"type": "xsd:short"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr11.json 0000644 0000765 0000000 00000000366 13236423634 025035 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r11": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:byte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/bundle4.json 0000644 0000765 0000000 00000001740 13236423634 017743 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"foo:bundle1": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
},
"ex:bundle2": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://another.org/",
"foo": "http://example.org/"
},
"bundle": {
"ex:bundle1": {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"activity": {
"ex:a1": {}
}
},
"ex:bundle2": {
"entity": {
"ex:ee1": {}
},
"prefix": {
"ex": "http://another.org/"
},
"used": {
"ex:use2": {
"prov:activity": "ex:aa1",
"prov:entity": "ex:ee1"
}
},
"activity": {
"ex:aa1": {}
}
}
}
} prov-1.5.2/prov/tests/json/association1.json 0000644 0000765 0000000 00000000213 13236423634 020775 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc1": {
"prov:activity": "ex:a1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end9.json 0000644 0000765 0000000 00000000240 13236423634 017237 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"_:wEB4": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity8.json 0000644 0000765 0000000 00000006321 13236423634 020332 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a8": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.895+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
},
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.895+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:startTime": "2014-06-23T12:28:53.895+01:00",
"prov:endTime": "2014-06-23T12:28:53.895+01:00",
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.895+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
},
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.895+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"activity8",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
},
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/scruffy-end2-S.json 0000644 0000765 0000000 00000001032 13236423634 021107 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.688+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr12.json 0000644 0000765 0000000 00000000267 13236423634 024705 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l12": {
"prov:location": {
"$": "10",
"type": "xsd:unsignedInt"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation4.json 0000644 0000765 0000000 00000000314 13236423634 020632 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der4": {
"prov:generatedEntity": "ex:e2",
"prov:usedEntity": "ex:e1",
"prov:label": "hello"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr26.json 0000644 0000765 0000000 00000000340 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et26": {
"prov:type": {
"$": "zabcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start5.json 0000644 0000765 0000000 00000000304 13236423634 017623 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start5": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1",
"prov:starter": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/usage5.json 0000644 0000765 0000000 00000004312 13236423634 017575 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"used": {
"ex:use5": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.510+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.510+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.511+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/scruffy-invalidation1-S.json 0000644 0000765 0000000 00000000563 13236423634 023031 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.755+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr1.json 0000644 0000765 0000000 00000000372 13236423634 024131 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o1": {
"ex:tag2": {
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_derivation0.json 0000644 0000765 0000000 00000064147 13236423634 021676 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"wasDerivedFrom": {
"der0": {
"prov:generatedEntity": "e2",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.860+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.860+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.860+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.860+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:usedEntity": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.860+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_communication0.json 0000644 0000765 0000000 00000064136 13236423634 022375 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"wasInformedBy": {
"com0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.897+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:informant": "a2",
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.897+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.897+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.897+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:informed": "a1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.897+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr41.json 0000644 0000765 0000000 00000000322 13236423634 024210 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o41": {
"ex:tag2": {
"$": "NMTOK",
"type": "xsd:NMTOKEN"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr28.json 0000644 0000765 0000000 00000000263 13236423634 024710 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l28": {
"prov:location": {
"$": "2013",
"type": "xsd:gYear"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr10.json 0000644 0000765 0000000 00000000263 13236423634 024203 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v10": {
"prov:value": {
"$": "false",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr16.json 0000644 0000765 0000000 00000000332 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o16": {
"ex:tag2": {
"$": "10",
"type": "xsd:nonNegativeInteger"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr30.json 0000644 0000765 0000000 00000000255 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et30": {
"prov:type": {
"$": "---30",
"type": "xsd:gDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication4.json 0000644 0000765 0000000 00000000246 13236423634 021337 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"_:Infm1": {
"prov:informant": "ex:a1",
"prov:informed": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/invalidation5.json 0000644 0000765 0000000 00000004326 13236423634 021157 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasInvalidatedBy": {
"ex:inv4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.241+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.241+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "someRole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.241+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_activity0.json 0000644 0000765 0000000 00000076257 13236423634 021373 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"activity": {
"a0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.861+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr5.json 0000644 0000765 0000000 00000000251 13236423634 022730 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et5": {
"prov:type": {
"$": "1",
"type": "xsd:short"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-usage1-S.json 0000644 0000765 0000000 00000000547 13236423634 021456 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.647+01:00",
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:entity": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr30.json 0000644 0000765 0000000 00000000260 13236423634 024202 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v30": {
"prov:value": {
"$": "---30",
"type": "xsd:gDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr36.json 0000644 0000765 0000000 00000000332 13236423634 024215 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o36": {
"ex:tag2": {
"$": "AAECIgUG",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr10.json 0000644 0000765 0000000 00000000260 13236423634 023004 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et10": {
"prov:type": {
"$": "false",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr9.json 0000644 0000765 0000000 00000000261 13236423634 024131 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v9": {
"prov:value": {
"$": "true",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity7.json 0000644 0000765 0000000 00000003224 13236423634 020010 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.511+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.511+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"entity7",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end5.json 0000644 0000765 0000000 00000000276 13236423634 017244 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end5": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr20.json 0000644 0000765 0000000 00000000336 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o20": {
"ex:tag2": {
"$": "http://example.org",
"type": "xsd:anyURI"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr26.json 0000644 0000765 0000000 00000000343 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v26": {
"prov:value": {
"$": "zabcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity4.json 0000644 0000765 0000000 00000000616 13236423634 020327 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {
"prov:label": [
"activity2",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/influence4.json 0000644 0000765 0000000 00000000253 13236423634 020440 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"_:Infl1": {
"prov:influencer": "ex:a1",
"prov:influencee": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/agent1.json 0000644 0000765 0000000 00000000130 13236423634 017555 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag1": {}
}
} prov-1.5.2/prov/tests/json/derivation8.json 0000644 0000765 0000000 00000002250 13236423634 020637 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasDerivedFrom": {
"ex:der8": {
"prov:generatedEntity": "ex:e2",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.729+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:usedEntity": "ex:e1",
"prov:label": "hello"
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr27.json 0000644 0000765 0000000 00000000425 13236423634 025040 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r27": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "2014-06-23T12:28:41.530+01:00",
"type": "xsd:dateTime"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start2-M.json 0000644 0000765 0000000 00000001146 13236423634 021476 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.623+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr32.json 0000644 0000765 0000000 00000000305 13236423634 024700 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l32": {
"prov:location": {
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start9.json 0000644 0000765 0000000 00000000242 13236423634 017630 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"_:wSB3": {
"prov:activity": "ex:a1",
"prov:trigger": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/generation5.json 0000644 0000765 0000000 00000004324 13236423634 020627 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.598+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:53.598+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.598+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr7.json 0000644 0000765 0000000 00000000367 13236423634 024763 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r7": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "1.0",
"type": "xsd:float"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation2.json 0000644 0000765 0000000 00000000213 13236423634 020575 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del2": {
"prov:responsible": "ex:ag1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr24.json 0000644 0000765 0000000 00000000350 13236423634 024701 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l24": {
"prov:location": {
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"pre_0": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end10.json 0000644 0000765 0000000 00000004466 13236423634 017325 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"_:wEB3": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.067+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:53.067+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"prov:ender": "ex:a2",
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.067+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr31.json 0000644 0000765 0000000 00000000400 13236423634 025024 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r31": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "--12-25",
"type": "xsd:gMonthDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr1.json 0000644 0000765 0000000 00000000336 13236423634 024620 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l1": {
"prov:location": {
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr6.json 0000644 0000765 0000000 00000000254 13236423634 022734 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et6": {
"prov:type": {
"$": "2.0",
"type": "xsd:double"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation6.json 0000644 0000765 0000000 00000000245 13236423634 021154 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"_:wIB3": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr44.json 0000644 0000765 0000000 00000000543 13236423634 023017 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et44": {
"prov:type": {
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
}
},
"prefix": {
"ex": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
}
} prov-1.5.2/prov/tests/json/attr_end0.json 0000644 0000765 0000000 00000110575 13236423634 020275 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"_:wEB1": {
"prov:activity": "a1",
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:trigger": "e1",
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:role": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.822+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr13.json 0000644 0000765 0000000 00000000262 13236423634 023011 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et13": {
"prov:type": {
"$": "10",
"type": "xsd:unsignedLong"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity4.json 0000644 0000765 0000000 00000000612 13236423634 020003 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e4": {
"prov:label": [
"entity4",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr33.json 0000644 0000765 0000000 00000000275 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v33": {
"prov:value": {
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr35.json 0000644 0000765 0000000 00000000333 13236423634 024215 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o35": {
"ex:tag2": {
"$": "000102220506",
"type": "xsd:hexBinary"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/activity7.json 0000644 0000765 0000000 00000003230 13236423634 020325 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.872+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.872+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"activity7",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr23.json 0000644 0000765 0000000 00000000372 13236423634 024215 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"en_o23": {
"tag2": {
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example.org/",
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr25.json 0000644 0000765 0000000 00000000346 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v25": {
"prov:value": {
"$": "other:zabcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end6.json 0000644 0000765 0000000 00000000237 13236423634 017242 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end6": {
"prov:activity": "ex:a1",
"prov:ender": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/agent2.json 0000644 0000765 0000000 00000000172 13236423634 017564 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag2": {
"prov:label": "agent2"
}
}
} prov-1.5.2/prov/tests/json/influence7.json 0000644 0000765 0000000 00000002642 13236423634 020447 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.188+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:influencer": "ex:a1",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:influencee": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr24.json 0000644 0000765 0000000 00000000456 13236423634 025041 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r24": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"pre_0": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr29.json 0000644 0000765 0000000 00000000256 13236423634 023023 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et29": {
"prov:type": {
"$": "--01",
"type": "xsd:gMonth"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-generation2-S.json 0000644 0000765 0000000 00000001064 13236423634 022501 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.268+01:00",
"ex:tag2": {
"$": "hello-scruff-gen2",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi-scruff-gen2",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr31.json 0000644 0000765 0000000 00000000272 13236423634 024702 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l31": {
"prov:location": {
"$": "--12-25",
"type": "xsd:gMonthDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/generation6.json 0000644 0000765 0000000 00000000243 13236423634 020624 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"_:wGB3": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr27.json 0000644 0000765 0000000 00000000317 13236423634 024707 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l27": {
"prov:location": {
"$": "2014-06-23T12:28:41.801+01:00",
"type": "xsd:dateTime"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation1.json 0000644 0000765 0000000 00000000207 13236423634 020577 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del1": {
"prov:delegate": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/scruffy-end3-M.json 0000644 0000765 0000000 00000001305 13236423634 021105 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.691+01:00",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a1s",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a2s",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {},
"ex:a2s": {},
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr4.json 0000644 0000765 0000000 00000000364 13236423634 024755 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r4": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "1",
"type": "xsd:long"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr32.json 0000644 0000765 0000000 00000000413 13236423634 025031 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r32": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr2.json 0000644 0000765 0000000 00000000336 13236423634 024621 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l2": {
"prov:location": {
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr19.json 0000644 0000765 0000000 00000000324 13236423634 024217 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o19": {
"ex:tag2": {
"$": "10",
"type": "xsd:unsignedByte"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start3-S.json 0000644 0000765 0000000 00000001142 13236423634 021501 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.634+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:starter": "ex:a1s"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:starter": "ex:a2s"
}
]
}
} prov-1.5.2/prov/tests/json/member2.json 0000644 0000765 0000000 00000000301 13236423634 017727 0 ustar tdh wheel 0000000 0000000 {
"hadMember": {
"_:hM2": {
"prov:collection": "ex:c",
"prov:entity": [
"ex:e1",
"ex:e2"
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr39.json 0000644 0000765 0000000 00000000334 13236423634 024222 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o39": {
"ex:tag2": {
"$": "normal",
"type": "xsd:normalizedString"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity8.json 0000644 0000765 0000000 00000006135 13236423634 020015 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e8": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.534+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
},
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.534+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.535+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
},
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.535+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"entity8",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
},
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr6.json 0000644 0000765 0000000 00000000257 13236423634 024133 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v6": {
"prov:value": {
"$": "2.0",
"type": "xsd:double"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr12.json 0000644 0000765 0000000 00000000375 13236423634 025036 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r12": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:unsignedInt"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association2.json 0000644 0000765 0000000 00000000211 13236423634 020774 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc2": {
"prov:agent": "ex:ag1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr29.json 0000644 0000765 0000000 00000000261 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v29": {
"prov:value": {
"$": "--01",
"type": "xsd:gMonth"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_agent0.json 0000644 0000765 0000000 00000076255 13236423634 020633 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
},
"agent": {
"ag0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:location": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.900+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
}
} prov-1.5.2/prov/tests/json/derivation7.json 0000644 0000765 0000000 00000000413 13236423634 020635 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der7": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:usage": "ex:u",
"prov:generation": "ex:g",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr11.json 0000644 0000765 0000000 00000000260 13236423634 024675 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l11": {
"prov:location": {
"$": "10",
"type": "xsd:byte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr25.json 0000644 0000765 0000000 00000000343 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et25": {
"prov:type": {
"$": "other:zabcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr28.json 0000644 0000765 0000000 00000000371 13236423634 025041 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r28": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "2013",
"type": "xsd:gYear"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/start6.json 0000644 0000765 0000000 00000000245 13236423634 017630 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start6": {
"prov:activity": "ex:a1",
"prov:starter": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr2.json 0000644 0000765 0000000 00000000372 13236423634 024132 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o2": {
"ex:tag2": {
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage6.json 0000644 0000765 0000000 00000000227 13236423634 017577 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"_:u3": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr42.json 0000644 0000765 0000000 00000000316 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o42": {
"ex:tag2": {
"$": "name",
"type": "xsd:Name"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr44.json 0000644 0000765 0000000 00000000546 13236423634 024216 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v44": {
"prov:value": {
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
}
},
"prefix": {
"ex": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr8.json 0000644 0000765 0000000 00000000370 13236423634 024756 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r8": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:decimal"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr33.json 0000644 0000765 0000000 00000000272 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et33": {
"prov:type": {
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication7.json 0000644 0000765 0000000 00000002635 13236423634 021346 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasInformedBy": {
"ex:inf7": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.117+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:informant": "ex:a1",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:informed": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr13.json 0000644 0000765 0000000 00000000265 13236423634 024210 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v13": {
"prov:value": {
"$": "10",
"type": "xsd:unsignedLong"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr15.json 0000644 0000765 0000000 00000000325 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o15": {
"ex:tag2": {
"$": "10",
"type": "xsd:unsignedShort"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attribution3.json 0000644 0000765 0000000 00000000244 13236423634 021033 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr3": {
"prov:agent": "ex:ag1",
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr32.json 0000644 0000765 0000000 00000000277 13236423634 023020 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et32": {
"prov:type": {
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication6.json 0000644 0000765 0000000 00000002032 13236423634 021334 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"ex:inf6": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.102+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:informant": "ex:a1",
"prov:informed": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr12.json 0000644 0000765 0000000 00000000264 13236423634 024206 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v12": {
"prov:value": {
"$": "10",
"type": "xsd:unsignedInt"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr14.json 0000644 0000765 0000000 00000000317 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o14": {
"ex:tag2": {
"$": "10",
"type": "xsd:integer"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attribution2.json 0000644 0000765 0000000 00000000206 13236423634 021030 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr2": {
"prov:agent": "ex:ag1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr9.json 0000644 0000765 0000000 00000000372 13236423634 024761 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r9": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "true",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr43.json 0000644 0000765 0000000 00000000322 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o43": {
"ex:tag2": {
"$": "NCName",
"type": "xsd:NCName"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr3.json 0000644 0000765 0000000 00000000311 13236423634 024124 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o3": {
"ex:tag2": {
"$": "1",
"type": "xsd:int"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage7.json 0000644 0000765 0000000 00000004307 13236423634 017603 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"used": {
"_:u4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.541+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.541+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.541+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/start7.json 0000644 0000765 0000000 00000000331 13236423634 017625 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start7": {
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.453+01:00",
"prov:starter": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr29.json 0000644 0000765 0000000 00000000372 13236423634 025043 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r29": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "--01",
"type": "xsd:gMonth"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start1-S.json 0000644 0000765 0000000 00000000563 13236423634 021505 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.610+01:00",
"prov:trigger": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr24.json 0000644 0000765 0000000 00000000342 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et24": {
"prov:type": {
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"pre_0": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation6.json 0000644 0000765 0000000 00000000352 13236423634 020636 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der6": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:usage": "ex:u",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr10.json 0000644 0000765 0000000 00000000266 13236423634 024702 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l10": {
"prov:location": {
"$": "false",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr28.json 0000644 0000765 0000000 00000000260 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v28": {
"prov:value": {
"$": "2013",
"type": "xsd:gYear"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association3.json 0000644 0000765 0000000 00000000251 13236423634 021001 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc3": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr13.json 0000644 0000765 0000000 00000000376 13236423634 025040 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r13": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:unsignedLong"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr38.json 0000644 0000765 0000000 00000000320 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o38": {
"ex:tag2": {
"$": "en",
"type": "xsd:language"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity9.json 0000644 0000765 0000000 00000004027 13236423634 020014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e9": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.567+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.568+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": [
"entity9",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr7.json 0000644 0000765 0000000 00000000256 13236423634 024133 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v7": {
"prov:value": {
"$": "1.0",
"type": "xsd:float"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-usage2-M.json 0000644 0000765 0000000 00000001132 13236423634 021440 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.654+01:00",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr44.json 0000644 0000765 0000000 00000000657 13236423634 025046 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r44": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
}
},
"prefix": {
"ex": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
}
} prov-1.5.2/prov/tests/json/member3.json 0000644 0000765 0000000 00000000322 13236423634 017733 0 ustar tdh wheel 0000000 0000000 {
"hadMember": {
"_:hM3": {
"prov:collection": "ex:c",
"prov:entity": [
"ex:e1",
"ex:e2",
"ex:e3"
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr18.json 0000644 0000765 0000000 00000000327 13236423634 024221 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o18": {
"ex:tag2": {
"$": "10",
"type": "xsd:positiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr33.json 0000644 0000765 0000000 00000000406 13236423634 025034 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r33": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr3.json 0000644 0000765 0000000 00000000255 13236423634 024622 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l3": {
"prov:location": {
"$": "1",
"type": "xsd:int"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr26.json 0000644 0000765 0000000 00000000346 13236423634 024710 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l26": {
"prov:location": {
"$": "zabcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr5.json 0000644 0000765 0000000 00000000365 13236423634 024757 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r5": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "1",
"type": "xsd:short"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-invalidation2-M.json 0000644 0000765 0000000 00000001146 13236423634 023022 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.758+01:00",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/generation7.json 0000644 0000765 0000000 00000004323 13236423634 020630 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"_:wGB4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.652+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:53.652+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "somerole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.652+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr30.json 0000644 0000765 0000000 00000000263 13236423634 024701 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l30": {
"prov:location": {
"$": "---30",
"type": "xsd:gDay"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr28.json 0000644 0000765 0000000 00000000255 13236423634 023021 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et28": {
"prov:type": {
"$": "2013",
"type": "xsd:gYear"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr25.json 0000644 0000765 0000000 00000000457 13236423634 025043 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r25": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "other:zabcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/agent3.json 0000644 0000765 0000000 00000000235 13236423634 017565 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag2": {
"prov:label": [
"agent2",
"hello"
]
}
}
} prov-1.5.2/prov/tests/json/influence6.json 0000644 0000765 0000000 00000002037 13236423634 020444 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf6": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.169+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:influencer": "ex:a1",
"prov:influencee": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-end1-M.json 0000644 0000765 0000000 00000000667 13236423634 021115 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.685+01:00",
"prov:trigger": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1"
}
]
},
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/activity6.json 0000644 0000765 0000000 00000001460 13236423634 020327 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a6": {
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.858+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:label": "activity6"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr22.json 0000644 0000765 0000000 00000000400 13236423634 024204 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o22": {
"ex:tag2": {
"$": "ex:abcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example.org/",
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr24.json 0000644 0000765 0000000 00000000345 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v24": {
"prov:value": {
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"pre_0": "http://example4.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/end7.json 0000644 0000765 0000000 00000000323 13236423634 017237 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end7": {
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.216+01:00",
"prov:ender": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr12.json 0000644 0000765 0000000 00000000261 13236423634 023007 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et12": {
"prov:type": {
"$": "10",
"type": "xsd:unsignedInt"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity5.json 0000644 0000765 0000000 00000001324 13236423634 020005 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e5": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:52.479+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:label": "entity5"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr32.json 0000644 0000765 0000000 00000000302 13236423634 024201 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v32": {
"prov:value": {
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr34.json 0000644 0000765 0000000 00000000430 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o34": {
"ex:tag2": {
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr7.json 0000644 0000765 0000000 00000000253 13236423634 022734 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et7": {
"prov:type": {
"$": "1.0",
"type": "xsd:float"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation7.json 0000644 0000765 0000000 00000004325 13236423634 021160 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasInvalidatedBy": {
"_:wIB4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.274+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.273+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": {
"$": "someRole",
"type": "xsd:string"
},
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.274+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr43.json 0000644 0000765 0000000 00000000374 13236423634 025041 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r43": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "NCName",
"type": "xsd:NCName"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr0.json 0000644 0000765 0000000 00000000263 13236423634 024122 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v0": {
"prov:value": {
"$": "un lieu",
"type": "xsd:string"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr19.json 0000644 0000765 0000000 00000000262 13236423634 023017 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et19": {
"prov:type": {
"$": "10",
"type": "xsd:unsignedByte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr39.json 0000644 0000765 0000000 00000000275 13236423634 024221 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v39": {
"prov:value": {
"$": "normal",
"type": "xsd:normalizedString"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/bundle1.json 0000644 0000765 0000000 00000001675 13236423634 017747 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:bundle1": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
},
"ex:bundle2": {
"prov:type": {
"$": "prov:Bundle",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
},
"bundle": {
"ex:bundle1": {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": {
"prov:activity": "ex:a1",
"prov:entity": "ex:e1"
}
},
"activity": {
"ex:a1": {}
}
},
"ex:bundle2": {
"entity": {
"ex:ee1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use2": {
"prov:activity": "ex:aa1",
"prov:entity": "ex:ee1"
}
},
"activity": {
"ex:aa1": {}
}
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr14.json 0000644 0000765 0000000 00000000371 13236423634 025034 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r14": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:integer"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association4.json 0000644 0000765 0000000 00000000310 13236423634 020776 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc4": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:plan": "ex:plan1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr29.json 0000644 0000765 0000000 00000000320 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o29": {
"ex:tag2": {
"$": "--01",
"type": "xsd:gMonth"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr40.json 0000644 0000765 0000000 00000000262 13236423634 024701 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l40": {
"prov:location": {
"$": "TOK",
"type": "xsd:token"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-invalidation2-S.json 0000644 0000765 0000000 00000001036 13236423634 023026 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.758+01:00",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr17.json 0000644 0000765 0000000 00000000277 13236423634 024713 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l17": {
"prov:location": {
"$": "-10",
"type": "xsd:nonPositiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation1.json 0000644 0000765 0000000 00000000210 13236423634 020622 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:der1": {
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/agent8.json 0000644 0000765 0000000 00000002760 13236423634 017577 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag8": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.384+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
},
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.384+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:location": [
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
}
],
"prov:label": "agent8"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr23.json 0000644 0000765 0000000 00000000333 13236423634 023011 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"et23": {
"prov:type": {
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-end1-S.json 0000644 0000765 0000000 00000000557 13236423634 021121 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.685+01:00",
"prov:trigger": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1"
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr4.json 0000644 0000765 0000000 00000000312 13236423634 024126 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o4": {
"ex:tag2": {
"$": "1",
"type": "xsd:long"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr44.json 0000644 0000765 0000000 00000000605 13236423634 024217 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o44": {
"ex:tag2": {
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
}
},
"prefix": {
"ex": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr42.json 0000644 0000765 0000000 00000000257 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v42": {
"prov:value": {
"$": "name",
"type": "xsd:Name"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr15.json 0000644 0000765 0000000 00000000266 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v15": {
"prov:value": {
"$": "10",
"type": "xsd:unsignedShort"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr13.json 0000644 0000765 0000000 00000000324 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o13": {
"ex:tag2": {
"$": "10",
"type": "xsd:unsignedLong"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr35.json 0000644 0000765 0000000 00000000271 13236423634 023015 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et35": {
"prov:type": {
"$": "000102220506",
"type": "xsd:hexBinary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/communication1.json 0000644 0000765 0000000 00000000205 13236423634 021327 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInformedBy": {
"ex:inf1": {
"prov:informed": "ex:a2"
}
}
} prov-1.5.2/prov/tests/json/attribution5.json 0000644 0000765 0000000 00000000242 13236423634 021033 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"_:wAT1": {
"prov:agent": "ex:ag1",
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr8.json 0000644 0000765 0000000 00000000262 13236423634 024625 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l8": {
"prov:location": {
"$": "10",
"type": "xsd:decimal"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr38.json 0000644 0000765 0000000 00000000372 13236423634 025043 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r38": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "en",
"type": "xsd:language"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr0.json 0000644 0000765 0000000 00000000260 13236423634 022723 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et0": {
"prov:type": {
"$": "un lieu",
"type": "xsd:string"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr42.json 0000644 0000765 0000000 00000000254 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et42": {
"prov:type": {
"$": "name",
"type": "xsd:Name"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr18.json 0000644 0000765 0000000 00000000401 13236423634 025032 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r18": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:positiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr35.json 0000644 0000765 0000000 00000000274 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v35": {
"prov:value": {
"$": "000102220506",
"type": "xsd:hexBinary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr33.json 0000644 0000765 0000000 00000000334 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o33": {
"ex:tag2": {
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr15.json 0000644 0000765 0000000 00000000263 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et15": {
"prov:type": {
"$": "10",
"type": "xsd:unsignedShort"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity2.json 0000644 0000765 0000000 00000000173 13236423634 020003 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e2": {
"prov:label": "entity2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start1-M.json 0000644 0000765 0000000 00000000673 13236423634 021501 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.610+01:00",
"prov:trigger": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/activity1.json 0000644 0000765 0000000 00000000132 13236423634 020315 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr25.json 0000644 0000765 0000000 00000000405 13236423634 024214 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o25": {
"ex:tag2": {
"$": "other:zabcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example4.org/",
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr23.json 0000644 0000765 0000000 00000000336 13236423634 024210 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"en_v23": {
"prov:value": {
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association8.json 0000644 0000765 0000000 00000000610 13236423634 021005 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc8": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "someOtherRole",
"type": "xsd:string"
}
],
"prov:plan": "ex:plan1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation12.json 0000644 0000765 0000000 00000000556 13236423634 020721 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:quo1": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:type": {
"$": "prov:Quotation",
"type": "prov:QUALIFIED_NAME"
},
"prov:usage": "ex:u",
"prov:generation": "ex:g",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/influence1.json 0000644 0000765 0000000 00000000211 13236423634 020427 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"ex:inf1": {
"prov:influencee": "ex:a2"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/agent4.json 0000644 0000765 0000000 00000000421 13236423634 017563 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag2": {
"prov:label": [
"agent2",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr22.json 0000644 0000765 0000000 00000000452 13236423634 025033 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r22": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "ex:abcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_influence0.json 0000644 0000765 0000000 00000064144 13236423634 021477 0 ustar tdh wheel 0000000 0000000 {
"wasInfluencedBy": {
"infl0": {
"prov:type": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.898+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag2": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.898+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"tag3": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.898+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:influencer": "e2",
"ex4:tag5": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.898+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
],
"prov:influencee": "e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
],
"ex4:tag4": [
{
"$": "un lieu",
"type": "xsd:string"
},
{
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
},
{
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1",
"type": "xsd:long"
},
{
"$": "1",
"type": "xsd:short"
},
{
"$": "2.0",
"type": "xsd:double"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "10",
"type": "xsd:decimal"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "false",
"type": "xsd:boolean"
},
{
"$": "10",
"type": "xsd:byte"
},
{
"$": "10",
"type": "xsd:unsignedInt"
},
{
"$": "10",
"type": "xsd:unsignedLong"
},
{
"$": "10",
"type": "xsd:integer"
},
{
"$": "10",
"type": "xsd:unsignedShort"
},
{
"$": "10",
"type": "xsd:nonNegativeInteger"
},
{
"$": "-10",
"type": "xsd:nonPositiveInteger"
},
{
"$": "10",
"type": "xsd:positiveInteger"
},
{
"$": "10",
"type": "xsd:unsignedByte"
},
{
"$": "http://example.org",
"type": "xsd:anyURI"
},
{
"$": "abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcd",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "pre_0:zabcde",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:41.898+01:00",
"type": "xsd:dateTime"
},
{
"$": "2013",
"type": "xsd:gYear"
},
{
"$": "--01",
"type": "xsd:gMonth"
},
{
"$": "---30",
"type": "xsd:gDay"
},
{
"$": "--12-25",
"type": "xsd:gMonthDay"
},
{
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
},
{
"$": "P2Y6M",
"type": "xsd:yearMonthDuration"
},
{
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
},
{
"$": "000102220506",
"type": "xsd:hexBinary"
},
{
"$": "AAECIgUG",
"type": "xsd:base64Binary"
},
{
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
},
{
"$": "en",
"type": "xsd:language"
},
{
"$": "normal",
"type": "xsd:normalizedString"
},
{
"$": "TOK",
"type": "xsd:token"
},
{
"$": "NMTOK",
"type": "xsd:NMTOKEN"
},
{
"$": "name",
"type": "xsd:Name"
},
{
"$": "NCName",
"type": "xsd:NCName"
},
{
"$": "\u003cap:aaa xmlns:ap\u003d\"http://app/\"\u003e\u003cap:bbb\u003e\u003cap:ccc/\u003e\u003c/ap:bbb\u003e\u003c/ap:aaa\u003e",
"type": "rdf:XMLLiteral"
}
]
}
},
"prefix": {
"ex2": "http://example.org/",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"default": "http://example.org/",
"ex4": "http://example2.org/",
"other": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr8.json 0000644 0000765 0000000 00000000316 13236423634 024136 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o8": {
"ex:tag2": {
"$": "10",
"type": "xsd:decimal"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr37.json 0000644 0000765 0000000 00000003012 13236423634 024703 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l37": {
"prov:location": {
"$": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-usage2-S.json 0000644 0000765 0000000 00000001022 13236423634 021444 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.654+01:00",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr2.json 0000644 0000765 0000000 00000000444 13236423634 024752 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r2": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "a place",
"type": "prov:InternationalizedString",
"lang": "en"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr21.json 0000644 0000765 0000000 00000000277 13236423634 024706 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l21": {
"prov:location": {
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation7.json 0000644 0000765 0000000 00000002076 13236423634 020613 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del7": {
"prov:activity": "ex:a",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.305+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr34.json 0000644 0000765 0000000 00000000502 13236423634 025032 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r34": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr4.json 0000644 0000765 0000000 00000000256 13236423634 024624 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l4": {
"prov:location": {
"$": "1",
"type": "xsd:long"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr39.json 0000644 0000765 0000000 00000000272 13236423634 023022 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et39": {
"prov:type": {
"$": "normal",
"type": "xsd:normalizedString"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr19.json 0000644 0000765 0000000 00000000265 13236423634 024216 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v19": {
"prov:value": {
"$": "10",
"type": "xsd:unsignedByte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr38.json 0000644 0000765 0000000 00000000256 13236423634 023023 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et38": {
"prov:type": {
"$": "en",
"type": "xsd:language"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr18.json 0000644 0000765 0000000 00000000270 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v18": {
"prov:value": {
"$": "10",
"type": "xsd:positiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attribution8.json 0000644 0000765 0000000 00000002633 13236423634 021044 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr8": {
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.530+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"prov:agent": "ex:ag1",
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:entity": "ex:e1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr35.json 0000644 0000765 0000000 00000000405 13236423634 025035 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r35": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "000102220506",
"type": "xsd:hexBinary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr5.json 0000644 0000765 0000000 00000000257 13236423634 024626 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l5": {
"prov:location": {
"$": "1",
"type": "xsd:short"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-start3-M.json 0000644 0000765 0000000 00000001315 13236423634 021475 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a2": {},
"ex:a2s": {},
"ex:a1": {}
},
"wasStartedBy": {
"ex:start1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:52.634+01:00",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
},
"prov:starter": "ex:a1s"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
},
"prov:starter": "ex:a2s"
}
]
}
} prov-1.5.2/prov/tests/json/alternate1.json 0000644 0000765 0000000 00000000245 13236423634 020445 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"alternateOf": {
"_:aO1": {
"prov:alternate2": "ex:e2",
"prov:alternate1": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr3.json 0000644 0000765 0000000 00000000363 13236423634 024753 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r3": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "1",
"type": "xsd:int"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr20.json 0000644 0000765 0000000 00000000302 13236423634 024672 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l20": {
"prov:location": {
"$": "http://example.org",
"type": "xsd:anyURI"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/delegation6.json 0000644 0000765 0000000 00000000745 13236423634 020613 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"actedOnBehalfOf": {
"ex:del6": {
"prov:activity": "ex:a",
"prov:delegate": "ex:e1",
"prov:responsible": "ex:ag1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/generation1.json 0000644 0000765 0000000 00000000204 13236423634 020614 0 ustar tdh wheel 0000000 0000000 {
"wasGeneratedBy": {
"ex:gen1": {
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr9.json 0000644 0000765 0000000 00000000320 13236423634 024132 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o9": {
"ex:tag2": {
"$": "true",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr36.json 0000644 0000765 0000000 00000000276 13236423634 024713 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l36": {
"prov:location": {
"$": "AAECIgUG",
"type": "xsd:base64Binary"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr23.json 0000644 0000765 0000000 00000000441 13236423634 025032 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ass_r23": {
"prov:activity": "a1",
"prov:agent": "ag1",
"prov:role": {
"$": "abcde",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"default": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/derivation13.json 0000644 0000765 0000000 00000000563 13236423634 020720 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasDerivedFrom": {
"ex:prim1": {
"prov:activity": "ex:a",
"prov:generatedEntity": "ex:e2",
"prov:type": {
"$": "prov:PrimarySource",
"type": "prov:QUALIFIED_NAME"
},
"prov:usage": "ex:u",
"prov:generation": "ex:g",
"prov:usedEntity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/mention2.json 0000644 0000765 0000000 00000000307 13236423634 020137 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"mentionOf": {
"_:mO2": {
"prov:generalEntity": "ex:e1",
"prov:specificEntity": "ex:e2",
"prov:bundle": "ex:b"
}
}
} prov-1.5.2/prov/tests/json/agent5.json 0000644 0000765 0000000 00000000611 13236423634 017565 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"agent": {
"ex:ag2": {
"prov:label": [
"agent2",
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/end1.json 0000644 0000765 0000000 00000000201 13236423634 017224 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": {
"prov:trigger": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr24.json 0000644 0000765 0000000 00000000404 13236423634 024212 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o24": {
"ex:tag2": {
"$": "pre_0:zabc",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"pre_0": "http://example4.org/",
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/association9.json 0000644 0000765 0000000 00000002677 13236423634 021025 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:assoc9": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:53.012+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"prov:agent": "ex:ag1",
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:plan": "ex:plan1",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
},
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr22.json 0000644 0000765 0000000 00000000341 13236423634 024203 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v22": {
"prov:value": {
"$": "ex:abcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr34.json 0000644 0000765 0000000 00000000371 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v34": {
"prov:value": {
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr32.json 0000644 0000765 0000000 00000000341 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o32": {
"ex:tag2": {
"$": "P0Y0M0DT0H0M12.225S",
"type": "xsd:duration"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr14.json 0000644 0000765 0000000 00000000255 13236423634 023014 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et14": {
"prov:type": {
"$": "10",
"type": "xsd:integer"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/entity3.json 0000644 0000765 0000000 00000000332 13236423634 020001 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e3": {
"prov:value": {
"$": "ex:avalue",
"type": "prov:QUALIFIED_NAME"
},
"prov:label": "entity3"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr19.json 0000644 0000765 0000000 00000000376 13236423634 025046 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r19": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:unsignedByte"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr43.json 0000644 0000765 0000000 00000000260 13236423634 023012 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et43": {
"prov:type": {
"$": "NCName",
"type": "xsd:NCName"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/invalidation1.json 0000644 0000765 0000000 00000000206 13236423634 021144 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasInvalidatedBy": {
"ex:inv1": {
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr1.json 0000644 0000765 0000000 00000000330 13236423634 022722 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et1": {
"prov:type": {
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr9.json 0000644 0000765 0000000 00000000264 13236423634 024630 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l9": {
"prov:location": {
"$": "true",
"type": "xsd:boolean"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr39.json 0000644 0000765 0000000 00000000406 13236423634 025042 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r39": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "normal",
"type": "xsd:normalizedString"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr14.json 0000644 0000765 0000000 00000000260 13236423634 024204 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v14": {
"prov:value": {
"$": "10",
"type": "xsd:integer"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr12.json 0000644 0000765 0000000 00000000323 13236423634 024207 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o12": {
"ex:tag2": {
"$": "10",
"type": "xsd:unsignedInt"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr34.json 0000644 0000765 0000000 00000000366 13236423634 023021 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et34": {
"prov:type": {
"$": "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S",
"type": "xsd:dayTimeDuration"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attribution4.json 0000644 0000765 0000000 00000000244 13236423634 021034 0 ustar tdh wheel 0000000 0000000 {
"wasAttributedTo": {
"ex:attr4": {
"prov:agent": "ex:ag1",
"prov:entity": "ex:e1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr43.json 0000644 0000765 0000000 00000000263 13236423634 024211 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v43": {
"prov:value": {
"$": "NCName",
"type": "xsd:NCName"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr5.json 0000644 0000765 0000000 00000000313 13236423634 024130 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o5": {
"ex:tag2": {
"$": "1",
"type": "xsd:short"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/usage1.json 0000644 0000765 0000000 00000000172 13236423634 017571 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"used": {
"ex:use1": {
"prov:entity": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/start1.json 0000644 0000765 0000000 00000000205 13236423634 017617 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/"
},
"wasStartedBy": {
"ex:start1": {
"prov:trigger": "ex:e1"
}
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr22.json 0000644 0000765 0000000 00000000336 13236423634 023013 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et22": {
"prov:type": {
"$": "ex:abcd",
"type": "prov:QUALIFIED_NAME"
}
}
},
"prefix": {
"other": "http://example.org/",
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr16.json 0000644 0000765 0000000 00000000276 13236423634 024711 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l16": {
"prov:location": {
"$": "10",
"type": "xsd:nonNegativeInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_location_attr41.json 0000644 0000765 0000000 00000000266 13236423634 024706 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_l41": {
"prov:location": {
"$": "NMTOK",
"type": "xsd:NMTOKEN"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-generation2-M.json 0000644 0000765 0000000 00000001174 13236423634 022475 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:e1": {}
},
"wasGeneratedBy": {
"ex:gen1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:53.268+01:00",
"ex:tag2": {
"$": "hello-scruff-gen2",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"ex:tag2": {
"$": "hi-scruff-gen2",
"type": "xsd:string"
},
"prov:entity": "ex:e1"
}
]
},
"prefix": {
"ex": "http://example.org/"
},
"activity": {
"ex:a1": {}
}
} prov-1.5.2/prov/tests/json/start10.json 0000644 0000765 0000000 00000004472 13236423634 017711 0 ustar tdh wheel 0000000 0000000 {
"prefix": {
"ex": "http://example.org/",
"ex2": "http://example2.org/"
},
"wasStartedBy": {
"_:wSB4": {
"prov:activity": "ex:a1",
"prov:type": [
{
"$": "a",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:string"
},
{
"$": "ex:abc",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.647+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/hello",
"type": "xsd:anyURI"
}
],
"prov:time": "2014-06-23T12:28:54.647+01:00",
"ex:tag1": [
{
"$": "hello",
"type": "xsd:string"
},
{
"$": "hello\nover\nmore\nlines",
"type": "xsd:string"
}
],
"ex:tag2": {
"$": "bye",
"type": "xsd:string"
},
"ex2:tag3": {
"$": "hi",
"type": "xsd:string"
},
"prov:role": [
{
"$": "someRole",
"type": "xsd:string"
},
{
"$": "otherRole",
"type": "xsd:string"
}
],
"prov:location": [
{
"$": "London",
"type": "xsd:string"
},
{
"$": "1",
"type": "xsd:int"
},
{
"$": "1.0",
"type": "xsd:float"
},
{
"$": "true",
"type": "xsd:boolean"
},
{
"$": "ex:london",
"type": "prov:QUALIFIED_NAME"
},
{
"$": "2014-06-23T12:28:54.648+01:00",
"type": "xsd:dateTime"
},
{
"$": "http://example.org/london",
"type": "xsd:anyURI"
},
{
"$": "2002",
"type": "xsd:gYear"
}
],
"prov:starter": "ex:a2",
"prov:label": [
"hello",
{
"$": "bye",
"type": "prov:InternationalizedString",
"lang": "en"
},
{
"$": "bonjour",
"type": "prov:InternationalizedString",
"lang": "fr"
}
]
}
}
} prov-1.5.2/prov/tests/json/association5.json 0000644 0000765 0000000 00000000246 13236423634 021007 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"_:wAW1": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1"
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_other_attr28.json 0000644 0000765 0000000 00000000317 13236423634 024221 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_o28": {
"ex:tag2": {
"$": "2013",
"type": "xsd:gYear"
}
}
},
"prefix": {
"ex": "http://example.org/",
"exo": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr15.json 0000644 0000765 0000000 00000000377 13236423634 025043 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r15": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "10",
"type": "xsd:unsignedShort"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr1.json 0000644 0000765 0000000 00000000333 13236423634 024121 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v1": {
"prov:value": {
"$": "un lieu",
"type": "prov:InternationalizedString",
"lang": "fr"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_attr18.json 0000644 0000765 0000000 00000000265 13236423634 023021 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:et18": {
"prov:type": {
"$": "10",
"type": "xsd:positiveInteger"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_entity_one_value_attr38.json 0000644 0000765 0000000 00000000261 13236423634 024213 0 ustar tdh wheel 0000000 0000000 {
"entity": {
"ex:en_v38": {
"prov:value": {
"$": "en",
"type": "xsd:language"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/scruffy-end3-S.json 0000644 0000765 0000000 00000001132 13236423634 021111 0 ustar tdh wheel 0000000 0000000 {
"wasEndedBy": {
"ex:end1": [
{
"prov:activity": "ex:a1",
"prov:time": "2014-06-23T12:28:54.691+01:00",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a1s",
"ex:tag2": {
"$": "hello",
"type": "xsd:string"
}
},
{
"prov:activity": "ex:a1",
"prov:time": "2012-12-03T21:08:16.686Z",
"prov:trigger": "ex:e1",
"prov:ender": "ex:a2s",
"ex:tag2": {
"$": "hi",
"type": "xsd:string"
}
}
]
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/json/attr_association_one_role_attr42.json 0000644 0000765 0000000 00000000370 13236423634 025034 0 ustar tdh wheel 0000000 0000000 {
"wasAssociatedWith": {
"ex:ass_r42": {
"prov:activity": "ex:a1",
"prov:agent": "ex:ag1",
"prov:role": {
"$": "name",
"type": "xsd:Name"
}
}
},
"prefix": {
"ex": "http://example.org/"
}
} prov-1.5.2/prov/tests/qnames.py 0000644 0000765 0000000 00000005055 13236423634 016403 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
from prov.model import ProvDocument, Namespace
def document_with_n_bundles_having_default_namespace(n):
prov_doc = ProvDocument()
prov_doc.add_namespace('ex', 'http://www.example.org/')
for i in range(n):
x = str(i + 1)
bundle = prov_doc.bundle('ex:bundle/' + x)
bundle.set_default_namespace('http://www.example.org/default/' + x)
bundle.entity('e')
return prov_doc
class TestQualifiedNamesBase(object):
"""This is the base class for testing support for qualified names and
namespaces. It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
def test_namespace_inheritance(self):
prov_doc = ProvDocument()
prov_doc.add_namespace('ex', 'http://www.example.org/')
bundle = prov_doc.bundle('ex:bundle')
e1 = bundle.entity('ex:e1')
self.assertIsNotNone(e1.identifier, "e1's identifier is None!")
self.do_tests(prov_doc)
def test_default_namespace_inheritance(self):
prov_doc = ProvDocument()
prov_doc.set_default_namespace('http://www.example.org/')
bundle = prov_doc.bundle('bundle')
e1 = bundle.entity('e1')
self.assertIsNotNone(e1.identifier, "e1's identifier is None!")
self.do_tests(prov_doc)
def test_flattening_1_bundle_with_default_namespace(self):
prov_doc = document_with_n_bundles_having_default_namespace(1)
flattened = prov_doc.flattened()
self.do_tests(flattened)
def test_flattening_2_bundles_with_default_namespace(self):
prov_doc = document_with_n_bundles_having_default_namespace(2)
flattened = prov_doc.flattened()
self.do_tests(flattened)
def test_flattening_3_bundles_with_default_namespace(self):
prov_doc = document_with_n_bundles_having_default_namespace(3)
flattened = prov_doc.flattened()
self.do_tests(flattened)
def test_flattening_1_bundle_with_default_namespaces(self):
prov_doc = document_with_n_bundles_having_default_namespace(1)
prov_doc.set_default_namespace('http://www.example.org/default/0')
flattened = prov_doc.flattened()
self.do_tests(flattened)
def test_flattening_2_bundle_with_default_namespaces(self):
prov_doc = document_with_n_bundles_having_default_namespace(2)
prov_doc.set_default_namespace('http://www.example.org/default/0')
flattened = prov_doc.flattened()
self.do_tests(flattened)
prov-1.5.2/prov/tests/examples.py 0000644 0000765 0000000 00000046232 13236423634 016737 0 ustar tdh wheel 0000000 0000000 # coding: utf8
from __future__ import (absolute_import, division, print_function,
unicode_literals)
from prov.model import ProvDocument, Namespace, Literal, PROV, Identifier
import datetime
def primer_example():
# https://github.com/lucmoreau/ProvToolbox/blob/master/prov-n/src/test/resources/prov/primer.pn
#===========================================================================
# document
g = ProvDocument()
# prefix ex
# prefix dcterms
# prefix foaf
ex = Namespace('ex', 'http://example/') # namespaces do not need to be explicitly added to a document
g.add_namespace("dcterms", "http://purl.org/dc/terms/")
g.add_namespace("foaf", "http://xmlns.com/foaf/0.1/")
# entity(ex:article, [dcterms:title="Crime rises in cities"])
# first time the ex namespace was used, it is added to the document automatically
g.entity(ex['article'], {'dcterms:title': "Crime rises in cities"})
# entity(ex:articleV1)
g.entity(ex['articleV1'])
# entity(ex:articleV2)
g.entity(ex['articleV2'])
# entity(ex:dataSet1)
g.entity(ex['dataSet1'])
# entity(ex:dataSet2)
g.entity(ex['dataSet2'])
# entity(ex:regionList)
g.entity(ex['regionList'])
# entity(ex:composition)
g.entity(ex['composition'])
# entity(ex:chart1)
g.entity(ex['chart1'])
# entity(ex:chart2)
g.entity(ex['chart2'])
# entity(ex:blogEntry)
g.entity(ex['blogEntry'])
# activity(ex:compile)
g.activity('ex:compile') # since ex is registered, it can be used like this
# activity(ex:compile2)
g.activity('ex:compile2')
# activity(ex:compose)
g.activity('ex:compose')
# activity(ex:correct, 2012-03-31T09:21:00, 2012-04-01T15:21:00)
g.activity('ex:correct', '2012-03-31T09:21:00', '2012-04-01T15:21:00') # date time can be provided as strings
# activity(ex:illustrate)
g.activity('ex:illustrate')
# used(ex:compose, ex:dataSet1, -, [ prov:role = "ex:dataToCompose"])
g.used('ex:compose', 'ex:dataSet1', other_attributes={'prov:role': "ex:dataToCompose"})
# used(ex:compose, ex:regionList, -, [ prov:role = "ex:regionsToAggregateBy"])
g.used('ex:compose', 'ex:regionList', other_attributes={'prov:role': "ex:regionsToAggregateBy"})
# wasGeneratedBy(ex:composition, ex:compose, -)
g.wasGeneratedBy('ex:composition', 'ex:compose')
# used(ex:illustrate, ex:composition, -)
g.used('ex:illustrate', 'ex:composition')
# wasGeneratedBy(ex:chart1, ex:illustrate, -)
g.wasGeneratedBy('ex:chart1', 'ex:illustrate')
# wasGeneratedBy(ex:chart1, ex:compile, 2012-03-02T10:30:00)
g.wasGeneratedBy('ex:chart1', 'ex:compile', '2012-03-02T10:30:00')
# wasGeneratedBy(ex:chart2, ex:compile2, 2012-04-01T15:21:00)
#
#
# agent(ex:derek, [ prov:type="prov:Person", foaf:givenName = "Derek",
# foaf:mbox= ""])
g.agent('ex:derek', {
'prov:type': PROV["Person"], 'foaf:givenName': "Derek", 'foaf:mbox': ""
})
# wasAssociatedWith(ex:compose, ex:derek, -)
g.wasAssociatedWith('ex:compose', 'ex:derek')
# wasAssociatedWith(ex:illustrate, ex:derek, -)
g.wasAssociatedWith('ex:illustrate', 'ex:derek')
#
# agent(ex:chartgen, [ prov:type="prov:Organization",
# foaf:name = "Chart Generators Inc"])
g.agent('ex:chartgen', {'prov:type': PROV["Organization"], 'foaf:name': "Chart Generators Inc"})
# actedOnBehalfOf(ex:derek, ex:chartgen, ex:compose)
g.actedOnBehalfOf('ex:derek', 'ex:chartgen', 'ex:compose')
# wasAttributedTo(ex:chart1, ex:derek)
g.wasAttributedTo('ex:chart1', 'ex:derek')
# wasGeneratedBy(ex:dataSet2, ex:correct, -)
g.wasGeneratedBy('ex:dataSet2', 'ex:correct')
# used(ex:correct, ex:dataSet1, -)
g.used('ex:correct', 'ex:dataSet1')
# wasDerivedFrom(ex:dataSet2, ex:dataSet1, [prov:type='prov:Revision'])
g.wasDerivedFrom('ex:dataSet2', 'ex:dataSet1', other_attributes={'prov:type': PROV['Revision']})
# wasDerivedFrom(ex:chart2, ex:dataSet2)
g.wasDerivedFrom('ex:chart2', 'ex:dataSet2')
# wasDerivedFrom(ex:blogEntry, ex:article, [prov:type='prov:Quotation'])
g.wasDerivedFrom('ex:blogEntry', 'ex:article', other_attributes={'prov:type': PROV['Quotation']})
# specializationOf(ex:articleV1, ex:article)
g.specializationOf('ex:articleV1', 'ex:article')
# wasDerivedFrom(ex:articleV1, ex:dataSet1)
g.wasDerivedFrom('ex:articleV1', 'ex:dataSet1')
# specializationOf(ex:articleV2, ex:article)
g.specializationOf('ex:articleV2', 'ex:article')
# wasDerivedFrom(ex:articleV2, ex:dataSet2)
g.wasDerivedFrom('ex:articleV2', 'ex:dataSet2')
# alternateOf(ex:articleV2, ex:articleV1)
g.alternateOf('ex:articleV2', 'ex:articleV1')
# endDocument
return g
def primer_example_alternate():
g = ProvDocument(namespaces={
'ex': 'http://example/',
'dcterms': 'http://purl.org/dc/terms/',
'foaf': 'http://xmlns.com/foaf/0.1/'
})
article = g.entity('ex:article', {'dcterms:title': "Crime rises in cities"})
articleV1 = g.entity('ex:articleV1')
articleV2 = g.entity('ex:articleV2')
dataSet1 = g.entity('ex:dataSet1')
dataSet2 = g.entity('ex:dataSet2')
regionList = g.entity('ex:regionList')
composition = g.entity('ex:composition')
chart1 = g.entity('ex:chart1')
chart2 = g.entity('ex:chart2')
blogEntry = g.entity('ex:blogEntry')
compile = g.activity('ex:compile')
compile2 = g.activity('ex:compile2')
compose = g.activity('ex:compose')
correct = g.activity('ex:correct', '2012-03-31T09:21:00', '2012-04-01T15:21:00')
illustrate = g.activity('ex:illustrate')
compose.used(dataSet1, attributes={'prov:role': "ex:dataToCompose"})
compose.used(regionList, attributes={'prov:role': "ex:regionsToAggregateBy"})
composition.wasGeneratedBy(compose)
illustrate.used(composition)
chart1.wasGeneratedBy(illustrate)
chart1.wasGeneratedBy(compile, '2012-03-02T10:30:00')
derek = g.agent('ex:derek', {
'prov:type': PROV['Person'], 'foaf:givenName': "Derek", 'foaf:mbox': ""
})
compose.wasAssociatedWith(derek)
illustrate.wasAssociatedWith(derek)
chartgen = g.agent('ex:chartgen', {
'prov:type': PROV["Organization"], 'foaf:name': "Chart Generators Inc"
})
derek.actedOnBehalfOf(chartgen, compose)
chart1.wasAttributedTo(derek)
dataSet2.wasGeneratedBy(correct)
correct.used(dataSet1)
dataSet2.wasDerivedFrom(dataSet1, attributes={'prov:type': PROV['Revision']})
chart2.wasDerivedFrom(dataSet2)
blogEntry.wasDerivedFrom(article, attributes={'prov:type': PROV['Quotation']})
articleV1.specializationOf(article)
articleV1.wasDerivedFrom(dataSet1)
articleV2.specializationOf(article)
articleV2.wasDerivedFrom(dataSet2)
articleV2.alternateOf(articleV1)
return g
def w3c_publication_1():
# https://github.com/lucmoreau/ProvToolbox/blob/master/asn/src/test/resources/prov/w3c-publication1.prov-asn
#===========================================================================
# bundle
#
# prefix ex
#
# prefix w3
# prefix tr
# prefix process
# prefix email
# prefix chairs
# prefix trans
# prefix rec54
#
#
# entity(tr:WD-prov-dm-20111018, [ prov:type='rec54:WD' ])
# entity(tr:WD-prov-dm-20111215, [ prov:type='rec54:WD' ])
# entity(process:rec-advance, [ prov:type='prov:Plan' ])
#
#
# entity(chairs:2011OctDec/0004, [ prov:type='trans:transreq' ])
# entity(email:2011Oct/0141, [ prov:type='trans:pubreq' ])
# entity(email:2011Dec/0111, [ prov:type='trans:pubreq' ])
#
#
# wasDerivedFrom(tr:WD-prov-dm-20111215, tr:WD-prov-dm-20111018)
#
#
# activity(ex:act1,-,-,[prov:type="publish"])
# activity(ex:act2,-,-,[prov:type="publish"])
#
# wasGeneratedBy(tr:WD-prov-dm-20111018, ex:act1, -)
# wasGeneratedBy(tr:WD-prov-dm-20111215, ex:act2, -)
#
# used(ex:act1, chairs:2011OctDec/0004, -)
# used(ex:act1, email:2011Oct/0141, -)
# used(ex:act2, email:2011Dec/0111, -)
#
# agent(w3:Consortium, [ prov:type='prov:Organization' ])
#
# wasAssociatedWith(ex:act1, w3:Consortium, process:rec-advance)
# wasAssociatedWith(ex:act2, w3:Consortium, process:rec-advance)
#
# endBundle
#===========================================================================
g = ProvDocument()
g.add_namespace('ex', 'http://example.org/')
g.add_namespace('w3', 'http://www.w3.org/')
g.add_namespace('tr', 'http://www.w3.org/TR/2011/')
g.add_namespace('process', 'http://www.w3.org/2005/10/Process-20051014/tr.html#')
g.add_namespace('email', 'https://lists.w3.org/Archives/Member/w3c-archive/')
g.add_namespace('chairs', 'https://lists.w3.org/Archives/Member/chairs/')
g.add_namespace('trans', 'http://www.w3.org/2005/08/01-transitions.html#')
g.add_namespace('rec54', 'http://www.w3.org/2001/02pd/rec54#')
g.entity('tr:WD-prov-dm-20111018', {'prov:type': 'rec54:WD'})
g.entity('tr:WD-prov-dm-20111215', {'prov:type': 'rec54:WD'})
g.entity('process:rec-advance', {'prov:type': 'prov:Plan'})
g.entity('chairs:2011OctDec/0004', {'prov:type': 'trans:transreq'})
g.entity('email:2011Oct/0141', {'prov:type': 'trans:pubreq'})
g.entity('email:2011Dec/0111', {'prov:type': 'trans:pubreq'})
g.wasDerivedFrom('tr:WD-prov-dm-20111215', 'tr:WD-prov-dm-20111018')
g.activity('ex:act1', other_attributes={'prov:type': "publish"})
g.activity('ex:act2', other_attributes={'prov:type': "publish"})
g.wasGeneratedBy('tr:WD-prov-dm-20111018', 'ex:act1')
g.wasGeneratedBy('tr:WD-prov-dm-20111215', 'ex:act2')
g.used('ex:act1', 'chairs:2011OctDec/0004')
g.used('ex:act1', 'email:2011Oct/0141')
g.used('ex:act2', 'email:2011Dec/0111')
g.agent('w3:Consortium', other_attributes={'prov:type': "Organization"})
g.wasAssociatedWith('ex:act1', 'w3:Consortium', 'process:rec-advance')
g.wasAssociatedWith('ex:act2', 'w3:Consortium', 'process:rec-advance')
return g
def w3c_publication_2():
# https://github.com/lucmoreau/ProvToolbox/blob/master/asn/src/test/resources/prov/w3c-publication2.prov-asn
#===========================================================================
# bundle
#
# prefix ex
# prefix rec
#
# prefix w3
# prefix hg
#
#
# entity(hg:Overview.html, [ prov:type="file in hg" ])
# entity(w3:WD-prov-dm-20111215, [ prov:type="html4" ])
#
#
# activity(ex:rcp,-,-,[prov:type="copy directory"])
#
# wasGeneratedBy(rec:g; w3:WD-prov-dm-20111215, ex:rcp, -)
#
# entity(ex:req3, [ prov:type="http://www.w3.org/2005/08/01-transitions.html#pubreq" %% xsd:anyURI ])
#
# used(rec:u; ex:rcp,hg:Overview.html,-)
# used(ex:rcp, ex:req3, -)
#
#
# wasDerivedFrom(w3:WD-prov-dm-20111215, hg:Overview.html, ex:rcp, rec:g, rec:u)
#
# agent(ex:webmaster, [ prov:type='prov:Person' ])
#
# wasAssociatedWith(ex:rcp, ex:webmaster, -)
#
# endBundle
#===========================================================================
ex = Namespace('ex', 'http://example.org/')
rec = Namespace('rec', 'http://example.org/record')
w3 = Namespace('w3', 'http://www.w3.org/TR/2011/')
hg = Namespace('hg', 'http://dvcs.w3.org/hg/prov/raw-file/9628aaff6e20/model/releases/WD-prov-dm-20111215/')
g = ProvDocument()
g.entity(hg['Overview.html'], {'prov:type': "file in hg"})
g.entity(w3['WD-prov-dm-20111215'], {'prov:type': "html4"})
g.activity(ex['rcp'], None, None, {'prov:type': "copy directory"})
g.wasGeneratedBy('w3:WD-prov-dm-20111215', 'ex:rcp', identifier=rec['g'])
g.entity('ex:req3', {'prov:type': Identifier("http://www.w3.org/2005/08/01-transitions.html#pubreq")})
g.used('ex:rcp', 'hg:Overview.html', identifier='rec:u')
g.used('ex:rcp', 'ex:req3')
g.wasDerivedFrom('w3:WD-prov-dm-20111215', 'hg:Overview.html', 'ex:rcp', 'rec:g', 'rec:u')
g.agent('ex:webmaster', {'prov:type': "Person"})
g.wasAssociatedWith('ex:rcp', 'ex:webmaster')
return g
def bundles1():
# https://github.com/lucmoreau/ProvToolbox/blob/master/prov-n/src/test/resources/prov/bundles1.provn
#===============================================================================
# document
g = ProvDocument()
# prefix ex
EX = Namespace("ex", "http://www.example.com/")
g.add_namespace(EX)
# prefix alice
# prefix bob
g.add_namespace('alice', 'http://example.org/alice/')
g.add_namespace('bob', 'http://example.org/bob/')
# entity(bob:bundle1, [prov:type='prov:Bundle'])
g.entity('bob:bundle1', {'prov:type': PROV['Bundle']})
# wasGeneratedBy(bob:bundle1, -, 2012-05-24T10:30:00)
g.wasGeneratedBy('bob:bundle1', time='2012-05-24T10:30:00')
# agent(ex:Bob)
g.agent('ex:Bob')
# wasAttributedTo(bob:bundle1, ex:Bob)
g.wasAttributedTo('bob:bundle1', 'ex:Bob')
# entity(alice:bundle2, [ prov:type='prov:Bundle' ])
g.entity('alice:bundle2', {'prov:type': PROV['Bundle']})
# wasGeneratedBy(alice:bundle2, -, 2012-05-25T11:15:00)
g.wasGeneratedBy('alice:bundle2', time='2012-05-25T11:15:00')
# agent(ex:Alice)
g.agent('ex:Alice')
# wasAttributedTo(alice:bundle2, ex:Alice)
g.wasAttributedTo('alice:bundle2', 'ex:Alice')
# bundle bob:bundle1
b1 = g.bundle('bob:bundle1')
# entity(ex:report1, [ prov:type="report", ex:version=1 ])
b1.entity('ex:report1', {'prov:type': "report", 'ex:version': 1})
# wasGeneratedBy(ex:report1, -, 2012-05-24T10:00:01)
b1.wasGeneratedBy('ex:report1', time='2012-05-24T10:00:01')
# endBundle
# bundle alice:bundle2
b2 = g.bundle('alice:bundle2')
# entity(ex:report1)
b2.entity('ex:report1')
# entity(ex:report2, [ prov:type="report", ex:version=2 ])
b2.entity('ex:report2', {'prov:type': "report", 'ex:version': 2})
# wasGeneratedBy(ex:report2, -, 2012-05-25T11:00:01)
b2.wasGeneratedBy('ex:report2', time='2012-05-25T11:00:01')
# wasDerivedFrom(ex:report2, ex:report1)
b2.wasDerivedFrom('ex:report2', 'ex:report1')
# endBundle
# endDocument
return g
def bundles2():
# https://github.com/lucmoreau/ProvToolbox/blob/master/prov-n/src/test/resources/prov/bundles2.provn
#===========================================================================
# document
g = ProvDocument()
# prefix ex
g.add_namespace("ex", "http://www.example.com/")
# prefix alice
# prefix bob
g.add_namespace('alice', 'http://example.org/alice/')
g.add_namespace('bob', 'http://example.org/bob/')
# entity(bob:bundle4, [prov:type='prov:Bundle'])
# wasGeneratedBy(bob:bundle4, -, 2012-05-24T10:30:00)
# agent(ex:Bob)
# wasAttributedTo(bob:bundle4, ex:Bob)
g.entity('bob:bundle4', {'prov:type': PROV['Bundle']})
g.wasGeneratedBy('bob:bundle4', time='2012-05-24T10:30:00')
g.agent('ex:Bob')
g.wasAttributedTo('bob:bundle4', 'ex:Bob')
# entity(alice:bundle5, [ prov:type='prov:Bundle' ])
# wasGeneratedBy(alice:bundle5, -, 2012-05-25T11:15:00)
# agent(ex:Alice)
# wasAttributedTo(alice:bundle5, ex:Alice)
g.entity('alice:bundle5', {'prov:type': PROV['Bundle']})
g.wasGeneratedBy('alice:bundle5', time='2012-05-25T11:15:00')
g.agent('ex:Alice')
g.wasAttributedTo('alice:bundle5', 'ex:Alice')
# bundle bob:bundle4
# entity(ex:report1, [ prov:type="report", ex:version=1 ])
# wasGeneratedBy(ex:report1, -, 2012-05-24T10:00:01)
# endBundle
b4 = g.bundle('bob:bundle4')
b4.entity('ex:report1', {'prov:type': "report", 'ex:version': 1})
b4.wasGeneratedBy('ex:report1', time='2012-05-24T10:00:01')
# bundle alice:bundle5
# entity(ex:report1bis)
# mentionOf(ex:report1bis, ex:report1, bob:bundle4)
# entity(ex:report2, [ prov:type="report", ex:version=2 ])
# wasGeneratedBy(ex:report2, -, 2012-05-25T11:00:01)
# wasDerivedFrom(ex:report2, ex:report1bis)
# endBundle
b5 = g.bundle('alice:bundle5')
b5.entity('ex:report1bis')
b5.mentionOf('ex:report1bis', 'ex:report1', 'bob:bundle4')
b5.entity('ex:report2', [('prov:type', "report"), ('ex:version', 2)])
b5.wasGeneratedBy('ex:report2', time='2012-05-25T11:00:01')
b5.wasDerivedFrom('ex:report2', 'ex:report1bis')
# endDocument
return g
def collections():
g = ProvDocument()
ex = Namespace('ex', 'http://example.org/')
c1 = g.collection(ex['c1'])
e1 = g.entity('ex:e1')
g.hadMember(c1, e1)
return g
def datatypes():
g = ProvDocument()
ex = Namespace('ex', 'http://example.org/')
g.add_namespace(ex)
attributes = {
'ex:int': 100,
'ex:float': 100.123456,
'ex:long': 123456789000,
'ex:bool': True,
'ex:str': 'Some string',
'ex:unicode': u'Some unicode string with accents: Huỳnh Trung Đông',
'ex:timedate': datetime.datetime(2012, 12, 12, 14, 7, 48),
'ex:intstr': Literal("PROV Internationalized string", PROV["InternationalizedString"], "en"),
}
multiline = """Line1
Line2
Line3"""
attributes['ex:multi-line'] = multiline
g.entity('ex:e1', attributes)
return g
def long_literals():
g = ProvDocument()
long_uri = "http://Lorem.ipsum/dolor/sit/amet/consectetur/adipiscing/elit/Quisque/vel/sollicitudin/felis/nec/" \
"venenatis/massa/Aenean/lectus/arcu/sagittis/sit/amet/nisl/nec/varius/eleifend/sem/In/hac/habitasse/" \
"platea/dictumst/Aliquam/eget/fermentum/enim/Curabitur/auctor/elit/non/ipsum/interdum/at/orci/aliquam/"
ex = Namespace('ex', long_uri)
g.add_namespace(ex)
g.entity('ex:e1', {
'prov:label': 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec pellentesque luctus nulla vel '
'ullamcorper. Donec sit amet ligula sit amet lorem pretium rhoncus vel vel lorem. Sed at '
'consequat metus, eget eleifend massa. Fusce a facilisis turpis. Lorem volutpat.'
})
return g
tests = [
('Bundle1', bundles1),
('Bundle2', bundles2),
('Primer', primer_example),
('W3C Publication 1', w3c_publication_1),
('W3C Publication 2', w3c_publication_2),
('collections', collections),
('datatypes', datatypes),
('Long literals', long_literals),
]
prov-1.5.2/prov/tests/statements.py 0000644 0000765 0000000 00000145651 13236423634 017315 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
from prov.model import *
EX_NS = Namespace('ex', 'http://example.org/')
EX2_NS = Namespace('ex2', 'http://example2.org/')
class TestStatementsBase(object):
"""This is the base class for testing different PROV statements.
It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
def new_document(self):
return ProvDocument()
def add_label(self, record):
record.add_attributes(
[('prov:label', Literal("hello"))]
)
def add_labels(self, record):
record.add_attributes([
('prov:label', Literal("hello")),
('prov:label', Literal("bye", langtag="en")),
('prov:label', Literal("bonjour", langtag="fr"))
])
def add_types(self, record):
record.add_attributes([
('prov:type', 'a'),
('prov:type', 1),
('prov:type', 1.0),
('prov:type', True),
('prov:type', EX_NS['abc']),
('prov:type', datetime.datetime.now()),
('prov:type', Literal('http://boiled-egg.example.com',
datatype=XSD_ANYURI)),
])
def add_locations(self, record):
record.add_attributes([
('prov:Location', "Southampton"),
('prov:Location', 1),
('prov:Location', 1.0),
('prov:Location', True),
('prov:Location', EX_NS['london']),
('prov:Location', datetime.datetime.now()),
('prov:Location', EX_NS.uri + "london"),
('prov:Location', Literal(2002, datatype=XSD['gYear'])),
])
def add_value(self, record):
record.add_attributes([
('prov:value', EX_NS['avalue'])
])
def add_further_attributes(self, record):
record.add_attributes([
(EX_NS['tag1'], "hello"),
(EX_NS['tag2'], "bye"),
(EX2_NS['tag3'], "hi"),
(EX_NS['tag1'], "hello\nover\nmore\nlines"),
])
def add_further_attributes0(self, record):
record.add_attributes([
(EX_NS['tag1'], "hello"),
(EX_NS['tag2'], "bye"),
(EX_NS['tag2'], Literal("hola", langtag="es")),
(EX2_NS['tag3'], "hi"),
(EX_NS['tag'], 1),
# Long on Python 2, just int on Python 3.
(EX_NS['tag'], six.integer_types[-1](1)),
(EX_NS['tag'], Literal(1, datatype=XSD_SHORT)),
(EX_NS['tag'], Literal(1, datatype=XSD_DOUBLE)),
(EX_NS['tag'], 1.0),
(EX_NS['tag'], True),
(EX_NS['tag'], EX_NS.uri + "southampton"),
])
self.add_further_attributes_with_qnames(record)
def add_further_attributes_with_qnames(self, record):
record.add_attributes([
(EX_NS['tag'], EX2_NS['newyork']),
(EX_NS['tag'], EX_NS['london']),
])
# TESTS
# ENTITIES
def test_entity_0(self):
document = self.new_document()
a = document.entity(EX_NS['e0'])
a.add_attributes([
(EX_NS['tag2'], Literal("guten tag", langtag="de")),
('prov:Location', "un llieu"),
(PROV['Location'], 1),
(PROV['Location'], 2.0),
(PROV['Location'], EX_NS.uri + "london"),
])
self.do_tests(document)
def test_entity_1(self):
document = self.new_document()
document.entity(EX_NS['e1'])
self.do_tests(document)
def test_entity_2(self):
document = self.new_document()
a = document.entity(EX_NS['e2'])
a.add_attributes([(PROV_LABEL, 'entity2')])
self.do_tests(document)
def test_entity_3(self):
document = self.new_document()
a = document.entity(EX_NS['e3'])
a.add_attributes([(PROV_LABEL, 'entity3')])
self.add_value(a)
self.do_tests(document)
def test_entity_4(self):
document = self.new_document()
a = document.entity(EX_NS['e4'])
a.add_attributes([(PROV_LABEL, 'entity4')])
self.add_labels(a)
self.do_tests(document)
def test_entity_5(self):
document = self.new_document()
a = document.entity(EX_NS['e5'])
a.add_attributes([(PROV_LABEL, 'entity5')])
self.add_types(a)
self.do_tests(document)
def test_entity_6(self):
document = self.new_document()
a = document.entity(EX_NS['e6'])
a.add_attributes([(PROV_LABEL, 'entity6')])
self.add_locations(a)
self.do_tests(document)
def test_entity_7(self):
document = self.new_document()
a = document.entity(EX_NS['e7'])
a.add_attributes([(PROV_LABEL, 'entity7')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.do_tests(document)
def test_entity_8(self):
document = self.new_document()
a = document.entity(EX_NS['e8'])
a.add_attributes([(PROV_LABEL, 'entity8')])
self.add_types(a)
self.add_types(a)
self.add_locations(a)
self.add_locations(a)
self.add_labels(a)
self.add_labels(a)
self.do_tests(document)
def test_entity_9(self):
document = self.new_document()
a = document.entity(EX_NS['e9'])
a.add_attributes([(PROV_LABEL, 'entity9')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes(a)
self.do_tests(document)
def test_entity_10(self):
document = self.new_document()
a = document.entity(EX_NS['e10'])
a.add_attributes([(PROV_LABEL, 'entity10')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes0(a)
self.do_tests(document)
# ACTIVITIES
def test_activity_1(self):
document = self.new_document()
document.activity(EX_NS['a1'])
self.do_tests(document)
def test_activity_2(self):
document = self.new_document()
a = document.activity(EX_NS['a2'])
a.add_attributes([(PROV_LABEL, 'activity2')])
self.do_tests(document)
def test_activity_3(self):
document = self.new_document()
document.activity(
EX_NS['a3'],
startTime=datetime.datetime.now(),
endTime=datetime.datetime.now()
)
self.do_tests(document)
def test_activity_4(self):
document = self.new_document()
a = document.activity(EX_NS['a4'])
a.add_attributes([(PROV_LABEL, 'activity4')])
self.add_labels(a)
self.do_tests(document)
def test_activity_5(self):
document = self.new_document()
a = document.activity(EX_NS['a5'])
a.add_attributes([(PROV_LABEL, 'activity5')])
self.add_types(a)
self.do_tests(document)
def test_activity_6(self):
document = self.new_document()
a = document.activity(EX_NS['a6'])
a.add_attributes([(PROV_LABEL, 'activity6')])
self.add_locations(a)
self.do_tests(document)
def test_activity_7(self):
document = self.new_document()
a = document.activity(EX_NS['a7'])
a.add_attributes([(PROV_LABEL, 'activity7')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.do_tests(document)
def test_activity_8(self):
document = self.new_document()
a = document.activity(
EX_NS['a8'],
startTime=datetime.datetime.now(),
endTime=datetime.datetime.now()
)
a.add_attributes([(PROV_LABEL, 'activity8')])
self.add_types(a)
self.add_types(a)
self.add_locations(a)
self.add_locations(a)
self.add_labels(a)
self.add_labels(a)
self.do_tests(document)
def test_activity_9(self):
document = self.new_document()
a = document.activity(EX_NS['a9'])
a.add_attributes([(PROV_LABEL, 'activity9')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes(a)
self.do_tests(document)
# AGENTS
def test_agent_1(self):
document = self.new_document()
document.agent(EX_NS['ag1'])
self.do_tests(document)
def test_agent_2(self):
document = self.new_document()
a = document.agent(EX_NS['ag2'])
a.add_attributes([(PROV_LABEL, 'agent2')])
self.do_tests(document)
def test_agent_3(self):
document = self.new_document()
a = document.agent(EX_NS['ag3'])
a.add_attributes([
(PROV_LABEL, 'agent3'),
(PROV_LABEL, Literal('hello')),
])
self.do_tests(document)
def test_agent_4(self):
document = self.new_document()
a = document.agent(EX_NS['ag4'])
a.add_attributes([
(PROV_LABEL, 'agent4'),
(PROV_LABEL, Literal('hello')),
(PROV_LABEL, Literal('bye', langtag="en")),
])
self.do_tests(document)
def test_agent_5(self):
document = self.new_document()
a = document.agent(EX_NS['ag5'])
a.add_attributes([
(PROV_LABEL, 'agent5'),
(PROV_LABEL, Literal('hello')),
(PROV_LABEL, Literal('bye', langtag="en")),
(PROV_LABEL, Literal('bonjour', langtag="french")),
])
self.do_tests(document)
def test_agent_6(self):
document = self.new_document()
a = document.agent(EX_NS['ag6'])
a.add_attributes([(PROV_LABEL, 'agent6')])
self.add_types(a)
self.do_tests(document)
def test_agent_7(self):
document = self.new_document()
a = document.agent(EX_NS['ag7'])
a.add_attributes([(PROV_LABEL, 'agent7')])
self.add_locations(a)
self.add_labels(a)
self.do_tests(document)
def test_agent_8(self):
document = self.new_document()
a = document.agent(EX_NS['ag8'])
a.add_attributes([(PROV_LABEL, 'agent8')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes(a)
self.do_tests(document)
# GENERATIONS
def test_generation_1(self):
document = self.new_document()
document.generation(EX_NS['e1'], identifier=EX_NS['gen1'])
self.do_tests(document)
def test_generation_2(self):
document = self.new_document()
document.generation(
EX_NS['e1'], identifier=EX_NS['gen2'], activity=EX_NS['a1']
)
self.do_tests(document)
def test_generation_3(self):
document = self.new_document()
a = document.generation(
EX_NS['e1'], identifier=EX_NS['gen3'], activity=EX_NS['a1']
)
a.add_attributes([
(PROV_ROLE, 'somerole'),
(PROV_ROLE, 'otherRole'),
])
self.do_tests(document)
def test_generation_4(self):
document = self.new_document()
document.new_record(
PROV_GENERATION, EX_NS['gen4'], (
(PROV_ATTR_ENTITY, EX_NS['e1']),
(PROV_ATTR_ACTIVITY, EX_NS['a1']),
(PROV_ATTR_TIME, datetime.datetime.now())
),
{PROV_ROLE: 'somerole'}
)
self.do_tests(document)
def test_generation_5(self):
document = self.new_document()
a = document.generation(EX_NS['e1'],
identifier=EX_NS['gen5'],
activity=EX_NS['a1'],
time=datetime.datetime.now())
a.add_attributes([
(PROV_ROLE, 'somerole'),
])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes(a)
self.do_tests(document)
def test_generation_6(self):
document = self.new_document()
document.generation(
EX_NS['e1'], activity=EX_NS['a1'], time=datetime.datetime.now()
)
self.do_tests(document)
def test_generation_7(self):
document = self.new_document()
a = document.generation(EX_NS['e1'],
activity=EX_NS['a1'],
time=datetime.datetime.now())
a.add_attributes([(PROV_ROLE, 'somerole')])
self.add_types(a)
self.add_locations(a)
self.add_labels(a)
self.add_further_attributes(a)
self.do_tests(document)
# USAGE
def test_usage_1(self):
document = self.new_document()
document.usage(
None, entity=EX_NS['e1'], identifier=EX_NS['use1']
)
self.do_tests(document)
def test_usage_2(self):
document = self.new_document()
document.usage(
EX_NS['a1'], entity=EX_NS['e1'], identifier=EX_NS['use2']
)
self.do_tests(document)
def test_usage_3(self):
document = self.new_document()
use = document.usage(
EX_NS['a1'], entity=EX_NS['e1'], identifier=EX_NS['use3']
)
use.add_attributes([
(PROV_ROLE, "somerole"),
(PROV_ROLE, "otherRole")
])
self.do_tests(document)
def test_usage_4(self):
document = self.new_document()
use = document.usage(EX_NS['a1'],
entity=EX_NS['e1'],
identifier=EX_NS['use4'],
time=datetime.datetime.now())
use.add_attributes([
(PROV_ROLE, "somerole")
])
self.do_tests(document)
def test_usage_5(self):
document = self.new_document()
use = document.usage(EX_NS['a1'],
entity=EX_NS['e1'],
identifier=EX_NS['use5'],
time=datetime.datetime.now())
use.add_attributes([
(PROV_ROLE, "somerole")
])
self.add_types(use)
self.add_locations(use)
self.add_labels(use)
self.add_further_attributes(use)
self.do_tests(document)
def test_usage_6(self):
document = self.new_document()
document.usage(EX_NS['a1'], entity=EX_NS['e1'])
self.do_tests(document)
def test_usage_7(self):
document = self.new_document()
use = document.usage(EX_NS['a1'],
entity=EX_NS['e1'],
time=datetime.datetime.now())
use.add_attributes([
(PROV_ROLE, "somerole")
])
self.add_types(use)
self.add_locations(use)
self.add_labels(use)
self.add_further_attributes(use)
self.do_tests(document)
# INVALIDATIONS
def test_invalidation_1(self):
document = self.new_document()
document.invalidation(EX_NS['e1'], identifier=EX_NS['inv1'])
self.do_tests(document)
def test_invalidation_2(self):
document = self.new_document()
document.invalidation(
EX_NS['e1'], identifier=EX_NS['inv2'], activity=EX_NS['a1']
)
self.do_tests(document)
def test_invalidation_3(self):
document = self.new_document()
inv = document.invalidation(
EX_NS['e1'], identifier=EX_NS['inv3'], activity=EX_NS['a1']
)
inv.add_attributes([
(PROV_ROLE, "someRole"),
(PROV_ROLE, "otherRole"),
])
self.do_tests(document)
def test_invalidation_4(self):
document = self.new_document()
inv = document.invalidation(EX_NS['e1'],
identifier=EX_NS['inv4'],
activity=EX_NS['a1'],
time=datetime.datetime.now())
inv.add_attributes([
(PROV_ROLE, "someRole"),
])
self.do_tests(document)
def test_invalidation_5(self):
document = self.new_document()
inv = document.invalidation(EX_NS['e1'],
identifier=EX_NS['inv5'],
activity=EX_NS['a1'],
time=datetime.datetime.now())
inv.add_attributes([
(PROV_ROLE, "someRole"),
])
self.add_types(inv)
self.add_locations(inv)
self.add_labels(inv)
self.add_further_attributes(inv)
self.do_tests(document)
def test_invalidation_6(self):
document = self.new_document()
document.invalidation(EX_NS['e1'], activity=EX_NS['a1'])
self.do_tests(document)
def test_invalidation_7(self):
document = self.new_document()
inv = document.invalidation(EX_NS['e1'],
activity=EX_NS['a1'],
time=datetime.datetime.now())
inv.add_attributes([
(PROV_ROLE, "someRole"),
])
self.add_types(inv)
self.add_locations(inv)
self.add_labels(inv)
self.add_further_attributes(inv)
self.do_tests(document)
# STARTS
def test_start_1(self):
document = self.new_document()
document.start(None, trigger=EX_NS['e1'], identifier=EX_NS['start1'])
self.do_tests(document)
def test_start_2(self):
document = self.new_document()
document.start(
EX_NS['a1'], trigger=EX_NS['e1'], identifier=EX_NS['start2']
)
self.do_tests(document)
def test_start_3(self):
document = self.new_document()
document.start(EX_NS['a1'], identifier=EX_NS['start3'])
self.do_tests(document)
def test_start_4(self):
document = self.new_document()
document.start(
None, trigger=EX_NS['e1'], identifier=EX_NS['start4'],
starter=EX_NS['a2']
)
self.do_tests(document)
def test_start_5(self):
document = self.new_document()
document.start(
EX_NS['a1'], trigger=EX_NS['e1'],
identifier=EX_NS['start5'], starter=EX_NS['a2']
)
self.do_tests(document)
def test_start_6(self):
document = self.new_document()
document.start(
EX_NS['a1'], identifier=EX_NS['start6'], starter=EX_NS['a2']
)
self.do_tests(document)
def test_start_7(self):
document = self.new_document()
document.start(
EX_NS['a1'], identifier=EX_NS['start7'],
starter=EX_NS['a2'], time=datetime.datetime.now()
)
self.do_tests(document)
def test_start_8(self):
document = self.new_document()
start = document.start(EX_NS['a1'],
identifier=EX_NS['start8'],
starter=EX_NS['a2'],
time=datetime.datetime.now())
start.add_attributes([
(PROV_ROLE, "egg-cup"),
(PROV_ROLE, "boiling-water"),
])
self.add_types(start)
self.add_locations(start)
self.add_labels(start)
self.add_further_attributes(start)
self.do_tests(document)
def test_start_9(self):
document = self.new_document()
document.start(EX_NS['a1'], trigger=EX_NS['e1'])
self.do_tests(document)
def test_start_10(self):
document = self.new_document()
start = document.start(EX_NS['a1'],
starter=EX_NS['a2'],
time=datetime.datetime.now())
start.add_attributes([
(PROV_ROLE, "egg-cup"),
(PROV_ROLE, "boiling-water"),
])
self.add_types(start)
self.add_locations(start)
self.add_labels(start)
self.add_further_attributes(start)
self.do_tests(document)
# ENDS
def test_end_1(self):
document = self.new_document()
document.end(None, trigger=EX_NS['e1'], identifier=EX_NS['end1'])
self.do_tests(document)
def test_end_2(self):
document = self.new_document()
document.end(
EX_NS['a1'], trigger=EX_NS['e1'], identifier=EX_NS['end2']
)
self.do_tests(document)
def test_end_3(self):
document = self.new_document()
document.end(EX_NS['a1'], identifier=EX_NS['end3'])
self.do_tests(document)
def test_end_4(self):
document = self.new_document()
document.end(
None, trigger=EX_NS['e1'], identifier=EX_NS['end4'],
ender=EX_NS['a2']
)
self.do_tests(document)
def test_end_5(self):
document = self.new_document()
document.end(
EX_NS['a1'], trigger=EX_NS['e1'], identifier=EX_NS['end5'],
ender=EX_NS['a2']
)
self.do_tests(document)
def test_end_6(self):
document = self.new_document()
document.end(EX_NS['a1'], identifier=EX_NS['end6'], ender=EX_NS['a2'])
self.do_tests(document)
def test_end_7(self):
document = self.new_document()
document.end(
EX_NS['a1'], identifier=EX_NS['end7'], ender=EX_NS['a2'],
time=datetime.datetime.now()
)
self.do_tests(document)
def test_end_8(self):
document = self.new_document()
end = document.end(EX_NS['a1'],
identifier=EX_NS['end8'],
ender=EX_NS['a2'],
time=datetime.datetime.now())
end.add_attributes([
(PROV_ROLE, "egg-cup"),
(PROV_ROLE, "boiling-water"),
])
self.add_types(end)
self.add_locations(end)
self.add_labels(end)
self.add_further_attributes(end)
self.do_tests(document)
def test_end_9(self):
document = self.new_document()
document.end(EX_NS['a1'], trigger=EX_NS['e1'])
self.do_tests(document)
def test_end_10(self):
document = self.new_document()
end = document.end(EX_NS['a1'],
ender=EX_NS['a2'],
time=datetime.datetime.now())
end.add_attributes([
(PROV_ROLE, "yolk"),
(PROV_ROLE, "white"),
])
self.add_types(end)
self.add_locations(end)
self.add_labels(end)
self.add_further_attributes(end)
self.do_tests(document)
# DERIVATIONS
def test_derivation_1(self):
document = self.new_document()
document.derivation(
None, usedEntity=EX_NS['e1'], identifier=EX_NS['der1']
)
self.do_tests(document)
def test_derivation_2(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=None, identifier=EX_NS['der2']
)
self.do_tests(document)
def test_derivation_3(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'], identifier=EX_NS['der3']
)
self.do_tests(document)
def test_derivation_4(self):
document = self.new_document()
der = document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'], identifier=EX_NS['der4']
)
self.add_label(der)
self.do_tests(document)
def test_derivation_5(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['der5'], activity=EX_NS['a']
)
self.do_tests(document)
def test_derivation_6(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['der6'], activity=EX_NS['a'],
usage=EX_NS['u']
)
self.do_tests(document)
def test_derivation_7(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['der7'], activity=EX_NS['a'],
usage=EX_NS['u'], generation=EX_NS['g']
)
self.do_tests(document)
def test_derivation_8(self):
document = self.new_document()
der = document.derivation(EX_NS['e2'],
usedEntity=EX_NS['e1'],
identifier=EX_NS['der8'])
self.add_label(der)
self.add_types(der)
self.add_further_attributes(der)
self.do_tests(document)
def test_derivation_9(self):
document = self.new_document()
der = document.derivation(EX_NS['e2'], usedEntity=None)
self.add_types(der)
self.do_tests(document)
def test_derivation_10(self):
document = self.new_document()
document.derivation(
EX_NS['e2'], usedEntity=EX_NS['e1'],
activity=EX_NS['a'], usage=EX_NS['u'],
generation=EX_NS['g']
)
self.do_tests(document)
def test_derivation_11(self):
document = self.new_document()
document.revision(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['rev1'], activity=EX_NS['a'],
usage=EX_NS['u'], generation=EX_NS['g']
)
self.do_tests(document)
def test_derivation_12(self):
document = self.new_document()
document.quotation(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['quo1'], activity=EX_NS['a'],
usage=EX_NS['u'], generation=EX_NS['g']
)
self.do_tests(document)
def test_derivation_13(self):
document = self.new_document()
document.primary_source(
EX_NS['e2'], usedEntity=EX_NS['e1'],
identifier=EX_NS['prim1'], activity=EX_NS['a'],
usage=EX_NS['u'], generation=EX_NS['g']
)
self.do_tests(document)
# ASSOCIATIONS
def test_association_1(self):
document = self.new_document()
document.association(EX_NS['a1'], identifier=EX_NS['assoc1'])
self.do_tests(document)
def test_association_2(self):
document = self.new_document()
document.association(
None, agent=EX_NS['ag1'], identifier=EX_NS['assoc2']
)
self.do_tests(document)
def test_association_3(self):
document = self.new_document()
document.association(
EX_NS['a1'], agent=EX_NS['ag1'], identifier=EX_NS['assoc3']
)
self.do_tests(document)
def test_association_4(self):
document = self.new_document()
document.association(
EX_NS['a1'], agent=EX_NS['ag1'],
identifier=EX_NS['assoc4'], plan=EX_NS['plan1']
)
self.do_tests(document)
def test_association_5(self):
document = self.new_document()
document.association(EX_NS['a1'], agent=EX_NS['ag1'])
self.do_tests(document)
def test_association_6(self):
document = self.new_document()
assoc = document.association(EX_NS['a1'],
agent=EX_NS['ag1'],
identifier=EX_NS['assoc6'],
plan=EX_NS['plan1'])
self.add_labels(assoc)
self.do_tests(document)
def test_association_7(self):
document = self.new_document()
assoc = document.association(EX_NS['a1'],
agent=EX_NS['ag1'],
identifier=EX_NS['assoc7'],
plan=EX_NS['plan1'])
self.add_labels(assoc)
self.add_types(assoc)
self.do_tests(document)
def test_association_8(self):
document = self.new_document()
assoc = document.association(EX_NS['a1'],
agent=EX_NS['ag1'],
identifier=EX_NS['assoc8'],
plan=EX_NS['plan1'])
assoc.add_attributes([
(PROV_ROLE, "figroll"),
(PROV_ROLE, "sausageroll"),
])
self.do_tests(document)
def test_association_9(self):
document = self.new_document()
assoc = document.association(EX_NS['a1'],
agent=EX_NS['ag1'],
identifier=EX_NS['assoc9'],
plan=EX_NS['plan1'])
self.add_labels(assoc)
self.add_types(assoc)
self.add_further_attributes(assoc)
self.do_tests(document)
def test_association_10(self):
document = self.new_document()
assoc1 = document.association(EX_NS['a1'],
agent=EX_NS['ag1'],
identifier=EX_NS['assoc10a'])
assoc1.add_attributes([
(PROV_ROLE, "figroll"),
])
assoc2 = document.association(EX_NS['a1'],
agent=EX_NS['ag2'],
identifier=EX_NS['assoc10b'])
assoc2.add_attributes([
(PROV_ROLE, "sausageroll"),
])
self.do_tests(document)
# ATTRIBUTIONS
def test_attribution_1(self):
document = self.new_document()
document.attribution(
EX_NS['e1'], None, identifier=EX_NS['attr1']
)
self.do_tests(document)
def test_attribution_2(self):
document = self.new_document()
document.attribution(
None, EX_NS['ag1'], identifier=EX_NS['attr2']
)
self.do_tests(document)
def test_attribution_3(self):
document = self.new_document()
document.attribution(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['attr3']
)
self.do_tests(document)
def test_attribution_4(self):
document = self.new_document()
document.attribution(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['attr4']
)
self.do_tests(document)
def test_attribution_5(self):
document = self.new_document()
document.attribution(EX_NS['e1'], EX_NS['ag1'])
self.do_tests(document)
def test_attribution_6(self):
document = self.new_document()
attr = document.attribution(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['attr6']
)
self.add_labels(attr)
self.do_tests(document)
def test_attribution_7(self):
document = self.new_document()
attr = document.attribution(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['attr7']
)
self.add_labels(attr)
self.add_types(attr)
self.do_tests(document)
def test_attribution_8(self):
document = self.new_document()
attr = document.attribution(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['attr8']
)
self.add_labels(attr)
self.add_types(attr)
self.add_further_attributes(attr)
self.do_tests(document)
# DELEGATIONS
def test_delegation_1(self):
document = self.new_document()
document.delegation(
EX_NS['e1'], None, identifier=EX_NS['dele1']
)
self.do_tests(document)
def test_delegation_2(self):
document = self.new_document()
document.delegation(
None, EX_NS['ag1'], identifier=EX_NS['dele2']
)
self.do_tests(document)
def test_delegation_3(self):
document = self.new_document()
document.delegation(
EX_NS['e1'], EX_NS['ag1'], identifier=EX_NS['dele3']
)
self.do_tests(document)
def test_delegation_4(self):
document = self.new_document()
document.delegation(
EX_NS['e1'], EX_NS['ag1'],
activity=EX_NS['a1'], identifier=EX_NS['dele4']
)
self.do_tests(document)
def test_delegation_5(self):
document = self.new_document()
document.delegation(EX_NS['e1'], EX_NS['ag1'])
self.do_tests(document)
def test_delegation_6(self):
document = self.new_document()
dele = document.delegation(EX_NS['e1'],
EX_NS['ag1'],
activity=EX_NS['a1'],
identifier=EX_NS['dele6'])
self.add_labels(dele)
self.do_tests(document)
def test_delegation_7(self):
document = self.new_document()
dele = document.delegation(EX_NS['e1'],
EX_NS['ag1'],
activity=EX_NS['a1'],
identifier=EX_NS['dele7'])
self.add_labels(dele)
self.add_types(dele)
self.do_tests(document)
def test_delegation_8(self):
document = self.new_document()
dele = document.delegation(EX_NS['e1'],
EX_NS['ag1'],
activity=EX_NS['a1'],
identifier=EX_NS['dele8'])
self.add_labels(dele)
self.add_types(dele)
self.add_further_attributes(dele)
self.do_tests(document)
# COMMUNICATIONS
def test_communication_1(self):
document = self.new_document()
document.communication(
EX_NS['a2'], None, identifier=EX_NS['inf1']
)
self.do_tests(document)
def test_communication_2(self):
document = self.new_document()
document.communication(None, EX_NS['a1'], identifier=EX_NS['inf2'])
self.do_tests(document)
def test_communication_3(self):
document = self.new_document()
document.communication(
EX_NS['a2'], EX_NS['a1'], identifier=EX_NS['inf3']
)
self.do_tests(document)
def test_communication_4(self):
document = self.new_document()
document.communication(EX_NS['a2'], EX_NS['a1'])
self.do_tests(document)
def test_communication_5(self):
document = self.new_document()
inf = document.communication(
EX_NS['a2'], EX_NS['a1'], identifier=EX_NS['inf5']
)
self.add_labels(inf)
self.do_tests(document)
def test_communication_6(self):
document = self.new_document()
inf = document.communication(EX_NS['a2'], EX_NS['a1'],
identifier=EX_NS['inf6'])
self.add_labels(inf)
self.add_types(inf)
self.do_tests(document)
def test_communication_7(self):
document = self.new_document()
inf = document.communication(EX_NS['a2'], EX_NS['a1'],
identifier=EX_NS['inf7'])
self.add_labels(inf)
self.add_types(inf)
self.add_further_attributes(inf)
self.do_tests(document)
# INFLUENCES
def test_influence_1(self):
document = self.new_document()
document.influence(EX_NS['a2'], None, identifier=EX_NS['inf1'])
self.do_tests(document)
def test_influence_2(self):
document = self.new_document()
document.influence(None, EX_NS['a1'], identifier=EX_NS['inf2'])
self.do_tests(document)
def test_influence_3(self):
document = self.new_document()
document.influence(EX_NS['a2'], EX_NS['a1'], identifier=EX_NS['inf3'])
self.do_tests(document)
def test_influence_4(self):
document = self.new_document()
document.influence(EX_NS['a2'], EX_NS['a1'])
self.do_tests(document)
def test_influence_5(self):
document = self.new_document()
inf = document.influence(EX_NS['a2'], EX_NS['a1'],
identifier=EX_NS['inf5'])
self.add_labels(inf)
self.do_tests(document)
def test_influence_6(self):
document = self.new_document()
inf = document.influence(EX_NS['a2'], EX_NS['a1'],
identifier=EX_NS['inf6'])
self.add_labels(inf)
self.add_types(inf)
self.do_tests(document)
def test_influence_7(self):
document = self.new_document()
inf = document.influence(EX_NS['a2'], EX_NS['a1'],
identifier=EX_NS['inf7'])
self.add_labels(inf)
self.add_types(inf)
self.add_further_attributes(inf)
self.do_tests(document)
# OTHERS
def test_alternate_1(self):
document = self.new_document()
document.alternate(EX_NS['e2'], EX_NS['e1'])
self.do_tests(document)
def test_specialization_1(self):
document = self.new_document()
document.specialization(EX_NS['e2'], EX_NS['e1'])
self.do_tests(document)
def test_mention_1(self):
document = self.new_document()
document.mention(EX_NS['e2'], EX_NS['e1'], None)
self.do_tests(document)
def test_mention_2(self):
document = self.new_document()
document.mention(EX_NS['e2'], EX_NS['e1'], EX_NS['b'])
self.do_tests(document)
def test_membership_1(self):
document = self.new_document()
document.membership(EX_NS['c'], EX_NS['e1'])
self.do_tests(document)
def test_membership_2(self):
document = self.new_document()
document.membership(EX_NS['c'], EX_NS['e1'])
document.membership(EX_NS['c'], EX_NS['e2'])
self.do_tests(document)
def test_membership_3(self):
document = self.new_document()
document.membership(EX_NS['c'], EX_NS['e1'])
document.membership(EX_NS['c'], EX_NS['e2'])
document.membership(EX_NS['c'], EX_NS['e3'])
self.do_tests(document)
# SCRUFFY
def test_scruffy_generation_1(self):
document = self.new_document()
document.generation(
EX_NS['e1'], EX_NS['a1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now()
)
document.generation(
EX_NS['e1'], EX_NS['a1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse("2012-12-03T21:08:16.686Z")
)
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_generation_2(self):
document = self.new_document()
gen1 = document.generation(EX_NS['e1'],
EX_NS['a1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now())
gen2 = document.generation(EX_NS['e1'],
EX_NS['a1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"))
gen1.add_attributes([
(EX_NS['tag2'], "hello-scruff-gen2")
])
gen2.add_attributes([
(EX_NS['tag2'], "hi-scruff-gen2")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_invalidation_1(self):
document = self.new_document()
document.invalidation(
EX_NS['e1'], EX_NS['a1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now()
)
document.invalidation(
EX_NS['e1'], EX_NS['a1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse("2012-12-03T21:08:16.686Z")
)
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_invalidation_2(self):
document = self.new_document()
inv1 = document.invalidation(EX_NS['e1'],
EX_NS['a1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now())
inv2 = document.invalidation(EX_NS['e1'],
EX_NS['a1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"))
inv1.add_attributes([
(EX_NS['tag2'], "hello")
])
inv2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_usage_1(self):
document = self.new_document()
document.usage(
EX_NS['a1'], EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now()
)
document.usage(
EX_NS['a1'], EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse("2012-12-03T21:08:16.686Z")
)
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_usage_2(self):
document = self.new_document()
use1 = document.usage(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now())
use2 = document.usage(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"))
use1.add_attributes([
(EX_NS['tag2'], "hello")
])
use2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_start_1(self):
document = self.new_document()
document.start(
EX_NS['a1'], EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now()
)
document.start(
EX_NS['a1'], EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse("2012-12-03T21:08:16.686Z")
)
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_start_2(self):
document = self.new_document()
start1 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now())
start2 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"))
start1.add_attributes([
(EX_NS['tag2'], "hello")
])
start2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_start_3(self):
document = self.new_document()
start1 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now(),
starter=EX_NS['a1s'])
start2 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"),
starter=EX_NS['a2s'])
start1.add_attributes([
(EX_NS['tag2'], "hello")
])
start2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
document.activity(identifier=EX_NS['a2'])
document.activity(identifier=EX_NS['a2s'])
self.do_tests(document)
def test_scruffy_start_4(self):
document = self.new_document()
start1 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now(),
starter=EX_NS['a1s'])
start2 = document.start(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"),
starter=EX_NS['a2s'])
start1.add_attributes([
(EX_NS['tag2'], "hello")
])
start2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
document.activity(identifier=EX_NS['a1s'])
document.activity(identifier=EX_NS['a2'])
document.activity(identifier=EX_NS['a2s'])
self.do_tests(document)
def test_scruffy_end_1(self):
document = self.new_document()
document.end(
EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now()
)
document.end(
EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse("2012-12-03T21:08:16.686Z")
)
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_end_2(self):
document = self.new_document()
end1 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now())
end2 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"))
end1.add_attributes([
(EX_NS['tag2'], "hello")
])
end2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
self.do_tests(document)
def test_scruffy_end_3(self):
document = self.new_document()
end1 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now(),
ender=EX_NS['a1s'])
end2 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"),
ender=EX_NS['a2s'])
end1.add_attributes([
(EX_NS['tag2'], "hello")
])
end2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
document.activity(identifier=EX_NS['a2'])
document.activity(identifier=EX_NS['a2s'])
self.do_tests(document)
def test_scruffy_end_4(self):
document = self.new_document()
end1 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=datetime.datetime.now(),
ender=EX_NS['a1s'])
end2 = document.end(EX_NS['a1'],
EX_NS['e1'],
identifier=EX_NS['gen1'],
time=dateutil.parser.parse(
"2012-12-03T21:08:16.686Z"),
ender=EX_NS['a2s'])
end1.add_attributes([
(EX_NS['tag2'], "hello")
])
end2.add_attributes([
(EX_NS['tag2'], "hi")
])
document.entity(identifier=EX_NS['e1'])
document.activity(identifier=EX_NS['a1'])
document.activity(identifier=EX_NS['a1s'])
document.activity(identifier=EX_NS['a2'])
document.activity(identifier=EX_NS['a2s'])
self.do_tests(document)
def test_bundle_1(self):
document = self.new_document()
bundle1 = ProvBundle(identifier=EX_NS['bundle1'])
bundle1.usage(activity=EX_NS['a1'], entity=EX_NS['e1'],
identifier=EX_NS['use1'])
bundle1.entity(identifier=EX_NS['e1'])
bundle1.activity(identifier=EX_NS['a1'])
bundle2 = ProvBundle(identifier=EX_NS['bundle2'])
bundle2.usage(activity=EX_NS['aa1'], entity=EX_NS['ee1'],
identifier=EX_NS['use2'])
bundle2.entity(identifier=EX_NS['ee1'])
bundle2.activity(identifier=EX_NS['aa1'])
document.add_bundle(bundle1)
document.add_bundle(bundle2)
self.do_tests(document)
def test_bundle_2(self):
document = self.new_document()
bundle1 = ProvBundle(identifier=EX_NS['bundle1'])
bundle1.usage(activity=EX_NS['a1'], entity=EX_NS['e1'],
identifier=EX_NS['use1'])
bundle1.entity(identifier=EX_NS['e1'])
bundle1.activity(identifier=EX_NS['a1'])
bundle2 = ProvBundle(identifier=EX_NS['bundle2'])
bundle2.usage(activity=EX_NS['a1'], entity=EX_NS['e1'],
identifier=EX_NS['use2'])
bundle2.entity(identifier=EX_NS['e1'])
bundle2.activity(identifier=EX_NS['a1'])
document.add_bundle(bundle1)
document.add_bundle(bundle2)
self.do_tests(document)
def test_bundle_3(self):
document = self.new_document()
bundle1 = ProvBundle(identifier=EX_NS['bundle1'])
bundle1.usage(activity=EX_NS['a1'], entity=EX_NS['e1'],
identifier=EX_NS['use1'])
bundle1.entity(identifier=EX_NS['e1'])
bundle1.activity(identifier=EX_NS['a1'])
bundle2 = ProvBundle(identifier=EX_NS['bundle2'])
bundle2.usage(activity=EX_NS['aa1'], entity=EX_NS['ee1'],
identifier=EX_NS['use2'])
bundle2.entity(identifier=EX_NS['ee1'])
bundle2.activity(identifier=EX_NS['aa1'])
document.add_bundle(bundle1)
document.add_bundle(bundle2)
self.do_tests(document)
def test_bundle_4(self):
document = self.new_document()
bundle1 = ProvBundle(identifier=EX_NS['bundle1'])
bundle1.usage(activity=EX_NS['a1'], entity=EX_NS['e1'],
identifier=EX_NS['use1'])
bundle1.entity(identifier=EX_NS['e1'])
bundle1.activity(identifier=EX_NS['a1'])
bundle2 = ProvBundle(identifier=EX_NS['bundle2'])
bundle2.usage(activity=EX2_NS['aa1'], entity=EX2_NS['ee1'],
identifier=EX2_NS['use2'])
bundle2.entity(identifier=EX2_NS['ee1'])
bundle2.activity(identifier=EX2_NS['aa1'])
document.add_bundle(bundle1)
document.add_bundle(bundle2)
self.do_tests(document)
prov-1.5.2/prov/tests/test_json.py 0000644 0000765 0000000 00000001661 13236423634 017126 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import unittest
from prov.model import ProvDocument
from prov.tests.utility import RoundTripTestCase
from prov.tests.test_model import AllTestsBase
import logging
logger = logging.getLogger(__name__)
class TestJSONSerializer(unittest.TestCase):
def test_decoding_unicode_value(self):
unicode_char = u'\u2019'
json_content = u'''{
"prefix": {
"ex": "http://www.example.org"
},
"entity": {
"ex:unicode_char": {
"prov:label": "%s"
}
}
}''' % unicode_char
prov_doc = ProvDocument.deserialize(
content=json_content, format='json'
)
e1 = prov_doc.get_record('ex:unicode_char')[0]
self.assertIn(unicode_char, e1.get_attribute('prov:label'))
class RoundTripJSONTests(RoundTripTestCase, AllTestsBase):
FORMAT = 'json'
prov-1.5.2/prov/tests/test_rdf.py 0000644 0000765 0000000 00000022156 13236423634 016732 0 ustar tdh wheel 0000000 0000000 from __future__ import (absolute_import, division, print_function,
unicode_literals)
import unittest
from prov.model import ProvDocument
from prov.tests.utility import RoundTripTestCase
from prov.tests.test_model import (TestStatementsBase,
TestAttributesBase, TestQualifiedNamesBase)
import os
from glob import glob
import logging
logger = logging.getLogger(__name__)
from prov.tests import examples
import prov.model as pm
import rdflib as rl
from rdflib.compare import graph_diff
from io import BytesIO, StringIO
def find_diff(g_rdf, g0_rdf):
graphs_equal = True
in_both, in_first, in_second = graph_diff(g_rdf, g0_rdf)
g1 = sorted(in_first.serialize(format='nt').splitlines())[1:]
g2 = sorted(in_second.serialize(format='nt').splitlines())[1:]
# Compare literals
if len(g1) != len(g2):
graphs_equal = False
matching_indices = [[], []]
for idx in range(len(g1)):
g1_stmt = list(rl.ConjunctiveGraph().parse(BytesIO(g1[idx]),
format='nt'))[0]
match_found = False
for idx2 in range(len(g2)):
if idx2 in matching_indices[1]:
continue
g2_stmt = list(rl.ConjunctiveGraph().parse(BytesIO(g2[idx2]),
format='nt'))[0]
try:
all_match = all([g1_stmt[i].eq(g2_stmt[i]) for i in range(3)])
except TypeError as e:
#logger.info(e, g1_stmt, g2_stmt)
all_match = False
if all_match:
matching_indices[0].append(idx)
matching_indices[1].append(idx2)
match_found = True
break
if not match_found:
graphs_equal = False
in_first2 = rl.ConjunctiveGraph()
for idx in range(len(g1)):
if idx in matching_indices[0]:
in_both.parse(BytesIO(g1[idx]), format='nt')
else:
in_first2.parse(BytesIO(g1[idx]), format='nt')
in_second2 = rl.ConjunctiveGraph()
for idx in range(len(g2)):
if not idx in matching_indices[1]:
in_second2.parse(BytesIO(g2[idx]), format='nt')
#logger.info(in_first2)
#logger.info(in_second2)
return graphs_equal, in_both, in_first2, in_second2
class TestExamplesBase(object):
"""This is the base class for testing support for all the examples provided
in prov.tests.examples.
It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
def test_all_examples(self):
counter = 0
for name, graph in examples.tests:
if name in ['datatypes']:
logger.info('%d. Skipping the %s example', counter, name)
continue
counter += 1
logger.info('%d. Testing the %s example', counter, name)
g = graph()
self.do_tests(g)
class TestJSONExamplesBase(object):
"""This is the base class for testing support for all the examples provided
in prov.tests.examples.
It is not runnable and needs to be included in a subclass of
RoundTripTestCase.
"""
def test_all_examples(self):
counter = 0
for name, graph in examples.tests:
if name in ['datatypes']:
logger.info('%d. Skipping the %s example', counter, name)
continue
counter += 1
logger.info('%d. Testing the %s example', counter, name)
g = graph()
self.do_tests(g)
class TestStatementsBase2(TestStatementsBase):
@unittest.expectedFailure
def test_scruffy_end_1(self):
TestStatementsBase.test_scruffy_end_1()
@unittest.expectedFailure
def test_scruffy_end_2(self):
TestStatementsBase.test_scruffy_end_2()
@unittest.expectedFailure
def test_scruffy_end_3(self):
TestStatementsBase.test_scruffy_end_3()
@unittest.expectedFailure
def test_scruffy_end_4(self):
TestStatementsBase.test_scruffy_end_4()
@unittest.expectedFailure
def test_scruffy_generation_1(self):
TestStatementsBase.test_scruffy_generation_1()
@unittest.expectedFailure
def test_scruffy_generation_2(self):
TestStatementsBase.test_scruffy_generation_2()
@unittest.expectedFailure
def test_scruffy_invalidation_1(self):
TestStatementsBase.test_scruffy_invalidation_1()
@unittest.expectedFailure
def test_scruffy_invalidation_2(self):
TestStatementsBase.test_scruffy_invalidation_2()
@unittest.expectedFailure
def test_scruffy_start_1(self):
TestStatementsBase.test_scruffy_start_1()
@unittest.expectedFailure
def test_scruffy_start_2(self):
TestStatementsBase.test_scruffy_start_2()
@unittest.expectedFailure
def test_scruffy_start_3(self):
TestStatementsBase.test_scruffy_start_3()
@unittest.expectedFailure
def test_scruffy_start_4(self):
TestStatementsBase.test_scruffy_start_4()
@unittest.expectedFailure
def test_scruffy_usage_1(self):
TestStatementsBase.test_scruffy_usage_1()
@unittest.expectedFailure
def test_scruffy_usage_2(self):
TestStatementsBase.test_scruffy_usage_2()
class TestAttributesBase2(TestAttributesBase):
@unittest.expectedFailure
def test_entity_with_multiple_attribute(self):
TestAttributesBase.test_entity_with_multiple_attribute()
@unittest.expectedFailure
def test_entity_with_multiple_value_attribute(self):
TestAttributesBase.test_entity_with_multiple_value_attribute()
@unittest.expectedFailure
def test_entity_with_one_type_attribute_8(self):
TestAttributesBase.test_entity_with_one_type_attribute_8()
class AllTestsBase(TestExamplesBase,
TestStatementsBase2,
TestQualifiedNamesBase,
TestAttributesBase2
):
"""This is a test to include all available tests.
"""
pass
class TestRDFSerializer(unittest.TestCase):
def test_decoding_unicode_value(self):
unicode_char = u'\u2019'
rdf_content = u'''
@prefix ex: .
@prefix prov: .
@prefix rdf: .
@prefix rdfs: .
@prefix xml: .
@prefix xsd: .
ex:unicode_char a prov:Entity ;
rdfs:label "%s"^^xsd:string .
''' % unicode_char
prov_doc = ProvDocument.deserialize(content=rdf_content,
format='rdf', rdf_format='turtle')
e1 = prov_doc.get_record('ex:unicode_char')[0]
self.assertIn(unicode_char, e1.get_attribute('prov:label'))
def test_json_to_ttl_match(self):
json_files = sorted(
glob(os.path.join(os.path.dirname(__file__), 'json', '*.json')))
# invalid round trip files
skip = list(range(352, 380))
# invalid literal set representation e.g., set((1, True))
skip_match = [5, 6, 7, 8, 15, 27, 28, 29, 75, 76, 77, 78, 79, 80, 260,
261, 262, 263, 264,
306, 313, 315, 317, 322, 323, 324, 325, 330, 332, 344,
346, 382, 389, 395, 397,
]
errors = []
for idx, fname in enumerate(json_files):
_, ttl_file = os.path.split(fname)
ttl_file = os.path.join(os.path.dirname(__file__), 'rdf',
ttl_file.replace('json', 'ttl'))
try:
g = pm.ProvDocument.deserialize(fname)
if len(g.bundles) == 0:
format = 'turtle'
else:
format = 'trig'
if format == 'trig':
ttl_file = ttl_file.replace('ttl', 'trig')
with open(ttl_file, 'rb') as fp:
g_rdf = rl.ConjunctiveGraph().parse(fp, format=format)
g0_rdf = rl.ConjunctiveGraph().parse(
StringIO(g.serialize(format='rdf', rdf_format=format)),
format=format)
if idx not in skip_match:
match, _, in_first, in_second = find_diff(g_rdf, g0_rdf)
self.assertTrue(match)
else:
logger.info('Skipping match: %s' % fname)
if idx in skip:
logger.info('Skipping deserialization: %s' % fname)
continue
g1 = pm.ProvDocument.deserialize(
content=g.serialize(format='rdf', rdf_format=format),
format='rdf', rdf_format=format)
except Exception as e:
#logger.info(e)
errors.append((e, idx, fname, in_first, in_second))
self.assertFalse(errors)
class RoundTripRDFTests(RoundTripTestCase, AllTestsBase):
FORMAT = 'rdf'
if __name__ == "__main__":
suite = unittest.TestSuite()
for method in dir(TestRDFSerializer):
if method.startswith("test"):
suite.addTest(TestRDFSerializer(method))
unittest.TextTestRunner().run(suite) prov-1.5.2/prov/tests/rdf/ 0000755 0000765 0000000 00000000000 13236426126 015312 5 ustar tdh wheel 0000000 0000000 prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr16.ttl 0000644 0000765 0000000 00000000505 13236423634 024340 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l16 a prov:Entity ;
prov:atLocation "10"^^xsd:nonNegativeInteger .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr43.ttl 0000644 0000765 0000000 00000000452 13236423634 022451 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et43 a prov:Entity , "NCName"^^xsd:NCName .
prov-1.5.2/prov/tests/rdf/association2.ttl 0000644 0000765 0000000 00000000457 13236423634 020444 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:assoc2 a prov:Association ;
prov:agent ex:ag1 .
prov-1.5.2/prov/tests/rdf/scruffy-usage2-M.ttl 0000644 0000765 0000000 00000001064 13236423634 021100 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:use1 a prov:Usage ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedUsage ex:use1 .
ex:use1 prov:atTime "2014-06-23T12:28:52.654+01:00"^^xsd:dateTime ;
ex:tag2 "hello"^^xsd:string ;
prov:atTime "2012-12-03T21:08:16.686Z"^^xsd:dateTime ;
ex:tag2 "hi"^^xsd:string .
ex:a1 a prov:Activity .
ex:e1 a prov:Entity .
prov-1.5.2/prov/tests/rdf/attr_attribution0.ttl 0000644 0000765 0000000 00000031456 13236423634 021527 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix ex2: .
@prefix pre_0: .
@prefix rdfs: .
@prefix rdf: .
@prefix xsd: .
@prefix ex4: .
ex2:assoc0 a prov:Attribution ;
prov:agent ex2:ag1 .
ex2:e1 prov:qualifiedAttribution ex2:assoc0 .
ex2:assoc0 a "un lieu"^^xsd:string , "un lieu"@fr , "a place"@en , "1"^^xsd:int , "1"^^xsd:long , "1"^^xsd:short , "2.0"^^xsd:double , "1.0"^^xsd:float , "10"^^xsd:decimal , "true"^^xsd:boolean , "false"^^xsd:boolean , "10"^^xsd:byte , "10"^^xsd:unsignedInt , "10"^^xsd:unsignedLong , "10"^^xsd:integer , "10"^^xsd:unsignedShort , "10"^^xsd:nonNegativeInteger , "-10"^^xsd:nonPositiveInteger , "10"^^xsd:positiveInteger , "10"^^xsd:unsignedByte , "http://example.org"^^xsd:anyURI , ex2:abc , ex2:abcd , ex2:abcde , pre_0:zabc , pre_0:zabcd , pre_0:zabcde , "2014-06-23T12:28:41.858+01:00"^^xsd:dateTime , "2013"^^xsd:gYear , "--01"^^xsd:gMonth , "---30"^^xsd:gDay , "--12-25"^^xsd:gMonthDay , "P0Y0M0DT0H0M12.225S"^^xsd:duration , "P2Y6M"^^xsd:yearMonthDuration , "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S"^^xsd:dayTimeDuration , "000102220506"^^xsd:hexBinary , "AAECIgUG"^^xsd:base64Binary , "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"^^xsd:base64Binary , "en"^^xsd:language , "normal"^^xsd:normalizedString , "TOK"^^xsd:token , "NMTOK"^^xsd:NMTOKEN , "name"^^xsd:Name , "NCName"^^xsd:NCName , ""^^rdf:XMLLiteral ;
rdfs:label "hello" , "bye"@en , "bonjour"@fr ;
ex2:tag2 "un lieu"^^xsd:string , "un lieu"@fr , "a place"@en , "1"^^xsd:int , "1"^^xsd:long , "1"^^xsd:short , "2.0"^^xsd:double , "1.0"^^xsd:float , "10"^^xsd:decimal , "true"^^xsd:boolean , "false"^^xsd:boolean , "10"^^xsd:byte , "10"^^xsd:unsignedInt , "10"^^xsd:unsignedLong , "10"^^xsd:integer , "10"^^xsd:unsignedShort , "10"^^xsd:nonNegativeInteger , "-10"^^xsd:nonPositiveInteger , "10"^^xsd:positiveInteger , "10"^^xsd:unsignedByte , "http://example.org"^^xsd:anyURI , ex2:abc , ex2:abcd , ex2:abcde , pre_0:zabcd , pre_0:zabcde , "2014-06-23T12:28:41.858+01:00"^^xsd:dateTime , "2013"^^xsd:gYear , "--01"^^xsd:gMonth , "---30"^^xsd:gDay , "--12-25"^^xsd:gMonthDay , "P0Y0M0DT0H0M12.225S"^^xsd:duration , "P2Y6M"^^xsd:yearMonthDuration , "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S"^^xsd:dayTimeDuration , "000102220506"^^xsd:hexBinary , "AAECIgUG"^^xsd:base64Binary , "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"^^xsd:base64Binary , "en"^^xsd:language , "normal"^^xsd:normalizedString , "TOK"^^xsd:token , "NMTOK"^^xsd:NMTOKEN , "name"^^xsd:Name , "NCName"^^xsd:NCName , ""^^rdf:XMLLiteral ;
ex2:tag3 "un lieu"^^xsd:string , "un lieu"@fr , "a place"@en , "1"^^xsd:int , "1"^^xsd:long , "1"^^xsd:short , "2.0"^^xsd:double , "1.0"^^xsd:float , "10"^^xsd:decimal , "true"^^xsd:boolean , "false"^^xsd:boolean , "10"^^xsd:byte , "10"^^xsd:unsignedInt , "10"^^xsd:unsignedLong , "10"^^xsd:integer , "10"^^xsd:unsignedShort , "10"^^xsd:nonNegativeInteger , "-10"^^xsd:nonPositiveInteger , "10"^^xsd:positiveInteger , "10"^^xsd:unsignedByte , "http://example.org"^^xsd:anyURI , ex2:abc , ex2:abcd , ex2:abcde , pre_0:zabc , pre_0:zabcd , pre_0:zabcde , "2014-06-23T12:28:41.858+01:00"^^xsd:dateTime , "2013"^^xsd:gYear , "--01"^^xsd:gMonth , "---30"^^xsd:gDay , "--12-25"^^xsd:gMonthDay , "P0Y0M0DT0H0M12.225S"^^xsd:duration , "P2Y6M"^^xsd:yearMonthDuration , "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S"^^xsd:dayTimeDuration , "000102220506"^^xsd:hexBinary , "AAECIgUG"^^xsd:base64Binary , "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"^^xsd:base64Binary , "en"^^xsd:language , "normal"^^xsd:normalizedString , "TOK"^^xsd:token , "NMTOK"^^xsd:NMTOKEN , "name"^^xsd:Name , "NCName"^^xsd:NCName , ""^^rdf:XMLLiteral ;
ex4:tag5 "un lieu"^^xsd:string , "un lieu"@fr , "a place"@en , "1"^^xsd:int , "1"^^xsd:long , "1"^^xsd:short , "2.0"^^xsd:double , "1.0"^^xsd:float , "10"^^xsd:decimal , "true"^^xsd:boolean , "false"^^xsd:boolean , "10"^^xsd:byte , "10"^^xsd:unsignedInt , "10"^^xsd:unsignedLong , "10"^^xsd:integer , "10"^^xsd:unsignedShort , "10"^^xsd:nonNegativeInteger , "-10"^^xsd:nonPositiveInteger , "10"^^xsd:positiveInteger , "10"^^xsd:unsignedByte , "http://example.org"^^xsd:anyURI , ex2:abcd , ex2:abcde , pre_0:zabcd , pre_0:zabcde , "2014-06-23T12:28:41.858+01:00"^^xsd:dateTime , "2013"^^xsd:gYear , "--01"^^xsd:gMonth , "---30"^^xsd:gDay , "--12-25"^^xsd:gMonthDay , "P0Y0M0DT0H0M12.225S"^^xsd:duration , "P2Y6M"^^xsd:yearMonthDuration , "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S"^^xsd:dayTimeDuration , "000102220506"^^xsd:hexBinary , "AAECIgUG"^^xsd:base64Binary , "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"^^xsd:base64Binary , "en"^^xsd:language , "normal"^^xsd:normalizedString , "TOK"^^xsd:token , "NMTOK"^^xsd:NMTOKEN , "name"^^xsd:Name , "NCName"^^xsd:NCName , ""^^rdf:XMLLiteral ;
ex4:tag4 "un lieu"^^xsd:string , "un lieu"@fr , "a place"@en , "1"^^xsd:int , "1"^^xsd:long , "1"^^xsd:short , "2.0"^^xsd:double , "1.0"^^xsd:float , "10"^^xsd:decimal , "true"^^xsd:boolean , "false"^^xsd:boolean , "10"^^xsd:byte , "10"^^xsd:unsignedInt , "10"^^xsd:unsignedLong , "10"^^xsd:integer , "10"^^xsd:unsignedShort , "10"^^xsd:nonNegativeInteger , "-10"^^xsd:nonPositiveInteger , "10"^^xsd:positiveInteger , "10"^^xsd:unsignedByte , "http://example.org"^^xsd:anyURI , ex2:abc , ex2:abcd , ex2:abcde , pre_0:zabc , pre_0:zabcd , pre_0:zabcde , "2014-06-23T12:28:41.858+01:00"^^xsd:dateTime , "2013"^^xsd:gYear , "--01"^^xsd:gMonth , "---30"^^xsd:gDay , "--12-25"^^xsd:gMonthDay , "P0Y0M0DT0H0M12.225S"^^xsd:duration , "P2Y6M"^^xsd:yearMonthDuration , "P2147483647DT2147483647H2147483647M123456789012345.123456789012345S"^^xsd:dayTimeDuration , "000102220506"^^xsd:hexBinary , "AAECIgUG"^^xsd:base64Binary , "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA"^^xsd:base64Binary , "en"^^xsd:language , "normal"^^xsd:normalizedString , "TOK"^^xsd:token , "NMTOK"^^xsd:NMTOKEN , "name"^^xsd:Name , "NCName"^^xsd:NCName , ""^^rdf:XMLLiteral .
prov-1.5.2/prov/tests/rdf/attr_entity_one_value_attr40.ttl 0000644 0000765 0000000 00000000464 13236423634 023645 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_v40 a prov:Entity ;
prov:value "TOK"^^xsd:token .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr1.ttl 0000644 0000765 0000000 00000000441 13236423634 022361 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et1 a prov:Entity , "un lieu"@fr .
prov-1.5.2/prov/tests/rdf/start8.ttl 0000644 0000765 0000000 00000002076 13236423634 017272 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix ex2: .
@prefix rdfs: .
ex:start8 a prov:Start .
ex:a1 prov:qualifiedStart ex:start8 .
ex:start8 prov:atTime "2014-06-23T12:28:54.459+01:00"^^xsd:dateTime ;
prov:hadActivity ex:a2 ;
a "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:54.459+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI ;
rdfs:label "hello" , "bye"@en , "bonjour"@fr ;
prov:atLocation "London"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:boolean , ex:london , "2014-06-23T12:28:54.459+01:00"^^xsd:dateTime , "http://example.org/london"^^xsd:anyURI , "2002"^^xsd:gYear ;
prov:hadRole "someRole"^^xsd:string , "otherRole"^^xsd:string ;
ex2:tag3 "hi"^^xsd:string ;
ex:tag1 "hello"^^xsd:string , """hello
over
more
lines"""^^xsd:string ;
ex:tag2 "bye"^^xsd:string .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr15.ttl 0000644 0000765 0000000 00000000470 13236423634 023651 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o15 a prov:Entity ;
ex:tag2 "10"^^xsd:unsignedShort .
prov-1.5.2/prov/tests/rdf/derivation8.ttl 0000644 0000765 0000000 00000001313 13236423634 020272 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix ex2: .
@prefix rdfs: .
ex:der8 a prov:Derivation ;
prov:entity ex:e1 .
ex:e2 prov:qualifiedDerivation ex:der8 .
ex:der8 a "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:53.729+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI ;
rdfs:label "hello" ;
ex2:tag3 "hi"^^xsd:string ;
ex:tag1 "hello"^^xsd:string , """hello
over
more
lines"""^^xsd:string ;
ex:tag2 "bye"^^xsd:string .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr29.ttl 0000644 0000765 0000000 00000000463 13236423634 023660 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o29 a prov:Entity ;
ex:tag2 "--01"^^xsd:gMonth .
prov-1.5.2/prov/tests/rdf/agent5.ttl 0000644 0000765 0000000 00000000514 13236423634 017223 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:ag2 a prov:Agent ;
rdfs:label "agent2" , "hello" , "bye"@en , "bonjour"@fr .
prov-1.5.2/prov/tests/rdf/member3.ttl 0000644 0000765 0000000 00000000447 13236423634 017377 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:c prov:hadMember ex:e1 , ex:e2 , ex:e3 .
prov-1.5.2/prov/tests/rdf/scruffy-start1-M.ttl 0000644 0000765 0000000 00000000762 13236423634 021134 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:start1 a prov:Start ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedStart ex:start1 .
ex:start1 prov:atTime "2014-06-23T12:28:52.610+01:00"^^xsd:dateTime , "2012-12-03T21:08:16.686Z"^^xsd:dateTime .
ex:a1 a prov:Activity .
ex:e1 a prov:Entity .
prov-1.5.2/prov/tests/rdf/scruffy-end2-M.ttl 0000644 0000765 0000000 00000001060 13236423634 020536 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:end1 a prov:End ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedEnd ex:end1 .
ex:end1 prov:atTime "2014-06-23T12:28:54.688+01:00"^^xsd:dateTime ;
ex:tag2 "hello"^^xsd:string ;
prov:atTime "2012-12-03T21:08:16.686Z"^^xsd:dateTime ;
ex:tag2 "hi"^^xsd:string .
ex:a1 a prov:Activity .
ex:e1 a prov:Entity .
prov-1.5.2/prov/tests/rdf/member2.ttl 0000644 0000765 0000000 00000000437 13236423634 017375 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:c prov:hadMember ex:e1 , ex:e2 .
prov-1.5.2/prov/tests/rdf/agent4.ttl 0000644 0000765 0000000 00000000475 13236423634 017230 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:ag2 a prov:Agent ;
rdfs:label "agent2" , "hello" , "bye"@en .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr28.ttl 0000644 0000765 0000000 00000000462 13236423634 023656 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o28 a prov:Entity ;
ex:tag2 "2013"^^xsd:gYear .
prov-1.5.2/prov/tests/rdf/derivation9.ttl 0000644 0000765 0000000 00000000775 13236423634 020306 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
_:blank25 a prov:Derivation .
ex:e2 prov:qualifiedDerivation _:blank25 .
_:blank25 a "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:53.753+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr14.ttl 0000644 0000765 0000000 00000000462 13236423634 023651 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o14 a prov:Entity ;
ex:tag2 "10"^^xsd:integer .
prov-1.5.2/prov/tests/rdf/start9.ttl 0000644 0000765 0000000 00000000433 13236423634 017266 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:a1 prov:wasStartedBy ex:e1 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr0.ttl 0000644 0000765 0000000 00000000452 13236423634 022362 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et0 a prov:Entity , "un lieu"^^xsd:string .
prov-1.5.2/prov/tests/rdf/attr_entity_one_value_attr41.ttl 0000644 0000765 0000000 00000000470 13236423634 023643 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_v41 a prov:Entity ;
prov:value "NMTOK"^^xsd:NMTOKEN .
prov-1.5.2/prov/tests/rdf/influence1.ttl 0000644 0000765 0000000 00000000477 13236423634 020101 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf1 a prov:Influence .
ex:a2 prov:qualifiedInfluence ex:inf1 .
prov-1.5.2/prov/tests/rdf/association3.ttl 0000644 0000765 0000000 00000000534 13236423634 020441 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:assoc3 a prov:Association ;
prov:agent ex:ag1 .
ex:a1 prov:qualifiedAssociation ex:assoc3 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr42.ttl 0000644 0000765 0000000 00000000446 13236423634 022453 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et42 a prov:Entity , "name"^^xsd:Name .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr17.ttl 0000644 0000765 0000000 00000000506 13236423634 024342 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l17 a prov:Entity ;
prov:atLocation "-10"^^xsd:nonPositiveInteger .
prov-1.5.2/prov/tests/rdf/scruffy-generation1-M.ttl 0000644 0000765 0000000 00000000770 13236423634 022131 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:gen1 a prov:Generation ;
prov:activity ex:a1 .
ex:e1 prov:qualifiedGeneration ex:gen1 .
ex:gen1 prov:atTime "2014-06-23T12:28:53.265+01:00"^^xsd:dateTime , "2012-12-03T21:08:16.686Z"^^xsd:dateTime .
ex:a1 a prov:Activity .
ex:e1 a prov:Entity .
prov-1.5.2/prov/tests/rdf/communication1.ttl 0000644 0000765 0000000 00000000507 13236423634 020770 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf1 a prov:Communication .
ex:a2 prov:qualifiedCommunication ex:inf1 .
prov-1.5.2/prov/tests/rdf/communication3.ttl 0000644 0000765 0000000 00000000536 13236423634 020774 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf3 a prov:Communication ;
prov:activity ex:a1 .
ex:a2 prov:qualifiedCommunication ex:inf3 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr15.ttl 0000644 0000765 0000000 00000000500 13236423634 024332 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l15 a prov:Entity ;
prov:atLocation "10"^^xsd:unsignedShort .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr29.ttl 0000644 0000765 0000000 00000000473 13236423634 024350 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l29 a prov:Entity ;
prov:atLocation "--01"^^xsd:gMonth .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr40.ttl 0000644 0000765 0000000 00000000446 13236423634 022451 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et40 a prov:Entity , "TOK"^^xsd:token .
prov-1.5.2/prov/tests/rdf/association1.ttl 0000644 0000765 0000000 00000000507 13236423634 020437 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:assoc1 a prov:Association .
ex:a1 prov:qualifiedAssociation ex:assoc1 .
prov-1.5.2/prov/tests/rdf/bundle4.ttl 0000644 0000765 0000000 00000001164 13236423634 017377 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
@prefix foo: .
foo:bundle1 a prov:Entity , prov:Bundle .
ex:bundle2 a prov:Entity , prov:Bundle .
foo:e1 a prov:Entity .
foo:use1 a prov:Usage ;
prov:entity foo:e1 .
foo:a1 prov:qualifiedUsage foo:use1 ;
a prov:Activity .
ex:ee1 a prov:Entity .
ex:use2 a prov:Usage ;
prov:entity ex:ee1 .
ex:aa1 prov:qualifiedUsage ex:use2 ;
a prov:Activity .
prov-1.5.2/prov/tests/rdf/attr_entity_one_value_attr43.ttl 0000644 0000765 0000000 00000000470 13236423634 023645 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_v43 a prov:Entity ;
prov:value "NCName"^^xsd:NCName .
prov-1.5.2/prov/tests/rdf/influence3.ttl 0000644 0000765 0000000 00000000530 13236423634 020071 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf3 a prov:Influence ;
prov:influencer ex:a1 .
ex:a2 prov:qualifiedInfluence ex:inf3 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr2.ttl 0000644 0000765 0000000 00000000441 13236423634 022362 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et2 a prov:Entity , "a place"@en .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr16.ttl 0000644 0000765 0000000 00000000475 13236423634 023657 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o16 a prov:Entity ;
ex:tag2 "10"^^xsd:nonNegativeInteger .
prov-1.5.2/prov/tests/rdf/agent6.ttl 0000644 0000765 0000000 00000000723 13236423634 017226 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:ag6 a prov:Agent , "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:54.345+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI ;
rdfs:label "agent6" .
prov-1.5.2/prov/tests/rdf/member1.ttl 0000644 0000765 0000000 00000000427 13236423634 017373 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:c prov:hadMember ex:e1 .
prov-1.5.2/prov/tests/rdf/agent7.ttl 0000644 0000765 0000000 00000001261 13236423634 017225 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:ag7 a prov:Agent , "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:54.363+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI ;
rdfs:label "agent7" , "hello" , "bye"@en , "bonjour"@fr ;
prov:atLocation "London"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:boolean , "2014-06-23T12:28:54.364+01:00"^^xsd:dateTime , "http://example.org/london"^^xsd:anyURI .
prov-1.5.2/prov/tests/rdf/attr_entity_one_other_attr17.ttl 0000644 0000765 0000000 00000000476 13236423634 023661 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_o17 a prov:Entity ;
ex:tag2 "-10"^^xsd:nonPositiveInteger .
prov-1.5.2/prov/tests/rdf/scruffy-start3-M.ttl 0000644 0000765 0000000 00000001243 13236423634 021131 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:start1 a prov:Start ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedStart ex:start1 .
ex:start1 prov:atTime "2014-06-23T12:28:52.634+01:00"^^xsd:dateTime ;
prov:hadActivity ex:a1s ;
ex:tag2 "hello"^^xsd:string ;
prov:atTime "2012-12-03T21:08:16.686Z"^^xsd:dateTime ;
prov:hadActivity ex:a2s ;
ex:tag2 "hi"^^xsd:string .
ex:a1 a prov:Activity .
ex:a2 a prov:Activity .
ex:a2s a prov:Activity .
ex:e1 a prov:Entity .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr3.ttl 0000644 0000765 0000000 00000000441 13236423634 022363 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et3 a prov:Entity , "1"^^xsd:int .
prov-1.5.2/prov/tests/rdf/influence2.ttl 0000644 0000765 0000000 00000000457 13236423634 020100 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf2 a prov:Influence ;
prov:influencer ex:a1 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_value_attr42.ttl 0000644 0000765 0000000 00000000464 13236423634 023647 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_v42 a prov:Entity ;
prov:value "name"^^xsd:Name .
prov-1.5.2/prov/tests/rdf/alternate1.ttl 0000644 0000765 0000000 00000000432 13236423634 020077 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:e2 prov:alternateOf ex:e1 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr41.ttl 0000644 0000765 0000000 00000000452 13236423634 022447 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:et41 a prov:Entity , "NMTOK"^^xsd:NMTOKEN .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr28.ttl 0000644 0000765 0000000 00000000472 13236423634 024346 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l28 a prov:Entity ;
prov:atLocation "2013"^^xsd:gYear .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr14.ttl 0000644 0000765 0000000 00000000472 13236423634 024341 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l14 a prov:Entity ;
prov:atLocation "10"^^xsd:integer .
prov-1.5.2/prov/tests/rdf/communication2.ttl 0000644 0000765 0000000 00000000461 13236423634 020770 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf2 a prov:Communication ;
prov:activity ex:a1 .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr38.ttl 0000644 0000765 0000000 00000000473 13236423634 024350 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l38 a prov:Entity ;
prov:atLocation "en"^^xsd:language .
prov-1.5.2/prov/tests/rdf/communication6.ttl 0000644 0000765 0000000 00000001104 13236423634 020767 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:inf6 a prov:Communication ;
prov:activity ex:a1 .
ex:a2 prov:qualifiedCommunication ex:inf6 .
ex:inf6 a "a"^^xsd:string , "1"^^xsd:int , "1.0"^^xsd:float , "true"^^xsd:string , ex:abc , "2014-06-23T12:28:54.102+01:00"^^xsd:dateTime , "http://example.org/hello"^^xsd:anyURI ;
rdfs:label "hello" , "bye"@en , "bonjour"@fr .
prov-1.5.2/prov/tests/rdf/attr_entity_one_location_attr10.ttl 0000644 0000765 0000000 00000000475 13236423634 024340 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:en_l10 a prov:Entity ;
prov:atLocation "false"^^xsd:boolean .
prov-1.5.2/prov/tests/rdf/scruffy-end4-M.ttl 0000644 0000765 0000000 00000001412 13236423634 020541 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:end1 a prov:End ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedEnd ex:end1 .
ex:end1 prov:atTime "2014-06-23T12:28:54.695+01:00"^^xsd:dateTime ;
prov:hadActivity ex:a1s ;
ex:tag2 "hello"^^xsd:string ;
prov:entity ex:e2 .
ex:a2 prov:qualifiedEnd ex:end1 .
ex:end1 prov:atTime "2012-12-03T21:08:16.686Z"^^xsd:dateTime ;
prov:hadActivity ex:a2s ;
ex:tag2 "hi"^^xsd:string .
ex:a1 a prov:Activity .
ex:a1s a prov:Activity .
ex:a2 a prov:Activity .
ex:a2s a prov:Activity .
ex:e1 a prov:Entity .
ex:e2 a prov:Entity .
prov-1.5.2/prov/tests/rdf/association4.ttl 0000644 0000765 0000000 00000000577 13236423634 020451 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:assoc4 a prov:Association ;
prov:agent ex:ag1 .
ex:a1 prov:qualifiedAssociation ex:assoc4 .
ex:assoc4 prov:hadPlan ex:plan1 .
prov-1.5.2/prov/tests/rdf/bundle1.ttl 0000644 0000765 0000000 00000001111 13236423634 017364 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: .
@prefix rdfs: .
ex:bundle1 a prov:Entity , prov:Bundle .
ex:bundle2 a prov:Entity , prov:Bundle .
ex:e1 a prov:Entity .
ex:use1 a prov:Usage ;
prov:entity ex:e1 .
ex:a1 prov:qualifiedUsage ex:use1 ;
a prov:Activity .
ex:ee1 a prov:Entity .
ex:use2 a prov:Usage ;
prov:entity ex:ee1 .
ex:aa1 prov:qualifiedUsage ex:use2 ;
a prov:Activity .
prov-1.5.2/prov/tests/rdf/attr_entity_one_attr7.ttl 0000644 0000765 0000000 00000000445 13236423634 022373 0 ustar tdh wheel 0000000 0000000 @prefix prov: .
@prefix xsd: .
@prefix rdf: .
@prefix ex: