diff --git a/requirements-test.txt b/requirements-test.txt index 0081f56..e6bc115 100644 --- a/requirements-test.txt +++ b/requirements-test.txt @@ -3,3 +3,4 @@ lxml pandas pyld pytest +pytest_bdd diff --git a/test/diffTests/__init__.py b/test/diffTests/__init__.py new file mode 100644 index 0000000..3a96591 --- /dev/null +++ b/test/diffTests/__init__.py @@ -0,0 +1,5 @@ +import pathlib + +TEST_FOLDER = pathlib.Path(__file__).parent.parent +PROJECT_DIR_PATH = TEST_FOLDER.parent +TEST_DATA_DIR = TEST_FOLDER / "testData" / "rdf-differ-data" diff --git a/test/diffTests/features/owl_diff.feature b/test/diffTests/features/owl_diff.feature new file mode 100644 index 0000000..fd2d6bf --- /dev/null +++ b/test/diffTests/features/owl_diff.feature @@ -0,0 +1,20 @@ +Feature: OWL diffing + + Background: + Given the OWL files "tests/test_data/owl/ePO_sample-4.0.0.orig.ttl" and "tests/test_data/owl/ePO_sample-4.0.0.upd.ttl" + And the test prefixes are defined + + Scenario Outline: Diffing example resources in the OWL sample + When the diff is run + Then the report should contain the change for "","","","","","" + + Examples: + | resource_type | instance | operation | predicate | old_value | new_value | + | class | epo:AwardCriterion | added | | | | + | class | epo:AdHocChannel | deleted | | | | + | class | epo:AcquiringCentralPurchasingBody | changed | skos:prefLabel | | rdfs:label | + | class | epo:AwardCriteriaSummary | updated | skos:prefLabel | Award criteria summary | Award criteria summarization | + | datatype_property | epo:describesObjectiveParticipationRules | added | | | | + | datatype_property | epo:describesProfessionRelevantLaw | deleted | | | | + | object_property | epo:followsRulesSetBy | added | | | | + | object_property | epo:exposesChannel | deleted | | | | diff --git a/test/diffTests/steps/__init__.py b/test/diffTests/steps/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test/diffTests/steps/test_owl_diff_steps.py b/test/diffTests/steps/test_owl_diff_steps.py new file mode 100644 index 0000000..18d032e --- /dev/null +++ b/test/diffTests/steps/test_owl_diff_steps.py @@ -0,0 +1,221 @@ +from enum import Enum +import json +import os +import subprocess +from pathlib import Path + +import pytest +from pytest_bdd import given, when, then, scenario, parsers + +from diffTests import PROJECT_DIR_PATH, TEST_DATA_DIR + + +SCRIPT_PATH = PROJECT_DIR_PATH / "rdf-differ-ws" / "bash" / "rdf-differ.sh" +BASE_URL = os.environ.get("RDF_DIFFER_BASE_URL", "http://localhost:4030") +SAVED_REPORT = TEST_DATA_DIR / "ePO_sample-4.0.0-upd_diff-report.json" +REUSE_SAVED_REPORT = os.environ.get( + "RDF_DIFFER_REUSE_SAVED_REPORT", "true" +).lower() in ["1", "true", "yes"] + +# trick to run diffing only once and not for all scenarios +_diff_cache = {} + +SUPPORTED_TYPES = ("class", "datatype_property", "object_property") + +@scenario("../features/owl_diff.feature", "Diffing example resources in the OWL sample") +def test_owl_diff_feature(): + pass + + +@pytest.fixture +def ctx(tmp_path): + """Context fixture to store state between steps.""" + return {"tmpdir": tmp_path} + + +@given("the test prefixes are defined") +def prefixes(ctx): + # Hardcoded prefixes for converting between the feature file + # and the diff reports which are RDF/JSON with no prefixes + ctx["prefixes"] = { + "epo": "http://data.europa.eu/a4g/ontology#", + "skos": "http://www.w3.org/2004/02/skos/core#", + "rdfs": "http://www.w3.org/2000/01/rdf-schema#", + } + return ctx["prefixes"] + + +@given(parsers.parse('the OWL files "{old}" and "{new}"')) +def owl_files(ctx, old, new): + # store absolute paths + ctx["old"] = str(Path(old)) + ctx["new"] = str(Path(new)) + return ctx + + +@when("the diff is run") +def run_diff(ctx): + script = os.path.abspath(os.path.join(os.path.dirname(__file__), SCRIPT_PATH)) + outdir = str(ctx["tmpdir"]) + old = ctx["old"] + new = ctx["new"] + profile = "owl-core-en-only" + + # we keep a record of already run diffs to speed up tests (we set the cache at the end of this function) + key = (old, new) + if key in _diff_cache: + ctx["report"] = _diff_cache[key] + return + + if REUSE_SAVED_REPORT: + # use pre-existing report -- for faster testing/debugging of this test skipping the building of the report + report_file = Path( + os.path.abspath(os.path.join(os.path.dirname(__file__), SAVED_REPORT)) + ) + else: + # run full workflow producing JSON output into temporary dir -- this should be the normal way + # WARNING: as this runs an async call, sometimes this can fail due to race conditions + # (the Celery task queue may be empty if called too fast or too late) + result = subprocess.run( + [ + script, + "--base-url", + BASE_URL, + "--old", + old, + "--new", + new, + "--ap", + profile, + "--template", + "json", + "--output", + outdir, + "full", + ], + capture_output=False, + text=True, + ) + + assert ( + result.returncode == 0 + ), f"Diff script failed: {result.stderr}\n{result.stdout}" + report_file = Path(outdir) / "diff.json" + + assert report_file.exists(), f"Report file not found: {report_file}" + with open(report_file) as fh: + report = json.load(fh) + ctx["report"] = report + _diff_cache[key] = report + + +def expand(prefixed, prefixes): + if prefixed is None: + return None + if ":" not in prefixed: + return prefixed + p, local = prefixed.split(":", 1) + if p not in prefixes: + raise ValueError(f"Unknown prefix: {p}") + return prefixes[p] + local + + +def camel_to_snake(name: str) -> str: + # Convert camelCase or mixed to snake_case (prefLabel -> pref_label) + out = "" + for ch in name: + if ch.isupper(): + out += "_" + ch.lower() + else: + out += ch + return out + +def build_query_key(operation: str, resource_type: str, prop_snake: str) -> str: + normalized = resource_type.replace("datatype_", "").replace("object_", "") + return f"{operation}_property_{normalized}_{prop_snake}.rq" + +# this is only possible in Behave (e.g. {predicate:NullableString}) +# @parse.with_pattern(r'.*') +# def parse_nullable_string(text): +# return text +# register_type(NullableString=parse_nullable_string) + + +# pytest-bdd currently lacks support for optional parameters (empty cells in the feature) in parse, so we use a regex trick +# @then(parsers.parse('the report should contain the change for "{type}","{instance}","{operation}","{predicate}","{old_value}","{new_value}"')) +@then( + parsers.re( + r'the report should contain the change for "(?P[^"]*)","(?P[^"]*)","(?P[^"]*)","(?P[^"]*)","(?P[^"]*)","(?P[^"]*)"' + ) +) +def assert_report_contains(ctx, resource_type, instance, operation, predicate, old_value, new_value): + report = ctx.get("report") + prefixes = ctx.get("prefixes") + + assert report is not None, "Report not found in context" + + # normalize inputs + predicate = predicate.strip() or None + new_value = new_value.strip() or None + old_value = old_value.strip() or None + if resource_type == "data_property": + resource_type = "datatype_property" + + if operation in ("added", "deleted") and resource_type in SUPPORTED_TYPES: + # unified handling for added/deleted instances + key = f"{operation}_instance_{resource_type}.rq" + assert key in report, f"Missing key {key} in report" + full_instance = expand(instance, prefixes) + bindings = report[key].get("results", {}).get("bindings", []) + assert any( + b.get("resource", {}).get("value") == full_instance for b in bindings + ), f"{operation.capitalize()} {resource_type} {full_instance} not found in {key}" + + elif operation == "changed" and resource_type in SUPPORTED_TYPES: + prop_prefix, prop_local = predicate.split(":", 1) + prop_snake = camel_to_snake(prop_local) + key = build_query_key(operation, resource_type, prop_snake) + assert key in report, f"Missing key {key} in report" + full_instance = expand(instance, prefixes) + bindings = report[key].get("results", {}).get("bindings", []) + binding = next( + (b for b in bindings if b.get("resource", {}).get("value") == full_instance), + None, + ) + assert binding is not None, f"No binding for instance {full_instance} in {key}" + # check oldProperty and newProperty values for the given instance + # where the given predicate is oldProperty + # and the given newValue is newProperty + expected_old = expand(predicate, prefixes) + expected_new = expand(new_value, prefixes) + assert ( + binding.get("oldProperty", {}).get("value") == expected_old + ), f"oldProperty mismatch: expected {expected_old}, got {binding.get('oldProperty', {}).get('value')}" + assert ( + binding.get("newProperty", {}).get("value") == expected_new + ), f"newProperty mismatch: expected {expected_new}, got {binding.get('newProperty', {}).get('value')}" + elif operation == "updated" and resource_type in SUPPORTED_TYPES: + prop_prefix, prop_local = predicate.split(":", 1) + prop_snake = camel_to_snake(prop_local) + key = build_query_key(operation, resource_type, prop_snake) + assert key in report, f"Missing key {key} in report" + full_instance = expand(instance, prefixes) + bindings = report[key].get("results", {}).get("bindings", []) + binding = next( + (b for b in bindings if b.get("resource", {}).get("value") == full_instance), + None, + ) + assert binding is not None, f"No binding for instance {full_instance} in {key}" + # check oldValue and newValue values for the given predicate of the given instance + expected_old = old_value.strip() if old_value else None + expected_new = new_value.strip() if new_value else None + assert ( + binding.get("oldValue", {}).get("value") == expected_old + ), f"oldValue mismatch: expected {expected_old}, got {binding.get('oldValue', {}).get('value')}" + assert ( + binding.get("newValue", {}).get("value") == expected_new + ), f"newValue mismatch: expected {expected_new}, got {binding.get('newValue', {}).get('value')}" + else: + raise AssertionError( + f"Unsupported combination: resource_type={resource_type}, operation={operation}" + ) diff --git a/test/testData/rdf-differ-data/README.md b/test/testData/rdf-differ-data/README.md new file mode 100644 index 0000000..3e32239 --- /dev/null +++ b/test/testData/rdf-differ-data/README.md @@ -0,0 +1,54 @@ +# Minimal ePO test data for OWL-core profile + +Given the following versions of a dataset: + +- **old:** `ePO_sample-4.0.0.orig.ttl` +- **new:** `ePO_sample-4.0.0.upd.ttl` + +The **new** file is a _combined_ OWL and SHACL file that contains also +embedded SHACL data, for testing retrieval of certain constraint information +for added resources, such as the domain, range and cardinality, which would +otherwise not be supported/available in the OWL-core profile. + +The following are changes comparing **old** to **new**, where _redundant_ +refers to redundant appearances in the existing diff'ing/reporting, and _not +captured_ to the non-appearance thereof. The latter relates to complex cases that are not supported: + +1. added class **epo:AwardCriterion** +2. class **epo:AwardCriterion** added `skos:prefLabel` (redundant, from added class) +3. class **epo:AwardCriterion** added `skos:definition` (redundant, from added class) +4. class **epo:AwardCriterion** added `rdfs:subClassOf` (redundant, from added class) +5. class **epo:AwardCriterion** added `rdfs:isDefinedBy` (redundant, from added class) +6. deleted class **epo:AdHocChannel** +7. class **epo:AdHocChannel** deleted `skos:prefLabel` (redundant, from deleted class) +8. class **epo:AdHocChannel** deleted `skos:definition` (redundant, from deleted class) +9. class **epo:AdHocChannel** deleted `rdfs:subClassOf` (redundant, from deleted class) +10. class **epo:AdHocChannel** deleted `rdfs:isDefinedBy` (redundant, from deleted class) +11. class **epo:AcquiringCentralPurchasingBody** `skos:prefLabel` changed to `rdfs:label` +12. class **epo:AcquiringCentralPurchasingBody** added `rdfs:label` (redundant, from changed property) +13. class **epo:AcquiringCentralPurchasingBody** deleted `skos:prefLabel` (redundant, from changed property) +14. class **epo:Document** added `skos:prefLabel` lang _es_ +1. class **epo:AccessTerm** deleted `skos:prefLabel` +2. class **epo:AwardCriteriaSummary** updated `skos:prefLabel` (new value "Award criteria summarization"; original value "Award criteria summary" moved to `skos:altLabel`) +3. class **epo:AwardCriteriaSummary** changed `skos:prefLabel` to `skos:altLabel` (cross-property move of original `skos:prefLabel` to `skos:altLabel`; could be ignored as the original property was retained with a new value) +4. class **epo:AwardCriteriaSummary** added `skos:altLabel` (redundant, from changed property; could be considered non-redundant if the cross-property move is ignored) +5. added objectProperty **epo:followsRulesSetBy** with domain `epo:PurchaseContract`, range `epo:FrameworkAgreement` and maxCardinality 1 +6. objectProperty **epo:followsRulesSetBy** added `skos:prefLabel` (redundant, from added objectProperty) +7. objectProperty **epo:followsRulesSetBy** added `rdfs:isDefinedBy` (redundant, from added objectProperty) +8. deleted objectProperty **epo:exposesChannel** +9. objectProperty **epo:exposesChannel** deleted `skos:prefLabel` (redundant, from deleted objectProperty) +10. objectProperty **epo:exposesChannel** deleted `rdfs:isDefinedBy` (redundant, from deleted objectProperty) +11. objectProperty **epo:exposesInvoiceeChannel** added `rdfs:label` +12. objectProperty **epo:describesResultNotice** added `skos:altLabel` +13. added datatypeProperty **epo:describesObjectiveParticipationRules** +14. datatypeProperty **epo:describesObjectiveParticipationRules** added `skos:prefLabel` (redundant, from added datatypeProperty) +15. datatypeProperty **epo:describesObjectiveParticipationRules** added `rdfs:isDefinedBy` (redundant, from added datatypeProperty) +16. deleted datatypeProperty **epo:describesProfessionRelevantLaw** +17. datatypeProperty **epo:describesProfessionRelevantLaw** deleted `skos:prefLabel` (redundant, from deleted datatypeProperty) +18. datatypeProperty **epo:describesProfessionRelevantLaw** deleted `rdfs:isDefinedBy` (redundant, from deleted datatypeProperty) +19. datatypeProperty **epo:describesProfession** added `rdfs:label` no lang +20. datatypeProperty **epo:describesVerificationMethod** converted to objectProperty (not captured) +21. objectProperty **epo:distributesOffer** deleted `skos:prefLabel` lang (not captured) +22. objectProperty **epo:actsOnBehalfOf** updated `skos:prefLabel` lang _en_ to _de_ (not captured) + +The files are used by the test suite specified in [owl_diff.feature](../../features/owl_diff.feature) and implemented in [test_owl_diff_steps.py](../../steps/test_owl_diff_steps.py). The above description can be also used to facilitate manual tests. diff --git a/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.adoc b/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.adoc new file mode 100755 index 0000000..2b32eb6 --- /dev/null +++ b/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.adoc @@ -0,0 +1,11708 @@ + += RDF Diff report + + + +This report is automatically generated from the diffusatzUCU2V RDF dataset on 14-Nov-2025T20:32:10 +and aims at presenting the difference between two versions of an RDFS/OWL vocabulary following the owl-core-en-only application profile. + +== Report details + +*Dataset ID:* diffusatzUCU2V + +*Dataset name:* diffus + +*Old version file:* ePO_sample-4.0.0.orig.ttl + +*New version file:* ePO_sample-4.0.0.upd.ttl + +*Time:* 14-Nov-2025T20:32:10 + +*Application profile:* owl-core-en-only + + + + + + +== Statistics + +=== Ontology + + +[cols="1,1,1", options="header"] +|=== +|Instance +|Added +|Deleted + +|Ontology + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + +|=== + +[cols="1,1,1,1,1,1,1", options="header"] +|=== +|Property group +|Property +|Added +|Deleted +|Updated +|Moved +|Changed + + + + +|Labels +|rdfs:label + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|dct:title + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Notes +|rdfs:comment + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|dct:description + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Evolution Properties +|owl:versionInfo + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Evolution Properties +|owl:versionIRI + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Evolution Properties +|owl:priorVersion + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Evolution Properties +|owl:incompatibleWith + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Evolution Properties +|dct:created + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Evolution Properties +|dct:issued + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Miscellaneous +|owl:imports + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Miscellaneous +|rdfs:seeAlso + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Miscellaneous +|dct:license + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Miscellaneous +|dct:publisher + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Miscellaneous +|vann:preferredNamespacePrefix + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Miscellaneous +|vann:preferredNamespaceUri + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|=== + +=== Class + + +[cols="1,1,1", options="header"] +|=== +|Instance +|Added +|Deleted + +|Class + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + +|=== + +[cols="1,1,1,1,1,1,1", options="header"] +|=== +|Property group +|Property +|Added +|Deleted +|Updated +|Moved +|Changed + + + + +|Labels +|rdfs:label + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:prefLabel + + + + + + + + + +|2 + + + + + + + + + + + + + + + + +|4 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|2 + + + + + + + + + + +|Labels +|skos:altLabel + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:hiddenLabel + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Notes +|rdfs:comment + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|dct:description + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:definition + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:example + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:note + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:scopeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:changeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:historyNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:editorialNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Semantic Properties +|rdfs:subClassOf + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:isDefinedBy + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|=== + +=== Object Property + + +[cols="1,1,1", options="header"] +|=== +|Instance +|Added +|Deleted + +|Object Property + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + +|=== + +[cols="1,1,1,1,1,1,1", options="header"] +|=== +|Property group +|Property +|Added +|Deleted +|Updated +|Moved +|Changed + + + + +|Labels +|rdfs:label + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:prefLabel + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|3 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:altLabel + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:hiddenLabel + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Notes +|rdfs:comment + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|dct:description + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:definition + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:example + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:note + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:scopeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:changeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:historyNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:editorialNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Semantic Properties +|rdfs:subPropertyOf + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:isDefinedBy + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:domain + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:range + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|=== + +=== Datatype Property + + +[cols="1,1,1", options="header"] +|=== +|Instance +|Added +|Deleted + +|Datatype Property + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + +|=== + +[cols="1,1,1,1,1,1,1", options="header"] +|=== +|Property group +|Property +|Added +|Deleted +|Updated +|Moved +|Changed + + + + +|Labels +|rdfs:label + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:prefLabel + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:altLabel + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Labels +|skos:hiddenLabel + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Notes +|rdfs:comment + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|dct:description + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:definition + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:example + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:note + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:scopeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:changeNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:historyNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Notes +|skos:editorialNote + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + +|Semantic Properties +|rdfs:subPropertyOf + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:isDefinedBy + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|1 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:domain + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|Semantic Properties +|rdfs:range + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + + + + + + + +|0 + + + + + + + + + + +|=== + + +== Ontology + + + + + + + + + + + + + + + + + +=== Labels + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Notes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Evolution Properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Miscellaneous + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +== Class + + + + + + + + + + + + + +=== Added Classs + + +.Added Classs +[cols="5*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|actionType + + + + + + + +|owl:Class + + + + +|ns1:AwardCriterion + + + + +|Award criterion + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +=== Deleted Classs + + +.Deleted Classs +[cols="5*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|actionType + + + + + + + +|owl:Class + + + + +|ns1:AdHocChannel + + + + +|Ad hoc channel + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + +=== Labels + + + + + + + + + + + + +==== Added label + + +.Added label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AcquiringCentralPurchasingBody + + + + +|owl:Class + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|rdfs:label + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added pref label + + +.Added pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AwardCriterion + + + + +|owl:Class + + + + +|Award criterion + + + + +|en + + + + +|skos:prefLabel + + + + +|Award criterion + + + + +|en + + + + +|addition + + + + + + + +|ns1:Document + + + + +|owl:Class + + + + +|Document + + + + +|en + + + + +|skos:prefLabel + + + + +|Documento + + + + +|es + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted pref label + + +.Deleted pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AccessTerm + + + + +|owl:Class + + + + +|Access term + + + + +|en + + + + +|skos:prefLabel + + + + +|Access term + + + + +|en + + + + +|deletion + + + + + + + +|ns1:AcquiringCentralPurchasingBody + + + + +|owl:Class + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|skos:prefLabel + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|deletion + + + + + + + +|ns1:AdHocChannel + + + + +|owl:Class + + + + +|Ad hoc channel + + + + +|en + + + + +|skos:prefLabel + + + + +|Ad hoc channel + + + + +|en + + + + +|deletion + + + + + + + +|ns1:AwardCriteriaSummary + + + + +|owl:Class + + + + +|Award criteria summary + + + + +|en + + + + +|skos:prefLabel + + + + +|Award criteria summary + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Updated pref label + + +.Updated pref label +[cols="10*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|oldValue + + + +|oldValueLang + + + +|newValue + + + +|newValueLang + + + +|actionType + + + + + + + +|ns1:AwardCriteriaSummary + + + + +|owl:Class + + + + +|Award criteria summarization + + + + +|en + + + + +|skos:prefLabel + + + + +|Award criteria summary + + + + +|en + + + + +|Award criteria summarization + + + + +|en + + + + +|updated + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + +==== Changed pref label + + +.Changed pref label +[cols="9*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|oldProperty + + + +|newProperty + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AcquiringCentralPurchasingBody + + + + +|owl:Class + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|skos:prefLabel + + + + +|rdfs:label + + + + +|Acquiring central purchasing body + + + + +|en + + + + +|changed + + + + + + + +|ns1:AwardCriteriaSummary + + + + +|owl:Class + + + + +|Award criteria summarization + + + + +|en + + + + +|skos:prefLabel + + + + +|skos:altLabel + + + + +|Award criteria summary + + + + +|en + + + + +|changed + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Added alt label + + +.Added alt label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AwardCriteriaSummary + + + + +|owl:Class + + + + +|Award criteria summarization + + + + +|en + + + + +|skos:altLabel + + + + +|Award criteria summary + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Notes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added definition + + +.Added definition +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AwardCriterion + + + + +|owl:Class + + + + +|Award criterion + + + + +|en + + + + +|skos:definition + + + + +|Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018 + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted definition + + +.Deleted definition +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AdHocChannel + + + + +|owl:Class + + + + +|Ad hoc channel + + + + +|en + + + + +|skos:definition + + + + +|Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023 + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Semantic Properties + + + + + + + + + + + + +==== Added sub class of + + +.Added sub class of +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AwardCriterion + + + + +|owl:Class + + + + +|Award criterion + + + + +|en + + + + +|rdfs:subClassOf + + + + +|ns1:ProcurementCriterion + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted sub class of + + +.Deleted sub class of +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AdHocChannel + + + + +|owl:Class + + + + +|Ad hoc channel + + + + +|en + + + + +|rdfs:subClassOf + + + + +|ns2:Channel + + + + +| + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added is defined by + + +.Added is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AwardCriterion + + + + +|owl:Class + + + + +|Award criterion + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted is defined by + + +.Deleted is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:AdHocChannel + + + + +|owl:Class + + + + +|Ad hoc channel + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +== Object Property + + + + + + + + + + + + + +=== Added Object Propertys + + +.Added Object Propertys +[cols="9*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|domain + + + +|range + + + +|minCardinality + + + +|maxCardinality + + + +|actionType + + + + + + + +|owl:ObjectProperty + + + + +|ns1:followsRulesSetBy + + + + +|Follows rules set by + + + + +|en + + + + +|ns1:PurchaseContract + + + + +|ns1:FrameworkAgreement + + + + +| + + + + +|1 + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +=== Deleted Object Propertys + + +.Deleted Object Propertys +[cols="5*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|actionType + + + + + + + +|owl:ObjectProperty + + + + +|ns1:exposesChannel + + + + +|Exposes channel + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + +=== Labels + + + + + + + + + + + + +==== Added label + + +.Added label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:exposesInvoiceeChannel + + + + +|owl:ObjectProperty + + + + +|Exposes invoicee channel + + + + +|en + + + + +|rdfs:label + + + + +|Exposes invoicee channel + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added pref label + + +.Added pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:followsRulesSetBy + + + + +|owl:ObjectProperty + + + + +|Follows rules set by + + + + +|en + + + + +|skos:prefLabel + + + + +|Follows rules set by + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted pref label + + +.Deleted pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:actsOnBehalfOf + + + + +|owl:ObjectProperty + + + + +|Acts on behalf of + + + + +|en + + + + +|skos:prefLabel + + + + +|Acts on behalf of + + + + +|en + + + + +|deletion + + + + + + + +|ns1:distributesOffer + + + + +|owl:ObjectProperty + + + + +|Distributes offer + + + + +|en + + + + +|skos:prefLabel + + + + +|Distributes offer + + + + +|en + + + + +|deletion + + + + + + + +|ns1:exposesChannel + + + + +|owl:ObjectProperty + + + + +|Exposes channel + + + + +|en + + + + +|skos:prefLabel + + + + +|Exposes channel + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added alt label + + +.Added alt label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesResultNotice + + + + +|owl:ObjectProperty + + + + +|Describes result notice + + + + +|en + + + + +|skos:altLabel + + + + +|Describes result form + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Notes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Semantic Properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added is defined by + + +.Added is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:followsRulesSetBy + + + + +|owl:ObjectProperty + + + + +|Follows rules set by + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted is defined by + + +.Deleted is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:exposesChannel + + + + +|owl:ObjectProperty + + + + +|Exposes channel + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +== Datatype Property + + + + + + + + + + + + + +=== Added Datatype Propertys + + +.Added Datatype Propertys +[cols="9*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|domain + + + +|range + + + +|minCardinality + + + +|maxCardinality + + + +|actionType + + + + + + + +|owl:DatatypeProperty + + + + +|ns1:describesObjectiveParticipationRules + + + + +|Describes objective participation rules + + + + +|en + + + + +| + + + + +| + + + + +| + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +=== Deleted Datatype Propertys + + +.Deleted Datatype Propertys +[cols="5*", options="header"] +|=== + + +|class + + + +|instance + + + +|prefLabel + + + +|prefLabelLang + + + +|actionType + + + + + + + +|owl:DatatypeProperty + + + + +|ns1:describesProfessionRelevantLaw + + + + +|Describes profession relevant law + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + +=== Labels + + + + + + + + + + + + +==== Added label + + +.Added label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesProfession + + + + +|owl:DatatypeProperty + + + + +|Describes profession + + + + +|en + + + + +|rdfs:label + + + + +|Describes profession + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added pref label + + +.Added pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesObjectiveParticipationRules + + + + +|owl:DatatypeProperty + + + + +|Describes objective participation rules + + + + +|en + + + + +|skos:prefLabel + + + + +|Describes objective participation rules + + + + +|en + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted pref label + + +.Deleted pref label +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesProfessionRelevantLaw + + + + +|owl:DatatypeProperty + + + + +|Describes profession relevant law + + + + +|en + + + + +|skos:prefLabel + + + + +|Describes profession relevant law + + + + +|en + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Notes + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +=== Semantic Properties + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +==== Added is defined by + + +.Added is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesObjectiveParticipationRules + + + + +|owl:DatatypeProperty + + + + +|Describes objective participation rules + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|addition + + + + +|=== + + + + + + + + + + + + + + + + + + +==== Deleted is defined by + + +.Deleted is defined by +[cols="8*", options="header"] +|=== + + +|instance + + + +|class + + + +|prefLabel + + + +|prefLabelLang + + + +|property + + + +|value + + + +|valueLang + + + +|actionType + + + + + + + +|ns1:describesProfessionRelevantLaw + + + + +|owl:DatatypeProperty + + + + +|Describes profession relevant law + + + + +|en + + + + +|rdfs:isDefinedBy + + + + +|ns1:core + + + + +| + + + + +|deletion + + + + +|=== + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +== Prefixes + +.Prefixes +[cols="1,3", options="header"] +|=== +|Namespace +|URI + + +|brick +|https://brickschema.org/schema/Brick# + + +|csvw +|http://www.w3.org/ns/csvw# + + +|dc +|http://purl.org/dc/elements/1.1/ + + +|dcam +|http://purl.org/dc/dcam/ + + +|dcat +|http://www.w3.org/ns/dcat# + + +|dcmitype +|http://purl.org/dc/dcmitype/ + + +|dcterms +|http://purl.org/dc/terms/ + + +|doap +|http://usefulinc.com/ns/doap# + + +|foaf +|http://xmlns.com/foaf/0.1/ + + +|geo +|http://www.opengis.net/ont/geosparql# + + +|ns1 +|http://data.europa.eu/a4g/ontology# + + +|ns2 +|http://data.europa.eu/m8g/ + + +|odrl +|http://www.w3.org/ns/odrl/2/ + + +|org +|http://www.w3.org/ns/org# + + +|owl +|http://www.w3.org/2002/07/owl# + + +|prof +|http://www.w3.org/ns/dx/prof/ + + +|prov +|http://www.w3.org/ns/prov# + + +|qb +|http://purl.org/linked-data/cube# + + +|rdf +|http://www.w3.org/1999/02/22-rdf-syntax-ns# + + +|rdfs +|http://www.w3.org/2000/01/rdf-schema# + + +|schema +|https://schema.org/ + + +|sh +|http://www.w3.org/ns/shacl# + + +|skos +|http://www.w3.org/2004/02/skos/core# + + +|sosa +|http://www.w3.org/ns/sosa/ + + +|ssn +|http://www.w3.org/ns/ssn/ + + +|time +|http://www.w3.org/2006/time# + + +|vann +|http://purl.org/vocab/vann/ + + +|void +|http://rdfs.org/ns/void# + + +|wgs +|https://www.w3.org/2003/01/geo/wgs84_pos# + + +|xml +|http://www.w3.org/XML/1998/namespace + + +|xsd +|http://www.w3.org/2001/XMLSchema# + + +|=== + diff --git a/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.json b/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.json new file mode 100644 index 0000000..2046857 --- /dev/null +++ b/test/testData/rdf-differ-data/ePO_sample-4.0.0-upd_diff-report.json @@ -0,0 +1,7679 @@ +{ + "added_instance_class.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriterion" + } + } + ] + } + }, + "added_instance_datatype_property.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "domain", + "range", + "minCardinality", + "maxCardinality" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes objective participation rules", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesObjectiveParticipationRules" + } + } + ] + } + }, + "added_instance_object_property.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "domain", + "range", + "minCardinality", + "maxCardinality" + ] + }, + "results": { + "bindings": [ + { + "domain": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#PurchaseContract" + }, + "label": { + "type": "literal", + "value": "Follows rules set by", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "maxCardinality": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + }, + "range": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#FrameworkAgreement" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#followsRulesSetBy" + } + } + ] + } + }, + "added_instance_ontology.rq": "No changes found.", + "added_property_class_alt_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criteria summarization", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#altLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriteriaSummary" + }, + "value": { + "type": "literal", + "value": "Award criteria summary", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_class_change_note.rq": "No changes found.", + "added_property_class_comment.rq": "No changes found.", + "added_property_class_definition.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#definition" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriterion" + }, + "value": { + "type": "literal", + "value": "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_class_description.rq": "No changes found.", + "added_property_class_editorial_note.rq": "No changes found.", + "added_property_class_example.rq": "No changes found.", + "added_property_class_hidden_label.rq": "No changes found.", + "added_property_class_history_note.rq": "No changes found.", + "added_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriterion" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "added_property_class_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#label" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AcquiringCentralPurchasingBody" + }, + "value": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_class_note.rq": "No changes found.", + "added_property_class_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriterion" + }, + "value": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Document", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#Document" + }, + "value": { + "type": "literal", + "value": "Documento", + "xml:lang": "es" + }, + "valueLang": { + "type": "literal", + "value": "es" + } + } + ] + } + }, + "added_property_class_scope_note.rq": "No changes found.", + "added_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criterion", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#subClassOf" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriterion" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#ProcurementCriterion" + } + } + ] + } + }, + "added_property_datatype_property_alt_label.rq": "No changes found.", + "added_property_datatype_property_change_note.rq": "No changes found.", + "added_property_datatype_property_comment.rq": "No changes found.", + "added_property_datatype_property_definition.rq": "No changes found.", + "added_property_datatype_property_description.rq": "No changes found.", + "added_property_datatype_property_domain.rq": "No changes found.", + "added_property_datatype_property_editorial_note.rq": "No changes found.", + "added_property_datatype_property_example.rq": "No changes found.", + "added_property_datatype_property_hidden_label.rq": "No changes found.", + "added_property_datatype_property_history_note.rq": "No changes found.", + "added_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes objective participation rules", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesObjectiveParticipationRules" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "added_property_datatype_property_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes profession", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#label" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesProfession" + }, + "value": { + "type": "literal", + "value": "Describes profession" + }, + "valueLang": { + "type": "literal", + "value": "" + } + } + ] + } + }, + "added_property_datatype_property_note.rq": "No changes found.", + "added_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes objective participation rules", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesObjectiveParticipationRules" + }, + "value": { + "type": "literal", + "value": "Describes objective participation rules", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_datatype_property_range.rq": "No changes found.", + "added_property_datatype_property_scope_note.rq": "No changes found.", + "added_property_datatype_property_sub_property_of.rq": "No changes found.", + "added_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes result notice", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#altLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesResultNotice" + }, + "value": { + "type": "literal", + "value": "Describes result form", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_object_property_change_note.rq": "No changes found.", + "added_property_object_property_comment.rq": "No changes found.", + "added_property_object_property_definition.rq": "No changes found.", + "added_property_object_property_description.rq": "No changes found.", + "added_property_object_property_domain.rq": "No changes found.", + "added_property_object_property_editorial_note.rq": "No changes found.", + "added_property_object_property_example.rq": "No changes found.", + "added_property_object_property_hidden_label.rq": "No changes found.", + "added_property_object_property_history_note.rq": "No changes found.", + "added_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Follows rules set by", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#followsRulesSetBy" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "added_property_object_property_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Exposes invoicee channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#label" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#exposesInvoiceeChannel" + }, + "value": { + "type": "literal", + "value": "Exposes invoicee channel", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_object_property_note.rq": "No changes found.", + "added_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Follows rules set by", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#followsRulesSetBy" + }, + "value": { + "type": "literal", + "value": "Follows rules set by", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "added_property_object_property_range.rq": "No changes found.", + "added_property_object_property_scope_note.rq": "No changes found.", + "added_property_object_property_sub_property_of.rq": "No changes found.", + "added_property_ontology_comment.rq": "No changes found.", + "added_property_ontology_created.rq": "No changes found.", + "added_property_ontology_description.rq": "No changes found.", + "added_property_ontology_imports.rq": "No changes found.", + "added_property_ontology_incompatible_with.rq": "No changes found.", + "added_property_ontology_issued.rq": "No changes found.", + "added_property_ontology_label.rq": "No changes found.", + "added_property_ontology_license.rq": "No changes found.", + "added_property_ontology_preferred_namespace_prefix.rq": "No changes found.", + "added_property_ontology_preferred_namespace_uri.rq": "No changes found.", + "added_property_ontology_prior_version.rq": "No changes found.", + "added_property_ontology_publisher.rq": "No changes found.", + "added_property_ontology_see_also.rq": "No changes found.", + "added_property_ontology_title.rq": "No changes found.", + "added_property_ontology_version_info.rq": "No changes found.", + "added_property_ontology_version_iri.rq": "No changes found.", + "application_profile": "owl-core-en-only", + "changed_property_class_alt_label.rq": "No changes found.", + "changed_property_class_change_note.rq": "No changes found.", + "changed_property_class_comment.rq": "No changes found.", + "changed_property_class_definition.rq": "No changes found.", + "changed_property_class_description.rq": "No changes found.", + "changed_property_class_editorial_note.rq": "No changes found.", + "changed_property_class_example.rq": "No changes found.", + "changed_property_class_hidden_label.rq": "No changes found.", + "changed_property_class_history_note.rq": "No changes found.", + "changed_property_class_is_defined_by.rq": "No changes found.", + "changed_property_class_label.rq": "No changes found.", + "changed_property_class_note.rq": "No changes found.", + "changed_property_class_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "oldProperty", + "newProperty", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "newProperty": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#label" + }, + "oldProperty": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AcquiringCentralPurchasingBody" + }, + "value": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Award criteria summarization", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "newProperty": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#altLabel" + }, + "oldProperty": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriteriaSummary" + }, + "value": { + "type": "literal", + "value": "Award criteria summary", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "changed_property_class_scope_note.rq": "No changes found.", + "changed_property_class_sub_class_of.rq": "No changes found.", + "changed_property_datatype_property_alt_label.rq": "No changes found.", + "changed_property_datatype_property_change_note.rq": "No changes found.", + "changed_property_datatype_property_comment.rq": "No changes found.", + "changed_property_datatype_property_definition.rq": "No changes found.", + "changed_property_datatype_property_description.rq": "No changes found.", + "changed_property_datatype_property_domain.rq": "No changes found.", + "changed_property_datatype_property_editorial_note.rq": "No changes found.", + "changed_property_datatype_property_example.rq": "No changes found.", + "changed_property_datatype_property_hidden_label.rq": "No changes found.", + "changed_property_datatype_property_history_note.rq": "No changes found.", + "changed_property_datatype_property_is_defined_by.rq": "No changes found.", + "changed_property_datatype_property_label.rq": "No changes found.", + "changed_property_datatype_property_note.rq": "No changes found.", + "changed_property_datatype_property_pref_label.rq": "No changes found.", + "changed_property_datatype_property_range.rq": "No changes found.", + "changed_property_datatype_property_scope_note.rq": "No changes found.", + "changed_property_datatype_property_sub_property_of.rq": "No changes found.", + "changed_property_object_property_alt_label.rq": "No changes found.", + "changed_property_object_property_change_note.rq": "No changes found.", + "changed_property_object_property_comment.rq": "No changes found.", + "changed_property_object_property_definition.rq": "No changes found.", + "changed_property_object_property_description.rq": "No changes found.", + "changed_property_object_property_domain.rq": "No changes found.", + "changed_property_object_property_editorial_note.rq": "No changes found.", + "changed_property_object_property_example.rq": "No changes found.", + "changed_property_object_property_hidden_label.rq": "No changes found.", + "changed_property_object_property_history_note.rq": "No changes found.", + "changed_property_object_property_is_defined_by.rq": "No changes found.", + "changed_property_object_property_label.rq": "No changes found.", + "changed_property_object_property_note.rq": "No changes found.", + "changed_property_object_property_pref_label.rq": "No changes found.", + "changed_property_object_property_range.rq": "No changes found.", + "changed_property_object_property_scope_note.rq": "No changes found.", + "changed_property_object_property_sub_property_of.rq": "No changes found.", + "changed_property_ontology_comment.rq": "No changes found.", + "changed_property_ontology_created.rq": "No changes found.", + "changed_property_ontology_description.rq": "No changes found.", + "changed_property_ontology_imports.rq": "No changes found.", + "changed_property_ontology_incompatible_with.rq": "No changes found.", + "changed_property_ontology_issued.rq": "No changes found.", + "changed_property_ontology_label.rq": "No changes found.", + "changed_property_ontology_license.rq": "No changes found.", + "changed_property_ontology_preferred_namespace_prefix.rq": "No changes found.", + "changed_property_ontology_preferred_namespace_uri.rq": "No changes found.", + "changed_property_ontology_prior_version.rq": "No changes found.", + "changed_property_ontology_publisher.rq": "No changes found.", + "changed_property_ontology_see_also.rq": "No changes found.", + "changed_property_ontology_title.rq": "No changes found.", + "changed_property_ontology_version_info.rq": "No changes found.", + "changed_property_ontology_version_iri.rq": "No changes found.", + "count_added_instance_class.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_instance_datatype_property.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_instance_object_property.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_instance_ontology.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_class_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_class_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_class_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_class_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "2" + } + } + ] + } + }, + "count_added_property_class_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_datatype_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_datatype_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_datatype_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_datatype_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_datatype_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_object_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_object_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_object_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_added_property_object_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_object_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_created.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_imports.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_incompatible_with.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_issued.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_license.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_preferred_namespace_prefix.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_preferred_namespace_uri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_prior_version.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_publisher.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_see_also.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_title.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_version_info.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_added_property_ontology_version_iri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "2" + } + } + ] + } + }, + "count_changed_property_class_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_datatype_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_object_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_created.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_imports.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_incompatible_with.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_issued.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_license.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_preferred_namespace_prefix.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_preferred_namespace_uri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_prior_version.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_publisher.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_see_also.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_title.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_version_info.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_changed_property_ontology_version_iri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_instance_class.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_instance_datatype_property.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_instance_object_property.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_instance_ontology.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_class_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_class_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "4" + } + } + ] + } + }, + "count_deleted_property_class_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_datatype_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_datatype_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_datatype_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_datatype_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_deleted_property_object_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "3" + } + } + ] + } + }, + "count_deleted_property_object_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_object_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_created.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_imports.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_incompatible_with.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_issued.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_license.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_preferred_namespace_prefix.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_preferred_namespace_uri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_prior_version.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_publisher.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_see_also.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_title.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_version_info.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_deleted_property_ontology_version_iri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_moved_property_class_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_moved_property_datatype_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_datatype_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_moved_property_object_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_object_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_created.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_imports.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_incompatible_with.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_issued.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_license.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_preferred_namespace_prefix.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_preferred_namespace_uri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_prior_version.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_publisher.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_see_also.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_title.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_version_info.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_moved_property_ontology_version_iri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "1" + } + } + ] + } + }, + "count_updated_property_class_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_datatype_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_alt_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_change_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_definition.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_domain.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_editorial_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_example.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_hidden_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_history_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_range.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_scope_note.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_object_property_sub_property_of.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_comment.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_created.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_description.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_imports.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_incompatible_with.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_issued.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_label.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_license.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_preferred_namespace_prefix.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_preferred_namespace_uri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_prior_version.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_publisher.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_see_also.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_title.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_version_info.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "count_updated_property_ontology_version_iri.rq": { + "head": { + "vars": [ + "entries" + ] + }, + "results": { + "bindings": [ + { + "entries": { + "datatype": "http://www.w3.org/2001/XMLSchema#integer", + "type": "literal", + "value": "0" + } + } + ] + } + }, + "dataset_name": "diffuscPpuFE22", + "deleted_instance_class.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AdHocChannel" + } + } + ] + } + }, + "deleted_instance_datatype_property.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes profession relevant law", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesProfessionRelevantLaw" + } + } + ] + } + }, + "deleted_instance_object_property.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Exposes channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#exposesChannel" + } + } + ] + } + }, + "deleted_instance_ontology.rq": "No changes found.", + "deleted_property_class_alt_label.rq": "No changes found.", + "deleted_property_class_change_note.rq": "No changes found.", + "deleted_property_class_comment.rq": "No changes found.", + "deleted_property_class_definition.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#definition" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AdHocChannel" + }, + "value": { + "type": "literal", + "value": "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "deleted_property_class_description.rq": "No changes found.", + "deleted_property_class_editorial_note.rq": "No changes found.", + "deleted_property_class_example.rq": "No changes found.", + "deleted_property_class_hidden_label.rq": "No changes found.", + "deleted_property_class_history_note.rq": "No changes found.", + "deleted_property_class_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AdHocChannel" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "deleted_property_class_label.rq": "No changes found.", + "deleted_property_class_note.rq": "No changes found.", + "deleted_property_class_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Access term", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AccessTerm" + }, + "value": { + "type": "literal", + "value": "Access term", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AcquiringCentralPurchasingBody" + }, + "value": { + "type": "literal", + "value": "Acquiring central purchasing body", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AdHocChannel" + }, + "value": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Award criteria summary", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriteriaSummary" + }, + "value": { + "type": "literal", + "value": "Award criteria summary", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "deleted_property_class_scope_note.rq": "No changes found.", + "deleted_property_class_sub_class_of.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Ad hoc channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#subClassOf" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AdHocChannel" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/m8g/Channel" + } + } + ] + } + }, + "deleted_property_datatype_property_alt_label.rq": "No changes found.", + "deleted_property_datatype_property_change_note.rq": "No changes found.", + "deleted_property_datatype_property_comment.rq": "No changes found.", + "deleted_property_datatype_property_definition.rq": "No changes found.", + "deleted_property_datatype_property_description.rq": "No changes found.", + "deleted_property_datatype_property_domain.rq": "No changes found.", + "deleted_property_datatype_property_editorial_note.rq": "No changes found.", + "deleted_property_datatype_property_example.rq": "No changes found.", + "deleted_property_datatype_property_hidden_label.rq": "No changes found.", + "deleted_property_datatype_property_history_note.rq": "No changes found.", + "deleted_property_datatype_property_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes profession relevant law", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesProfessionRelevantLaw" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "deleted_property_datatype_property_label.rq": "No changes found.", + "deleted_property_datatype_property_note.rq": "No changes found.", + "deleted_property_datatype_property_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Describes profession relevant law", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#describesProfessionRelevantLaw" + }, + "value": { + "type": "literal", + "value": "Describes profession relevant law", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "deleted_property_datatype_property_range.rq": "No changes found.", + "deleted_property_datatype_property_scope_note.rq": "No changes found.", + "deleted_property_datatype_property_sub_property_of.rq": "No changes found.", + "deleted_property_object_property_alt_label.rq": "No changes found.", + "deleted_property_object_property_change_note.rq": "No changes found.", + "deleted_property_object_property_comment.rq": "No changes found.", + "deleted_property_object_property_definition.rq": "No changes found.", + "deleted_property_object_property_description.rq": "No changes found.", + "deleted_property_object_property_domain.rq": "No changes found.", + "deleted_property_object_property_editorial_note.rq": "No changes found.", + "deleted_property_object_property_example.rq": "No changes found.", + "deleted_property_object_property_hidden_label.rq": "No changes found.", + "deleted_property_object_property_history_note.rq": "No changes found.", + "deleted_property_object_property_is_defined_by.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Exposes channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#exposesChannel" + }, + "value": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#core" + } + } + ] + } + }, + "deleted_property_object_property_label.rq": "No changes found.", + "deleted_property_object_property_note.rq": "No changes found.", + "deleted_property_object_property_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "value", + "valueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Acts on behalf of", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#actsOnBehalfOf" + }, + "value": { + "type": "literal", + "value": "Acts on behalf of", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Distributes offer", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#distributesOffer" + }, + "value": { + "type": "literal", + "value": "Distributes offer", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + }, + { + "label": { + "type": "literal", + "value": "Exposes channel", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#exposesChannel" + }, + "value": { + "type": "literal", + "value": "Exposes channel", + "xml:lang": "en" + }, + "valueLang": { + "type": "literal", + "value": "en" + } + } + ] + } + }, + "deleted_property_object_property_range.rq": "No changes found.", + "deleted_property_object_property_scope_note.rq": "No changes found.", + "deleted_property_object_property_sub_property_of.rq": "No changes found.", + "deleted_property_ontology_comment.rq": "No changes found.", + "deleted_property_ontology_created.rq": "No changes found.", + "deleted_property_ontology_description.rq": "No changes found.", + "deleted_property_ontology_imports.rq": "No changes found.", + "deleted_property_ontology_incompatible_with.rq": "No changes found.", + "deleted_property_ontology_issued.rq": "No changes found.", + "deleted_property_ontology_label.rq": "No changes found.", + "deleted_property_ontology_license.rq": "No changes found.", + "deleted_property_ontology_preferred_namespace_prefix.rq": "No changes found.", + "deleted_property_ontology_preferred_namespace_uri.rq": "No changes found.", + "deleted_property_ontology_prior_version.rq": "No changes found.", + "deleted_property_ontology_publisher.rq": "No changes found.", + "deleted_property_ontology_see_also.rq": "No changes found.", + "deleted_property_ontology_title.rq": "No changes found.", + "deleted_property_ontology_version_info.rq": "No changes found.", + "deleted_property_ontology_version_iri.rq": "No changes found.", + "moved_property_class_alt_label.rq": "No changes found.", + "moved_property_class_change_note.rq": "No changes found.", + "moved_property_class_comment.rq": "No changes found.", + "moved_property_class_definition.rq": "No changes found.", + "moved_property_class_description.rq": "No changes found.", + "moved_property_class_editorial_note.rq": "No changes found.", + "moved_property_class_example.rq": "No changes found.", + "moved_property_class_hidden_label.rq": "No changes found.", + "moved_property_class_history_note.rq": "No changes found.", + "moved_property_class_is_defined_by.rq": "No changes found.", + "moved_property_class_label.rq": "No changes found.", + "moved_property_class_note.rq": "No changes found.", + "moved_property_class_pref_label.rq": "No changes found.", + "moved_property_class_scope_note.rq": "No changes found.", + "moved_property_class_sub_class_of.rq": "No changes found.", + "moved_property_datatype_property_alt_label.rq": "No changes found.", + "moved_property_datatype_property_change_note.rq": "No changes found.", + "moved_property_datatype_property_comment.rq": "No changes found.", + "moved_property_datatype_property_definition.rq": "No changes found.", + "moved_property_datatype_property_description.rq": "No changes found.", + "moved_property_datatype_property_domain.rq": "No changes found.", + "moved_property_datatype_property_editorial_note.rq": "No changes found.", + "moved_property_datatype_property_example.rq": "No changes found.", + "moved_property_datatype_property_hidden_label.rq": "No changes found.", + "moved_property_datatype_property_history_note.rq": "No changes found.", + "moved_property_datatype_property_is_defined_by.rq": "No changes found.", + "moved_property_datatype_property_label.rq": "No changes found.", + "moved_property_datatype_property_note.rq": "No changes found.", + "moved_property_datatype_property_pref_label.rq": "No changes found.", + "moved_property_datatype_property_range.rq": "No changes found.", + "moved_property_datatype_property_scope_note.rq": "No changes found.", + "moved_property_datatype_property_sub_property_of.rq": "No changes found.", + "moved_property_object_property_alt_label.rq": "No changes found.", + "moved_property_object_property_change_note.rq": "No changes found.", + "moved_property_object_property_comment.rq": "No changes found.", + "moved_property_object_property_definition.rq": "No changes found.", + "moved_property_object_property_description.rq": "No changes found.", + "moved_property_object_property_domain.rq": "No changes found.", + "moved_property_object_property_editorial_note.rq": "No changes found.", + "moved_property_object_property_example.rq": "No changes found.", + "moved_property_object_property_hidden_label.rq": "No changes found.", + "moved_property_object_property_history_note.rq": "No changes found.", + "moved_property_object_property_is_defined_by.rq": "No changes found.", + "moved_property_object_property_label.rq": "No changes found.", + "moved_property_object_property_note.rq": "No changes found.", + "moved_property_object_property_pref_label.rq": "No changes found.", + "moved_property_object_property_range.rq": "No changes found.", + "moved_property_object_property_scope_note.rq": "No changes found.", + "moved_property_object_property_sub_property_of.rq": "No changes found.", + "moved_property_ontology_comment.rq": "No changes found.", + "moved_property_ontology_created.rq": "No changes found.", + "moved_property_ontology_description.rq": "No changes found.", + "moved_property_ontology_imports.rq": "No changes found.", + "moved_property_ontology_incompatible_with.rq": "No changes found.", + "moved_property_ontology_issued.rq": "No changes found.", + "moved_property_ontology_label.rq": "No changes found.", + "moved_property_ontology_license.rq": "No changes found.", + "moved_property_ontology_preferred_namespace_prefix.rq": "No changes found.", + "moved_property_ontology_preferred_namespace_uri.rq": "No changes found.", + "moved_property_ontology_prior_version.rq": "No changes found.", + "moved_property_ontology_publisher.rq": "No changes found.", + "moved_property_ontology_see_also.rq": "No changes found.", + "moved_property_ontology_title.rq": "No changes found.", + "moved_property_ontology_version_info.rq": "No changes found.", + "moved_property_ontology_version_iri.rq": "No changes found.", + "timestamp": "28-Nov-2025T20:39:39", + "updated_property_class_alt_label.rq": "No changes found.", + "updated_property_class_change_note.rq": "No changes found.", + "updated_property_class_comment.rq": "No changes found.", + "updated_property_class_definition.rq": "No changes found.", + "updated_property_class_description.rq": "No changes found.", + "updated_property_class_editorial_note.rq": "No changes found.", + "updated_property_class_example.rq": "No changes found.", + "updated_property_class_hidden_label.rq": "No changes found.", + "updated_property_class_history_note.rq": "No changes found.", + "updated_property_class_is_defined_by.rq": "No changes found.", + "updated_property_class_label.rq": "No changes found.", + "updated_property_class_note.rq": "No changes found.", + "updated_property_class_pref_label.rq": { + "head": { + "vars": [ + "resource", + "label", + "labelLang", + "property", + "oldValue", + "oldValueLang", + "newValue", + "newValueLang" + ] + }, + "results": { + "bindings": [ + { + "label": { + "type": "literal", + "value": "Award criteria summarization", + "xml:lang": "en" + }, + "labelLang": { + "type": "literal", + "value": "en" + }, + "newValue": { + "type": "literal", + "value": "Award criteria summarization", + "xml:lang": "en" + }, + "newValueLang": { + "type": "literal", + "value": "en" + }, + "oldValue": { + "type": "literal", + "value": "Award criteria summary", + "xml:lang": "en" + }, + "oldValueLang": { + "type": "literal", + "value": "en" + }, + "property": { + "type": "uri", + "value": "http://www.w3.org/2004/02/skos/core#prefLabel" + }, + "resource": { + "type": "uri", + "value": "http://data.europa.eu/a4g/ontology#AwardCriteriaSummary" + } + } + ] + } + }, + "updated_property_class_scope_note.rq": "No changes found.", + "updated_property_class_sub_class_of.rq": "No changes found.", + "updated_property_datatype_property_alt_label.rq": "No changes found.", + "updated_property_datatype_property_change_note.rq": "No changes found.", + "updated_property_datatype_property_comment.rq": "No changes found.", + "updated_property_datatype_property_definition.rq": "No changes found.", + "updated_property_datatype_property_description.rq": "No changes found.", + "updated_property_datatype_property_domain.rq": "No changes found.", + "updated_property_datatype_property_editorial_note.rq": "No changes found.", + "updated_property_datatype_property_example.rq": "No changes found.", + "updated_property_datatype_property_hidden_label.rq": "No changes found.", + "updated_property_datatype_property_history_note.rq": "No changes found.", + "updated_property_datatype_property_is_defined_by.rq": "No changes found.", + "updated_property_datatype_property_label.rq": "No changes found.", + "updated_property_datatype_property_note.rq": "No changes found.", + "updated_property_datatype_property_pref_label.rq": "No changes found.", + "updated_property_datatype_property_range.rq": "No changes found.", + "updated_property_datatype_property_scope_note.rq": "No changes found.", + "updated_property_datatype_property_sub_property_of.rq": "No changes found.", + "updated_property_object_property_alt_label.rq": "No changes found.", + "updated_property_object_property_change_note.rq": "No changes found.", + "updated_property_object_property_comment.rq": "No changes found.", + "updated_property_object_property_definition.rq": "No changes found.", + "updated_property_object_property_description.rq": "No changes found.", + "updated_property_object_property_domain.rq": "No changes found.", + "updated_property_object_property_editorial_note.rq": "No changes found.", + "updated_property_object_property_example.rq": "No changes found.", + "updated_property_object_property_hidden_label.rq": "No changes found.", + "updated_property_object_property_history_note.rq": "No changes found.", + "updated_property_object_property_is_defined_by.rq": "No changes found.", + "updated_property_object_property_label.rq": "No changes found.", + "updated_property_object_property_note.rq": "No changes found.", + "updated_property_object_property_pref_label.rq": "No changes found.", + "updated_property_object_property_range.rq": "No changes found.", + "updated_property_object_property_scope_note.rq": "No changes found.", + "updated_property_object_property_sub_property_of.rq": "No changes found.", + "updated_property_ontology_comment.rq": "No changes found.", + "updated_property_ontology_created.rq": "No changes found.", + "updated_property_ontology_description.rq": "No changes found.", + "updated_property_ontology_imports.rq": "No changes found.", + "updated_property_ontology_incompatible_with.rq": "No changes found.", + "updated_property_ontology_issued.rq": "No changes found.", + "updated_property_ontology_label.rq": "No changes found.", + "updated_property_ontology_license.rq": "No changes found.", + "updated_property_ontology_preferred_namespace_prefix.rq": "No changes found.", + "updated_property_ontology_preferred_namespace_uri.rq": "No changes found.", + "updated_property_ontology_prior_version.rq": "No changes found.", + "updated_property_ontology_publisher.rq": "No changes found.", + "updated_property_ontology_see_also.rq": "No changes found.", + "updated_property_ontology_title.rq": "No changes found.", + "updated_property_ontology_version_info.rq": "No changes found.", + "updated_property_ontology_version_iri.rq": "No changes found." +} diff --git a/test/testData/rdf-differ-data/ePO_sample-4.0.0.orig.ttl b/test/testData/rdf-differ-data/ePO_sample-4.0.0.orig.ttl new file mode 100644 index 0000000..8a6198a --- /dev/null +++ b/test/testData/rdf-differ-data/ePO_sample-4.0.0.orig.ttl @@ -0,0 +1,122 @@ +@prefix : . +@prefix adms: . +@prefix at-voc: . +@prefix at-voc-new: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix locn: . +@prefix org: . +@prefix owl: . +@prefix person: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix time: . +@prefix vann: . +@prefix xsd: . + +:AccessTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm, + :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021"@en ; + skos:prefLabel "Access term"@en . + +:AcquiringCentralPurchasingBody a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :CentralPurchasingBody ; + skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; + skos:prefLabel "Acquiring central purchasing body"@en . + +:AdHocChannel a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf cccev:Channel ; + skos:definition "Web page where tools and devices for electronic communication that are not generally available can be downloaded free of charge. Additional Information: This corresponds in eForms to BT-724 Tool Atypical. WG Acceptance 10/01/2023"@en ; + skos:prefLabel "Ad hoc channel"@en . + +:AwardCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriteriaSummary ; + skos:prefLabel "Award criteria summary"@en . + +:actsOnBehalfOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf))"@en ; + skos:prefLabel "Acts on behalf of"@en . + +:describesProfession a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes profession"@en . + +:describesProfessionRelevantLaw a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes profession relevant law"@en . + +:describesResultNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes result notice"@en . + +:describesVerificationMethod a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes verification method"@en . + +:distributesOffer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Distributes offer"@en . + +:exposesChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Exposes channel"@en . + +:exposesInvoiceeChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Exposes invoicee channel"@en . + +:Document a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019"@en ; + skos:prefLabel "Document"@en . + +:LotSpecificTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Gathering class for conditions and stipulations related to a Lot."@en ; + skos:prefLabel "Lot specific term"@en . + +:AcquiringParty a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AgentInRole ; + skos:definition "The Role of an Agent that acts on the buying side of a Procurement Process."@en ; + skos:prefLabel "Acquiring party"@en . + +:core a owl:Ontology ; + rdfs:label "eProcurement Ontology - core"@en ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; + dcterms:issued "2023-11-09"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology - core"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from ePO_core.xml on 2023-11-09" ; + rdfs:seeAlso , + , + , + ; + owl:imports cccev:, + dcterms:, + vann:, + , + , + , + , + org:, + , + foaf: ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#core-3.1.0" ; + owl:versionIRI :core-4.0.0 ; + owl:versionInfo "4.0.0" . + diff --git a/test/testData/rdf-differ-data/ePO_sample-4.0.0.upd.ttl b/test/testData/rdf-differ-data/ePO_sample-4.0.0.upd.ttl new file mode 100644 index 0000000..7aba84a --- /dev/null +++ b/test/testData/rdf-differ-data/ePO_sample-4.0.0.upd.ttl @@ -0,0 +1,141 @@ +@prefix : . +@prefix adms: . +@prefix at-voc: . +@prefix at-voc-new: . +@prefix cccev: . +@prefix dcterms: . +@prefix foaf: . +@prefix locn: . +@prefix org: . +@prefix owl: . +@prefix person: . +@prefix rdf: . +@prefix rdfs: . +@prefix skos: . +@prefix time: . +@prefix vann: . +@prefix xsd: . +@prefix core-shape: . +@prefix sh: . + +:AccessTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :LotSpecificTerm, + :ProcedureSpecificTerm ; + skos:definition "Conditions and stipulations about where and how to access the Procurement Documents. WG Approval 09/03/2021"@en . + +:AcquiringCentralPurchasingBody a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :CentralPurchasingBody ; + skos:definition "Role of an Agent procuring activities conducted on a permanent basis in the form of the acquisition of supplies and/or services intended for other Buyers. Additional Information: In Public Procurement the Role of Acquiring Central Purchasing Body is carried out by a Central Purchasing Body for other Contracting Authorities. WG approval 05/08/2021"@en ; + rdfs:label "Acquiring central purchasing body"@en . + +:AwardCriteriaSummary a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriteriaSummary ; + skos:altLabel "Award criteria summary"@en ; + skos:prefLabel "Award criteria summarization"@en . + +:AwardCriterion a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :ProcurementCriterion ; + skos:definition "Criterion that describes a Requirement that the Tender needs to resolve and on which the Tender is evaluated and ranked. WG approval 05/11/2018"@en ; + skos:prefLabel "Award criterion"@en . + +:actsOnBehalfOf a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:definition "Represents. (epo:ProcurementServiceProvider -> epo:Buyer (+epo:actsOnBehalfOf))"@en ; + skos:prefLabel "Acts on behalf of"@de . + +:describesObjectiveParticipationRules a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes objective participation rules"@en . + +:describesProfession a owl:DatatypeProperty ; + rdfs:isDefinedBy :core ; + rdfs:label "Describes profession" ; + skos:prefLabel "Describes profession"@en . + +:describesResultNotice a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes result notice"@en ; + skos:altLabel "Describes result form"@en . + +:describesVerificationMethod a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Describes verification method"@en . + +:distributesOffer a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Distributes offer" . + +:exposesInvoiceeChannel a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + rdfs:label "Exposes invoicee channel"@en ; + skos:prefLabel "Exposes invoicee channel"@en . + +:followsRulesSetBy a owl:ObjectProperty ; + rdfs:isDefinedBy :core ; + skos:prefLabel "Follows rules set by"@en . + +:Document a owl:Class ; + rdfs:isDefinedBy :core ; + skos:definition "A set of interrelated Business Information representing the Business facts and associated metadata. The information may be conveyed in any language, medium or form, including textual, numerical, graphic, cartographic, audio-visual forms, etc. WG Approval 23/05/2019"@en ; + skos:prefLabel "Document"@en , "Documento"@es . + +:LotSpecificTerm a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :Term ; + skos:definition "Gathering class for conditions and stipulations related to a Lot."@en ; + skos:prefLabel "Lot specific term"@en . + +:AcquiringParty a owl:Class ; + rdfs:isDefinedBy :core ; + rdfs:subClassOf :AgentInRole ; + skos:definition "The Role of an Agent that acts on the buying side of a Procurement Process."@en ; + skos:prefLabel "Acquiring party"@en . + +:core a owl:Ontology ; + rdfs:label "eProcurement Ontology - core"@en ; + dcterms:created "2021-06-01"^^xsd:date ; + dcterms:description "The eProcurement Ontology core describes the concepts and properties representing the European Public Procurement domain. The provision of these semantics offers the basis for a common understanding of the domain for all stakeholders ensuring the quality of data exchange and transparency. The ontology restrictions are published in a separate artefact."@en ; + dcterms:issued "2023-11-09"^^xsd:date ; + dcterms:license "© European Union, 2014. Unless otherwise noted, the reuse of the Ontology is authorised under the European Union Public Licence v1.2 (https://eupl.eu/)." ; + dcterms:publisher "http://publications.europa.eu/resource/authority/corporate-body/PUBL" ; + dcterms:title "eProcurement Ontology - core"@en ; + vann:preferredNamespacePrefix "epo" ; + vann:preferredNamespaceUri "http://data.europa.eu/a4g/ontology#" ; + rdfs:comment "This version is automatically generated from ePO_core.xml on 2023-11-09" ; + rdfs:seeAlso , + , + , + ; + owl:imports cccev:, + dcterms:, + vann:, + , + , + , + , + org:, + , + foaf: ; + owl:incompatibleWith "3.1.0" ; + owl:priorVersion "http://data.europa.eu/a4g/ontology#core-3.1.0" ; + owl:versionIRI :core-4.0.0 ; + owl:versionInfo "4.0.0" . + +core-shape:epo-PurchaseContract a sh:NodeShape ; + rdfs:label "Purchase contract" ; + rdfs:comment "A Contract resulting from using a Dynamic Purchasing System Technique or Framework Agreement Technique." ; + rdfs:isDefinedBy core-shape:core-shape ; + sh:property core-shape:epo-PurchaseContract-epo-followsRulesSetBy, + core-shape:epo-PurchaseContract-epo-resultsFromMiniCompetitionAwardOutcome ; + sh:targetClass :PurchaseContract . + +core-shape:epo-PurchaseContract-epo-followsRulesSetBy a sh:PropertyShape ; + sh:class :FrameworkAgreement ; + sh:maxCount 1 ; + sh:name "Follows rules set by" ; + sh:path :followsRulesSetBy ; + sh:sparql [ sh:select "SELECT ?this ?that WHERE { ?this ?that . ?that ?this .}" ] .