diff --git a/ted_sws/data_manager/adapters/mapping_suite_repository.py b/ted_sws/data_manager/adapters/mapping_suite_repository.py
index 284f01ee2..dc86147c1 100644
--- a/ted_sws/data_manager/adapters/mapping_suite_repository.py
+++ b/ted_sws/data_manager/adapters/mapping_suite_repository.py
@@ -31,6 +31,8 @@
MS_STANDARD_METADATA_VERSION_KEY = 'version'
MS_EFORMS_METADATA_VERSION_KEY = 'mapping_version'
MS_METADATA_CONSTRAINTS_KEY = 'metadata_constraints'
+MS_METADATA_CONSTRAINTS_START_DATE_KEY = 'start_date'
+MS_METADATA_CONSTRAINTS_END_DATE_KEY = 'end_date'
MS_CONSTRAINTS_KEY = 'constraints'
MS_TITLE_KEY = 'title'
MS_HASH_DIGEST_KEY = 'mapping_suite_hash_digest'
@@ -134,6 +136,26 @@ def __init__(self, repository_path: pathlib.Path):
self.repository_path = repository_path
self.repository_path.mkdir(parents=True, exist_ok=True)
+ def _preprocess_package_metadata(self, package_metadata: dict):
+ """
+ This method is adjusting the metadata structure to be fully compatible.
+ :param package_metadata:
+ :return:
+ """
+ if MS_METADATA_CONSTRAINTS_KEY in package_metadata:
+ metadata_constraints = package_metadata[MS_METADATA_CONSTRAINTS_KEY]
+ if MS_CONSTRAINTS_KEY in metadata_constraints:
+ constraints = metadata_constraints[MS_CONSTRAINTS_KEY]
+ if MS_METADATA_CONSTRAINTS_START_DATE_KEY in constraints:
+ start_date_value = constraints[MS_METADATA_CONSTRAINTS_START_DATE_KEY]
+ if start_date_value and not isinstance(start_date_value, list):
+ package_metadata[MS_METADATA_CONSTRAINTS_KEY][MS_CONSTRAINTS_KEY][
+ MS_METADATA_CONSTRAINTS_START_DATE_KEY] = [start_date_value]
+ end_date_value = constraints[MS_METADATA_CONSTRAINTS_END_DATE_KEY]
+ if end_date_value and not isinstance(end_date_value, list):
+ package_metadata[MS_METADATA_CONSTRAINTS_KEY][MS_CONSTRAINTS_KEY][
+ MS_METADATA_CONSTRAINTS_END_DATE_KEY] = [end_date_value]
+
def _read_package_metadata(self, package_path: pathlib.Path) -> dict:
"""
This method allows reading the metadata of a packet.
@@ -143,6 +165,7 @@ def _read_package_metadata(self, package_path: pathlib.Path) -> dict:
package_metadata_path = package_path / MS_METADATA_FILE_NAME
package_metadata_content = package_metadata_path.read_text(encoding="utf-8")
package_metadata = json.loads(package_metadata_content)
+ self._preprocess_package_metadata(package_metadata)
return package_metadata
def _read_transformation_rule_set(self, package_path: pathlib.Path) -> TransformationRuleSet:
@@ -346,8 +369,8 @@ def _read_mapping_suite_package(self, mapping_suite_identifier: str) -> Optional
package_path = self.repository_path / mapping_suite_identifier
if package_path.is_dir():
package_metadata = self._read_package_metadata(package_path)
- if MS_MAPPING_TYPE_KEY in package_metadata and package_metadata[
- MS_MAPPING_TYPE_KEY] == MappingSuiteType.ELECTRONIC_FORMS:
+ if (MS_MAPPING_TYPE_KEY in package_metadata and
+ package_metadata[MS_MAPPING_TYPE_KEY] == MappingSuiteType.ELECTRONIC_FORMS):
package_metadata[MS_METADATA_CONSTRAINTS_KEY] = MetadataConstraints(
constraints=MetadataConstraintsEform(
**package_metadata[MS_METADATA_CONSTRAINTS_KEY][MS_CONSTRAINTS_KEY]))
@@ -363,9 +386,7 @@ def _read_mapping_suite_package(self, mapping_suite_identifier: str) -> Optional
mapping_suite_hash_digest=package_metadata[MS_HASH_DIGEST_KEY],
mapping_type=package_metadata[
MS_MAPPING_TYPE_KEY] if MS_MAPPING_TYPE_KEY in package_metadata else MappingSuiteType.STANDARD_FORMS,
- version=package_metadata[
- MS_STANDARD_METADATA_VERSION_KEY] if MS_STANDARD_METADATA_VERSION_KEY in package_metadata else \
- package_metadata[MS_EFORMS_METADATA_VERSION_KEY],
+ version=mapping_suite_read_version_from_metadata(package_metadata),
identifier=package_metadata[
MS_METADATA_IDENTIFIER_KEY] if MS_METADATA_IDENTIFIER_KEY in package_metadata else mapping_suite_identifier,
transformation_rule_set=self._read_transformation_rule_set(package_path),
@@ -421,3 +442,9 @@ def clear_repository(self):
:return:
"""
shutil.rmtree(self.repository_path)
+
+
+def mapping_suite_read_version_from_metadata(metadata: dict) -> str:
+ version_key = MS_EFORMS_METADATA_VERSION_KEY if MS_MAPPING_TYPE_KEY in metadata and metadata[
+ MS_MAPPING_TYPE_KEY] == MappingSuiteType.ELECTRONIC_FORMS else MS_STANDARD_METADATA_VERSION_KEY
+ return metadata.get(version_key)
diff --git a/ted_sws/mapping_suite_processor/adapters/mapping_suite_hasher.py b/ted_sws/mapping_suite_processor/adapters/mapping_suite_hasher.py
index c8550ffe9..4223d12dc 100644
--- a/ted_sws/mapping_suite_processor/adapters/mapping_suite_hasher.py
+++ b/ted_sws/mapping_suite_processor/adapters/mapping_suite_hasher.py
@@ -7,12 +7,15 @@
""" """
import hashlib
+import json
import pathlib
import re
from typing import Tuple, List, Union
+from ted_sws.core.model.transform import MappingSuiteType
from ted_sws.data_manager.adapters.mapping_suite_repository import MS_TRANSFORM_FOLDER_NAME, \
- MS_CONCEPTUAL_MAPPING_FILE_NAME, MS_MAPPINGS_FOLDER_NAME, MS_RESOURCES_FOLDER_NAME
+ MS_MAPPINGS_FOLDER_NAME, MS_RESOURCES_FOLDER_NAME, MS_CONCEPTUAL_MAPPING_FILE_NAME, MS_MAPPING_TYPE_KEY
+from ted_sws.mapping_suite_processor.model.mapping_suite_metadata import EFormsPackageMetadataBase
class MappingSuiteHasher:
@@ -20,8 +23,19 @@ class MappingSuiteHasher:
"""
- def __init__(self, mapping_suite_path: Union[pathlib.Path, str]):
- self.mapping_suite_path = pathlib.Path(mapping_suite_path)
+ def __init__(self, mapping_suite_path: pathlib.Path, mapping_suite_metadata: dict = None):
+ self.mapping_suite_path = mapping_suite_path
+ self.mapping_suite_metadata = mapping_suite_metadata
+
+ if self.is_for_eforms():
+ self.mapping_suite_metadata = EFormsPackageMetadataBase(**mapping_suite_metadata).dict()
+
+ def is_for_eforms(self):
+ return (
+ self.mapping_suite_metadata and
+ MS_MAPPING_TYPE_KEY in self.mapping_suite_metadata and
+ self.mapping_suite_metadata.get(MS_MAPPING_TYPE_KEY) == MappingSuiteType.ELECTRONIC_FORMS
+ )
def hash_critical_mapping_files(self) -> List[Tuple[str, str]]:
"""
@@ -43,17 +57,19 @@ def _hash_a_file(file_path: pathlib.Path) -> Tuple[str, str]:
relative_path = str(file_path).replace(str(self.mapping_suite_path), "")
return relative_path, hashed_line
- files_to_hash = [
+ files_to_hash = [] if self.is_for_eforms() else [
self.mapping_suite_path / MS_TRANSFORM_FOLDER_NAME / MS_CONCEPTUAL_MAPPING_FILE_NAME,
]
- mapping_files = filter(lambda item: item.is_file(),
- (self.mapping_suite_path / MS_TRANSFORM_FOLDER_NAME /
- MS_MAPPINGS_FOLDER_NAME).iterdir())
+ mapping_files = filter(
+ lambda item: item.is_file(),
+ (self.mapping_suite_path / MS_TRANSFORM_FOLDER_NAME / MS_MAPPINGS_FOLDER_NAME).iterdir()
+ )
- mapping_resource_files = filter(lambda item: item.is_file(),
- (self.mapping_suite_path / MS_TRANSFORM_FOLDER_NAME /
- MS_RESOURCES_FOLDER_NAME).iterdir())
+ mapping_resource_files = filter(
+ lambda item: item.is_file(),
+ (self.mapping_suite_path / MS_TRANSFORM_FOLDER_NAME / MS_RESOURCES_FOLDER_NAME).iterdir()
+ )
files_to_hash += mapping_files
files_to_hash += mapping_resource_files
@@ -62,6 +78,11 @@ def _hash_a_file(file_path: pathlib.Path) -> Tuple[str, str]:
result.sort(key=lambda x: x[0])
return result
+ def hash_mapping_metadata(self) -> str:
+ return hashlib.sha256(
+ json.dumps(self.mapping_suite_metadata).encode('utf-8')
+ ).hexdigest()
+
def hash_mapping_suite(self, with_version: str = "") -> str:
"""
Returns a hash of the mapping suite.
@@ -74,6 +95,11 @@ def hash_mapping_suite(self, with_version: str = "") -> str:
"""
list_of_hashes = self.hash_critical_mapping_files()
signatures = [signature[1] for signature in list_of_hashes]
+
+ if self.is_for_eforms():
+ signatures.append(self.hash_mapping_metadata())
+
if with_version:
signatures += with_version
+
return hashlib.sha256(str.encode(",".join(signatures))).hexdigest()
diff --git a/ted_sws/mapping_suite_processor/adapters/mapping_suite_structure_checker.py b/ted_sws/mapping_suite_processor/adapters/mapping_suite_structure_checker.py
index c028983c7..b1aabfd45 100644
--- a/ted_sws/mapping_suite_processor/adapters/mapping_suite_structure_checker.py
+++ b/ted_sws/mapping_suite_processor/adapters/mapping_suite_structure_checker.py
@@ -1,16 +1,15 @@
-import json
import pathlib
from typing import List, Union
-from ted_sws.core.model.transform import MetadataConstraints
from ted_sws.data_manager.adapters.mapping_suite_repository import MS_TRANSFORM_FOLDER_NAME, MS_TEST_DATA_FOLDER_NAME, \
MS_CONCEPTUAL_MAPPING_FILE_NAME, MS_RESOURCES_FOLDER_NAME, MS_MAPPINGS_FOLDER_NAME, MS_METADATA_FILE_NAME, \
- MS_VALIDATE_FOLDER_NAME, MS_SPARQL_FOLDER_NAME, MS_SHACL_FOLDER_NAME, MS_OUTPUT_FOLDER_NAME, MS_TEST_SUITE_REPORT
+ MS_VALIDATE_FOLDER_NAME, MS_SPARQL_FOLDER_NAME, MS_SHACL_FOLDER_NAME, MS_OUTPUT_FOLDER_NAME, MS_TEST_SUITE_REPORT, \
+ mapping_suite_read_version_from_metadata
from ted_sws.event_manager.model.event_message import EventMessage, EventMessageLogSettings
from ted_sws.event_manager.services.logger_from_context import get_console_logger
from ted_sws.mapping_suite_processor.adapters.mapping_suite_hasher import MappingSuiteHasher
from ted_sws.mapping_suite_processor.services.mapping_suite_reader import mapping_suite_read_metadata, \
- MAPPING_SUITE_HASH, VERSION_KEY
+ MAPPING_SUITE_HASH
SHACL_KEYWORD = "shacl"
SPARQL_KEYWORD = "sparql"
@@ -143,19 +142,20 @@ def check_for_changes_by_version(self) -> bool:
settings=self.log_settings)
success = True
- metadata = mapping_suite_read_metadata(mapping_suite_path=self.mapping_suite_path)
+ mapping_suite_metadata = mapping_suite_read_metadata(mapping_suite_path=self.mapping_suite_path)
+ version = mapping_suite_read_version_from_metadata(mapping_suite_metadata)
- version = metadata.get(VERSION_KEY)
+ mapping_suite_versioned_hash = MappingSuiteHasher(
+ mapping_suite_path=self.mapping_suite_path,
+ mapping_suite_metadata=mapping_suite_metadata
+ ).hash_mapping_suite(with_version=version)
- mapping_suite_versioned_hash = MappingSuiteHasher(self.mapping_suite_path).hash_mapping_suite(
- with_version=version)
-
- if mapping_suite_versioned_hash != metadata.get(MAPPING_SUITE_HASH):
+ if mapping_suite_versioned_hash != mapping_suite_metadata.get(MAPPING_SUITE_HASH):
self.logger.error(
event_message=EventMessage(
message=f'The Mapping Suite hash digest ({mapping_suite_versioned_hash}) '
f'does not correspond to the one in the metadata.json file '
- f'({metadata.get(MAPPING_SUITE_HASH)}.'
+ f'({mapping_suite_metadata.get(MAPPING_SUITE_HASH)}.'
),
settings=self.log_settings
)
diff --git a/ted_sws/mapping_suite_processor/model/__init__.py b/ted_sws/mapping_suite_processor/model/__init__.py
new file mode 100644
index 000000000..e69de29bb
diff --git a/ted_sws/mapping_suite_processor/model/mapping_suite_metadata.py b/ted_sws/mapping_suite_processor/model/mapping_suite_metadata.py
new file mode 100644
index 000000000..43cb2d695
--- /dev/null
+++ b/ted_sws/mapping_suite_processor/model/mapping_suite_metadata.py
@@ -0,0 +1,19 @@
+from typing import Optional
+
+from pydantic import BaseModel
+
+from ted_sws.core.model.transform import MappingSuiteType, MetadataConstraints
+
+
+class EFormsPackageMetadataBase(BaseModel):
+ identifier: str
+ title: str
+ created_at: str
+ description: str
+ mapping_version: str
+ ontology_version: str
+ mapping_type: Optional[MappingSuiteType] = MappingSuiteType.ELECTRONIC_FORMS
+ metadata_constraints: MetadataConstraints
+
+ class Config:
+ use_enum_values = True
diff --git a/ted_sws/mapping_suite_processor/services/mapping_suite_reader.py b/ted_sws/mapping_suite_processor/services/mapping_suite_reader.py
index 6e90b47f1..2a537cb0f 100644
--- a/ted_sws/mapping_suite_processor/services/mapping_suite_reader.py
+++ b/ted_sws/mapping_suite_processor/services/mapping_suite_reader.py
@@ -1,9 +1,12 @@
from pathlib import Path
from typing import Dict
+from ted_sws.core.model.transform import MappingSuiteType
from ted_sws.mapping_suite_processor.adapters.mapping_suite_reader import MappingSuiteReader
-VERSION_KEY = "version"
+STANDARD_FORM_VERSION_KEY = "version"
+EFORM_VERSION_KEY = "mapping_version"
+MAPPING_TYPE_KEY = "mapping_type"
MAPPING_SUITE_HASH = "mapping_suite_hash_digest"
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/metadata.json b/tests/test_data/mapping_suite_processor/mappings/package_eforms/metadata.json
new file mode 100644
index 000000000..27f1e93d3
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/metadata.json
@@ -0,0 +1,36 @@
+{
+ "identifier": "package_eforms_10-24_v1.9",
+ "title": "Package EF10-EF24, SDK v1.9",
+ "created_at": "2024-04-24 17:07:38.786702",
+ "description": "This is the conceptual mapping for eForms subtype 10-24 SDK version 1.9",
+ "mapping_version": "3.0.0-alpha.3",
+ "ontology_version": "4.0.0",
+ "mapping_type": "eforms",
+ "metadata_constraints": {
+ "constraints": {
+ "eforms_subtype": [
+ "10",
+ "11",
+ "12",
+ "13",
+ "14",
+ "15",
+ "16",
+ "17",
+ "18",
+ "19",
+ "20",
+ "21",
+ "22",
+ "23",
+ "24"
+ ],
+ "start_date": null,
+ "end_date": null,
+ "eforms_sdk_versions": [
+ "1.9"
+ ]
+ }
+ },
+ "mapping_suite_hash_digest": "8940944c0f7e7f5761ab52d09a4e9ad51bee5cd150736f528c8d743e27ea2aaa"
+}
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_cumbria_suppliers.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_cumbria_suppliers.xml
new file mode 100644
index 000000000..03fac06ff
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_cumbria_suppliers.xml
@@ -0,0 +1,441 @@
+
+
+
+
+
+
+
+
+ 6bc75979-ce6c-46eb-81a6-eee543697dec-01
+
+ PROCEDURE
+ Short description modified
+ 2020-04-14+02:00
+ true
+
+
+ LOT-0000
+ Description of the procurement modified
+ 2020-04-14+02:00
+ true
+
+
+ cor-buy
+ Change number of suppliers envisaged.
+
+
+
+ 16
+
+
+
+
+ http://www.cumbria.gov.uk/
+ http://www.cumbria.gov.uk/
+
+ ORG-0001
+
+
+ Cumbria County Council
+
+
+ Cumbria House, 107-117 Botchergate
+ Carlisle
+ CA1 1RD
+ UKD12
+
+ GBR
+
+
+
+ xyz
+
+
+ Procurement contact point
+ +44 1228221743
+ +44 12282217439
+ procurement@cumbria.gov.uk
+
+
+
+
+
+ https://court.gov.uk
+
+ ORG-0002
+
+
+ Her Majestys Court Service
+
+
+ London
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 123 456 789
+
+
+ (+12)34567890
+ (+12)345678909
+ contact@example.com
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 92521e66-3cd5-4a5f-bea1-51991d5871ea
+ 9af3b735-9d6c-45c8-8c39-d58fb9fa824b
+ 2020-04-09+01:00
+ 12:00:00+01:00
+ 01
+ 32014L0024
+ corr
+ ENG
+
+
+ la
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+
+
+ crime-org
+ Applicants not satisfying...
+
+
+ corruption
+ Applicants not satisfying...
+
+
+ fraud
+ Applicants not satisfying...
+
+
+ terr-offence
+ Applicants not satisfying...
+
+
+ finan-laund
+ Applicants not satisfying...
+
+
+ human-traffic
+ Applicants not satisfying...
+
+
+ tax-pay
+ Applicants not satisfying...
+
+
+ socsec-pay
+ Applicants not satisfying...
+
+
+ envir-law
+ Applicants not satisfying...
+
+
+ socsec-law
+ Applicants not satisfying...
+
+
+ labour-law
+ Applicants not satisfying...
+
+
+ insolvency
+ Applicants not satisfying...
+
+
+
+
+ open
+
+
+ DN474002
+ School Payroll and HR Admin Services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+ services
+
+ 1230000
+
+
+ 79000000
+
+
+
+ UKD12
+
+ GBR
+
+
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Not available
+ used
+
+
+ ef-stand
+ Not available
+ used
+
+
+ tp-abil
+ Not available
+ used
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ false
+
+
+ SomeDocID1
+ non-restricted-document
+ ENG
+
+
+ https://www.the-chest.org.uk/
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 65
+
+
+
+
+
+ quality
+ Quality
+ The quality is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 35
+
+
+
+
+
+ price
+ Price
+ The price is evaluated by...
+
+
+
+
+ https://www.the-chest.org.uk/
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ An appeal can...
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ false
+ false
+
+
+
+ allowed
+ true
+ https://www.the-chest.org.uk/
+
+ 2020-05-11+01:00
+ 10:00:00+01:00
+
+
+ false
+
+
+ 10
+
+
+ fa-wo-rc
+
+
+ none
+
+
+
+ 1
+ School Payroll and HR Admin Services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+ services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+
+ 79000000
+
+
+
+ UKD12
+
+ GBR
+
+
+
+
+ 2020-11-01+01:00
+ 2024-03-30+02:00
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_open_dates.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_open_dates.xml
new file mode 100644
index 000000000..102cadd73
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_open_dates.xml
@@ -0,0 +1,506 @@
+
+
+
+
+
+
+
+
+ c4c415ee-ac08-4465-8fa6-57568cf69462-01
+
+ LOT-0000
+ Time limit for receipt of tenders or requests to participate
+
+
+ LOT-0000
+ Conditions for opening of tenders
+
+
+ update-add
+ Due to Covid-19 and the UK Government’s decision to extend the UK lockdown period for an additional 3 weeks the timescales applicable to this contract notice have been extended accordingly.
+
+
+
+ 16
+
+
+
+
+ http://www.renfrewshire.gov.uk
+
+ ORG-0001
+
+
+ Renfrewshire Council
+
+
+ Renfrewshire House, Cotton Street
+ Paisley
+ PA1 1JB
+ UKM83
+
+ GBR
+
+
+
+ not available
+
+
+ (+12)34567890
+ (+12)345678909
+ douglas.mcewan@renfrewshire.gov.uk
+
+
+
+
+
+ https://sheriff.gov.uk
+
+ ORG-0002
+
+
+ Sheriff Court
+
+
+ Sheriff Street
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 123 456 789
+
+
+ (+12)34567890
+ (+12)345678909
+ contact@example.com
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 71397268-6c47-4f2f-8ab0-f41a26138f81
+ 31f258b6-5eb2-4875-8997-affa3cdce27c
+ 2020-04-17+01:00
+ 12:34:56+01:00
+ 01
+ 32014L0024
+ corr
+ ENG
+
+ https://www.publiccontractsscotland.gov.uk/search/Search_AuthProfile.aspx?ID=AA00400
+
+ la
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+
+
+ crime-org
+ NOT AVAILABLE
+
+
+ corruption
+ NOT AVAILABLE
+
+
+ fraud
+ NOT AVAILABLE
+
+
+ terr-offence
+ NOT AVAILABLE
+
+
+ finan-laund
+ NOT AVAILABLE
+
+
+ human-traffic
+ NOT AVAILABLE
+
+
+ tax-pay
+ NOT AVAILABLE
+
+
+ socsec-pay
+ NOT AVAILABLE
+
+
+ envir-law
+ NOT AVAILABLE
+
+
+ socsec-law
+ NOT AVAILABLE
+
+
+ labour-law
+ NOT AVAILABLE
+
+
+ insolvency
+ Bidders will be required to state if any of the exclusion grounds as detailed within Regulation 58 (1) of The Public Contracts (Scotland) Regulations 2015 apply to them. — If required by the member state, bidders are required to be enrolled in the relevant professional or trade registers within the country in which they are established (in the United Kingdom, the bidder is a company registered with the Registrar of Companies and can provide a certificate stating that he is certified as incorporated or registered or, where he is not so certified, a certificate stating that the person concerned has declared on oath that he is engaged in the profession in a specific place under a given business name). — Bidders will be required to state if it is a requirement in the bidder’s country of establishment to hold a particular authorisation or membership of a particular organisation in order to be able to perform the service in question. Where it is required, within a bidder’s country of establishment they must confirm which authorisation or memberships of the relevant organisation(s) are required in order to perform this service and also must confirm if they hold the particular authorisation or memberships.
+
+
+
+
+ open
+
+
+ RC-CPU-19-065
+ Term Contract for a Planned Programme of In-service Inspection and Testing of Electrical Equipment
+ The purpose of this contract is to formalise the Councils requirement to employ a contractor to carry out a planned programme of in-service inspection and testing of electrical equipment within the Councils public buildings.
+ services
+ The anticipated annual value of this contract is estimated to be GBP 90 0000.00 to GBP 100 000.00.
+
+ 500000
+
+
+ 71630000
+
+
+ 71314100
+
+
+ 50300000
+
+
+ 31600000
+
+
+ Public buildings within the geographical area of Renfrewshire Council.
+
+ UKM83
+
+ GBR
+
+
+
+
+
+
+ the Council will have the option to extend the contract for additional periods up to a total of 24 months (it is at the Councils sole discretion the period of any extension awarded but the total of all extension periods awarded will not exceed 24 months).
+
+
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Bidders will be required to state if any of the exclusion grounds as detailed within Regulation 58 (1) of The Public Contracts (Scotland) Regulations 2015 apply to them. — If required by the member state, bidders are required to be enrolled in the relevant professional or trade registers within the country in which they are established (in the United Kingdom, the bidder is a company registered with the Registrar of Companies and can provide a certificate stating that he is certified as incorporated or registered or, where he is not so certified, a certificate stating that the person concerned has declared on oath that he is engaged in the profession in a specific place under a given business name). — Bidders will be required to state if it is a requirement in the bidder’s country of establishment to hold a particular authorisation or membership of a particular organisation in order to be able to perform the service in question. Where it is required, within a bidder’s country of establishment they must confirm which authorisation or memberships of the relevant organisation(s) are required in order to perform this service and also must confirm if they hold the particular authorisation or memberships.
+ used
+
+
+ ef-stand
+ Bidders will be required to have a minimum ‘general’ yearly turnover of GBP 200 000.00 for the last 3 years. Where turnover information is not available for the time period requested, the bidder will be required to state the date which they were set up/started trading. Where a bidder fails to meet the minimum financial turnover requirements in its own right but is a subsidiary of a group, the bidder must state if they are relying on a parent company guarantee (the parent company must meet the stipulated minimum financial requirements). The parent company guarantee will be in the form provided in the tender documentation (Appendix A1). Where a bidder is applying as part of a consortium the collective annual turnover of all consortium members will be utilised in the overall assessment of annual turnover. Bidders will require to evidence the equivalent of a Dun and Bradstreet Failure Score of 20 or above. If a bidder considers that the D&B failure score does not reflect their current financial status, the bidder should give a detailed explanation and will be required to provide any relevant supporting independent evidence at request for documentation stage. Where the bidder is a subsidiary of a group but is applying as a separate legal entity and fails to meet the minimum D&B Failure Score (or equivalent) as a company, a parent company guarantee will be required. The parent company must meet the minimum financial requirements as assessed by the Council. The parent company guarantee will be in the form provided in the tender documentation (Appendix A1). Where a bidder is under no obligation to publish accounts and therefore does not have a D&B failure score, they will be required to provide their audited financial accounts for the previous 2 years as part of the request for documentation stage in order that the Council may assess these to determine the suitability of the bidder to undertake a contract of this size. Where a consortium bid is received, the D&B failure score of each consortium member shall be assessed. Bidders must hold or can commit to obtain prior to the commence of any subsequently awarded contract, the types and levels of insurance indicated below: Employer’s (compulsory) liability insurance — minimum GBP 10 million each and every claim. Public and product liability insurance — minimum GBP 10 million each and every claim but in the aggregate for products. Statutory third party motor vehicle insurance. Minimum level(s) of standards possibly required: Minimum ‘general’ yearly turnover of GBP 200 000.00 for the last 3 years. Minimum Dun and Bradstreet Failure Score of 20 or equivalent credit rating. Employer’s (compulsory) liability insurance with a minimum indemnity limit of GBP 10 million each and every claim. Public and Product Liability Insurance with a minimum indemnity limit of GBP 10 million each and every claim but in the aggregate for products. Statutory third party motor vehicle insurance.
+ used
+
+
+ tp-abil
+ Bidders will be required to provide examples that demonstrate that they have the relevant experience to deliver the works/services required under this contract. Bidders will require to confirm that the personnel to be used in the execution of this contract possess the City and Guilds Level 3 Certificate for in-service inspections and testing of electrical equipment or other equivalent qualification relevant to the country where the bidder’s registered office or place of business is based. Bidders will be required to confirm their average annual manpower for the last 3 years and the number of managerial staff for the last 3 years. Bidders will be required to demonstrate that they have (or have access to) the relevant tools, plant or technical equipment to deliver the works/services required under this contract. Bidders will be required to confirm whether they intend to subcontract and, if so, for what proportion of the contract (where the bidder intends to subcontract more than 25 % of any contract value to a single subcontractor, a financial report will be carried out on the subcontractor. The Council reserve the right to request one copy of all subcontractors last 2 years audited accounts and details of significant changes since the last year end. The Council also reserve the right to reject the use of subcontractors in relation to the contract, where they fail to meet the Council's minimum financial criteria). Bidders must have health and safety accreditation to BS OHSAS 18001 (or equivalent) or have a documented policy for health and safety management, endorsed by the Chief Executive Officer or equivalent. Bidders must have quality management accreditation to BS EN ISO 9001 (or equivalent) or have a documented policy for quality management, endorsed by the Chief Executive Officer or equivalent. Bidders must have environmental management accreditation to BS EN ISO 14001 (or equivalent) or have a documented policy for environmental management, endorsed by the Chief Executive Officer or equivalent. Minimum level(s) of standards possibly required: Bidders must have previous relevant experience. Bidders personnel must have City and Guilds Level 3 certificate for in-service inspections and testing of electrical equipment or other equivalent qualification. Bidders must have the appropriate number of employees to successfully deliver this contract. Bidders must have the appropriate tools, plant and equipment to successfully deliver this contract. Bidders must state if they intend to subcontract any portion of this contract. Bidders must be accredited to BS OHSAS 18001 (or equivalent) or have a documented policy for health and safety management. Bidders must be accredited to BS EN ISO 9001 (or equivalent) or have a documented policy for quality management. Bidders must be accredited to BS EN ISO 14001 (or equivalent) or have a documented policy for environmental management
+ used
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ DocID1
+ non-restricted-document
+
+
+ https://www.publictendersscotland.publiccontractsscotland.gov.uk
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ not-allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 15
+
+
+
+
+
+ quality
+ Methodology and approach
+ The methodology is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 5
+
+
+
+
+
+ quality
+ Fair working practices
+ The quality working practices are evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 3
+
+
+
+
+
+ quality
+ Community benefits offered
+ The community benefits are evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 2
+
+
+
+
+
+ quality
+ Community benefit methodology
+ The community benefit methodology is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 75
+
+
+
+
+
+ price
+ Price
+ The price is evaluated by...
+
+
+
+
+
+ ORG-0001
+
+
+
+ https://www.publictendersscotland.publiccontractsscotland.gov.uk
+
+ ORG-0001
+
+
+
+ 150
+
+
+
+ Precise information on deadline(s) for review procedures: An economic operator that suffers or risks suffering, loss or damage attributable to a breach of duty under the Public Contracts (Scotland) Regulations 2015 (SSI 2015/446) may bring proceedings in the Sheriff Court or the Court of Session, provided that it has informed the contracting authority of the breach or apprehended breach of its duties and of its intention to bring proceedings relating to that breach. Proceedings must be brought within the timescales set out in the regulations.
+
+
+
+ ORG-0001
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ true
+ true
+
+
+
+ allowed
+ true
+
+ 2020-06-12+01:00
+ 12:00:00+01:00
+
+
+ 2020-06-12+01:00
+ 14:00:00+01:00
+ Strictly by invitation only.
+
+ Renfrewshire House, Cotton Street, Paisley.
+
+
+
+ false
+
+
+ none
+
+
+ none
+
+
+
+ Term Contract for a Planned Programme of In-service Inspection and Testing of Electrical Equipment
+ The purpose of this contract is to formalise the Councils requirement to employ a contractor to carry out a planned programme of in-service inspection and testing of electrical equipment within the Councils public buildings.
+ services
+
+ 71630000
+
+
+ 71314100
+
+
+ 50300000
+
+
+ 31600000
+
+
+ Public buildings within the geographical area of Renfrewshire Council.
+
+ UKM83
+
+ GBR
+
+
+
+
+ 2020-09-01+02:00
+ 36
+
+
+
+
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_void.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_void.xml
new file mode 100644
index 000000000..762d81d14
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/change-cn_24_void.xml
@@ -0,0 +1,228 @@
+
+
+
+
+
+
+
+
+ f42be27e-09cf-4f0e-a745-63ec689631e6-01
+
+ cancel
+ We cancel because...
+
+
+
+ 16
+
+
+
+
+
+ ORG-0001
+
+
+ Publications Office of the European Union
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ EU-PO
+
+
+ +352 292944331
+ op-appels-offres@publications.europa.eu
+
+
+
+
+
+
+ ORG-0003
+
+
+ General Court of the European Union
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ GCEU
+
+
+ +352 4303-1
+ GeneralCourt.Registry@curia.europa.eu
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 1d192942-a4a3-4833-8775-ca38f7ec09ca
+ 4805c409-5939-4be9-8abd-837f7a5fee23
+ 2019-12-21+01:00
+ 12:00:00+01:00
+ 01
+ 32014L0024
+ corr
+ ENG
+
+
+ eu-ins-bod-ag
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+
+
+
+
+ crime-org
+ As stated in the procurement documents.
+
+
+
+
+ open
+
+
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer),
+ with the possibility to extend the provision to other information systems.
+ services
+
+ 72230000
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ As stated in the procurement documents.
+ used
+
+
+ ef-stand
+ As stated in the procurement documents.
+ used
+
+
+ tp-abil
+ As stated in the procurement documents.
+ used
+
+
+
+
+
+ not-allowed
+ eu-funds
+
+ 5629
+ restricted-document
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ Within 2 months of the notification to the plaintiff, or, in absence thereof, of the day on which it came to the knowledge of the plaintiff. A complaint to the European Ombudsman does not have as an effect either to suspend this period or to open a new period for lodging appeals.
+
+
+
+ ORG-0001
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ true
+ true
+
+
+
+ required
+ true
+
+ 2020-02-04+02:00
+ 10:00:00+02:00
+
+
+ false
+
+
+ fa-wo-rc
+
+
+ none
+
+
+
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer),
+ with the possibility to extend the provision to other information systems.
+ services
+
+ 72230000
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_FRA_comments.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_FRA_comments.xml
new file mode 100644
index 000000000..78aadd5d2
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_FRA_comments.xml
@@ -0,0 +1,710 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+
+ https://www.marches-publics.info/accueil.htm
+
+ https://www.marches-publics.info/accueil.htm
+
+ ORG-0001
+
+
+
+ Rouen Habitat
+
+
+
+ 5 place du Général de Gaulle
+
+ Rouen Cedex 1
+
+ 76001
+
+ FRD22
+
+
+ FRA
+
+
+
+
+ 123 456 789
+
+
+
+ Info desk
+
+ +33 235156161
+
+ +33 235156169
+
+ contact@rouenhabitat.fr
+
+
+
+
+
+ http://rouen.tribunal-administratif.fr/
+
+ ORG-0002
+
+
+
+ Tribunal administratif de Rouen
+
+
+
+ 53 avenue Gustave Flaubert
+
+ Rouen
+
+ 76000
+
+ FRD22
+
+
+ FRA
+
+
+
+ 123 456 789
+
+
+
+
+
+ +33 232081270
+
+ +33 232081279
+
+ greffe.ta-rouen@juradm.fr
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0003
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+
+ da4d46e9-490b-41ff-a2ae-8166d356a619
+
+ e3cdabf1-e057-47a5-9210-b1f6fc757228
+
+ 2019-05-10+01:00
+ 00:00:00+01:00
+
+
+ 01
+
+ 32014L0024
+
+
+ cn-standard
+
+ FRA
+
+
+ http://www.marches-publics.info/accueil.htm
+
+
+ pub-undert-la
+
+
+
+ hc-am
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0003
+
+
+
+
+
+
+
+
+
+ crime-org
+ Les critères d'exclusion sont...
+
+
+ corruption
+ Les critères d'exclusion sont...
+
+
+ fraud
+ Les critères d'exclusion sont...
+
+
+ terr-offence
+ Les critères d'exclusion sont...
+
+
+ finan-laund
+ Les critères d'exclusion sont...
+
+
+ human-traffic
+ Les critères d'exclusion sont...
+
+
+ tax-pay
+ Les critères d'exclusion sont...
+
+
+ socsec-pay
+ Les critères d'exclusion sont...
+
+
+ envir-law
+ Les critères d'exclusion sont...
+
+
+ socsec-law
+ Les critères d'exclusion sont...
+
+
+ labour-law
+ Les critères d'exclusion sont...
+
+
+ insolvency
+ Les critères d'exclusion sont...
+
+
+
+
+ 1
+
+ 2
+
+
+
+
+ open
+
+
+
+ 19S0001
+
+ Service d'entretien de remise en état et de nettoyage des espaces verts
+
+ Service d'entretien de remise en état et de nettoyage des espaces verts.
+
+ services
+
+
+
+ 77310000
+
+
+
+
+ FRD22
+
+
+
+
+ FRA
+
+
+
+
+
+ LOT-0001
+
+
+
+
+
+
+ sui-act
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+ ef-stand
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+ tp-abil
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+
+
+
+
+ eu-funds
+
+ Whatever identifier
+ non-restricted-document
+
+
+ https://www.marches-publics.info/accueil.htm
+
+
+
+
+
+
+ none
+
+
+
+
+ no
+
+
+
+ required
+
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ price
+ Prix
+ Le prix contribue for 60 % …
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Qualité
+ La valeur technique participle pour 40 % …
+
+
+
+
+
+ ORG-0001
+
+
+
+
+ https://www.marches-publics.info/accueil.htm
+
+ ORG-0001
+
+
+
+
+ 6
+
+
+
+
+ Toute demande de revision doit être …
+
+
+
+ ORG-0002
+
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0002
+
+
+
+
+
+ FRA
+
+
+
+ false
+
+ false
+
+
+
+
+ allowed
+
+ true
+
+
+ 2019-06-24Z
+ 16:00:00Z
+
+
+
+ 2019-06-25Z
+ 09:00:00Z
+
+ Locaux de Rouen Habitat.
+
+
+
+
+ true
+ La solution d’enchères en ligne …
+ https://my-online-eauction.eu/
+
+
+
+ none
+
+
+
+ none
+
+
+
+
+ 1
+
+ Agence centre
+
+ Service d'entretien de remise en état et de nettoyage des espaces verts.
+
+ services
+
+ Il est ici précisé que dans le but de mieux assurer la satisfaction de ses besoins en s'adressant à une pluralité de cocontractants ou de favoriser l'émergence d'une plus grande concurrence, le pouvoir adjudicateur impose une limitation du nombre de lots attribués à 1 pour un même attributaire. La règle d'attribution est explicitée à l'article 3-7 du règlement de la consultation.
+
+
+
+ 77310000
+
+
+
+ La liste exhaustive des lieux d'exécution se trouve dans le document de consultation intitulé «Décomposition du prix global et forfaitaires (DPGF) lot 1».
+
+
+ FRD22
+
+
+ FRA
+
+
+
+
+
+ 2019-09-01+02:00
+
+ 2020-12-31+01:00
+
+
+
+ Options description ---
+
+ 3
+
+
+
+ L'accord-cadre est reconductible de manière tacite, dans les conditions définies au cahier des clauses administratives particulières, 3 fois, pour une période de 12 mois, à compter du 1.1.2021, sans pouvoir excéder le 31.12.2023.
+
+
+
+
+
+
+ LOT-0002
+
+
+
+
+
+
+ sui-act
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+ ef-stand
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+ tp-abil
+ Critères de sélection tels que mentionnés dans les documents de la consultation
+ used
+
+
+
+
+
+
+ eu-funds
+
+ Whatever identifier
+ non-restricted-document
+
+
+ https://www.marches-publics.info/accueil.htm
+
+
+
+
+
+
+ none
+
+
+
+
+ no
+
+
+
+ required
+
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ price
+ Prix
+ Le prix contribue for 40 % …
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Qualité
+ La valeur technique participle pour 60 % …
+
+
+
+
+
+ ORG-0001
+
+
+
+
+ https://www.marches-publics.info/accueil.htm
+
+ ORG-0001
+
+
+
+
+ 6
+
+
+
+
+ Toute demande de revision doit être …
+
+
+
+ ORG-0002
+
+
+
+
+
+ ORG-0002
+
+
+
+
+
+ ORG-0002
+
+
+
+
+
+ FRA
+
+
+
+ false
+
+ false
+
+
+
+
+ allowed
+
+ true
+
+
+ 2019-06-24Z
+ 16:00:00Z
+
+
+
+ 2019-06-25Z
+ 09:00:00Z
+
+ Locaux de Rouen Habitat.
+
+
+
+
+ true
+ La solution d’enchères en ligne …
+ https://my-online-eauction.eu/
+
+
+
+ none
+
+
+
+ none
+
+
+
+
+ 1
+
+ Agence Hauts de Rouen
+
+ Service d'entretien de remise en état et de nettoyage des espaces verts.
+
+ services
+
+ Il est ici précisé que dans le but de mieux assurer la satisfaction de ses besoins en s'adressant à une pluralité de cocontractants ou de favoriser l'émergence d'une plus grande concurrence, le pouvoir adjudicateur impose une limitation du nombre de lots attribués à 1 pour un même attributaire. La règle d'attribution est explicitée à l'article 3-7 du règlement de la consultation.
+
+
+
+ 77310000
+
+
+
+ La liste exhaustive des lieux d'exécution se trouve dans le document de consultation intitulé «Décomposition du prix global et forfaitaires (DPGF) lot 1».
+
+
+ FRD22
+
+
+ FRA
+
+
+
+
+
+ 2019-09-01+02:00
+
+ 2020-12-31+01:00
+
+
+
+ Options description ---
+
+ 3
+
+
+
+ L'accord-cadre est reconductible de manière tacite, dans les conditions définies au cahier des clauses administratives particulières, 3 fois, pour une période de 12 mois, à compter du 1.1.2021, sans pouvoir excéder le 31.12.2023.
+
+
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_cumbria.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_cumbria.xml
new file mode 100644
index 000000000..863d9ff12
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_cumbria.xml
@@ -0,0 +1,422 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+ http://www.cumbria.gov.uk/
+ http://www.cumbria.gov.uk/
+
+ ORG-0001
+
+
+ Cumbria County Council
+
+
+ Cumbria House, 107-117 Botchergate
+ Carlisle
+ CA1 1RD
+ UKD12
+
+ GBR
+
+
+
+ xyz
+
+
+ Procurement contact point
+ +44 1228221743
+ +44 12282217439
+ procurement@cumbria.gov.uk
+
+
+
+
+
+ https://court.gov.uk
+
+ ORG-0002
+
+
+ Her Majestys Court Service
+
+
+ London
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 123 456 789
+
+
+ (+12)34567890
+ (+12)345678909
+ contact@example.com
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 6bc75979-ce6c-46eb-81a6-eee543697dec
+ 9af3b735-9d6c-45c8-8c39-d58fb9fa824b
+ 2020-04-09+01:00
+ 12:00:00+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ENG
+
+
+ la
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+
+
+ crime-org
+ Applicants not satisfying...
+
+
+ corruption
+ Applicants not satisfying...
+
+
+ fraud
+ Applicants not satisfying...
+
+
+ terr-offence
+ Applicants not satisfying...
+
+
+ finan-laund
+ Applicants not satisfying...
+
+
+ human-traffic
+ Applicants not satisfying...
+
+
+ tax-pay
+ Applicants not satisfying...
+
+
+ socsec-pay
+ Applicants not satisfying...
+
+
+ envir-law
+ Applicants not satisfying...
+
+
+ socsec-law
+ Applicants not satisfying...
+
+
+ labour-law
+ Applicants not satisfying...
+
+
+ insolvency
+ Applicants not satisfying...
+
+
+
+
+ open
+
+
+ DN474002
+ School Payroll and HR Admin Services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+ services
+
+ 1230000
+
+
+ 79000000
+
+
+
+ UKD12
+
+ GBR
+
+
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Not available
+ used
+
+
+ ef-stand
+ Not available
+ used
+
+
+ tp-abil
+ Not available
+ used
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ false
+
+
+ SomeDocID1
+ non-restricted-document
+ ENG
+
+
+ https://www.the-chest.org.uk/
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 65
+
+
+
+
+
+ quality
+ Quality
+ The quality is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 35
+
+
+
+
+
+ price
+ Price
+ The price is evaluated by...
+
+
+
+
+ https://www.the-chest.org.uk/
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ An appeal can...
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ false
+ false
+
+
+
+ allowed
+ true
+ https://www.the-chest.org.uk/
+
+ 2020-05-11+01:00
+ 10:00:00+01:00
+
+
+ false
+
+
+ 10
+
+
+ fa-wo-rc
+
+
+ none
+
+
+
+ 1
+ School Payroll and HR Admin Services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+ services
+ The Council plans to establish a framework of suppliers who can offer an effective, timely and cost effective payroll and HR administration service to Non-Cheque Book Maintained Schools in Cumbria.
+ Currently there are 180 schools who plan to initially use this framework which are predominantly primary schools and range in size of staffing numbers however numbers may change subject to individual school needs.
+ It is envisaged that between four and six suppliers will be awarded onto the framework. Please note that any supplier scoring less than 50 % of the quality marks available will not be awarded a place on the framework.
+ Further competitions will be conducted under the framework by individual schools (or by the Council on behalf of individual schools) and these will be awarded on price alone.
+
+
+ 79000000
+
+
+
+ UKD12
+
+ GBR
+
+
+
+
+ 2020-11-01+01:00
+ 2024-03-30+02:00
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal.xml
new file mode 100644
index 000000000..8c98534c2
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal.xml
@@ -0,0 +1,1793 @@
+
+
+
+
+
+
+
+
+ 2023-03-23+01:00
+
+ 22:00:00+01:00
+
+ 16
+
+
+
+
+
+ https://www.fin-adm.com
+
+ https://endpoint-example.fin-adm.com
+
+
+ ORG-0001
+
+
+
+ Financial Adinistration for ...
+
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ Finance Division
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 998298
+
+
+
+ Info desk
+
+ +44 123456780
+
+ +44 123456789
+
+ info@fin-adm.com
+
+
+
+ http://tender-submit.fin-adm.com
+
+ TPO-0001
+
+
+ Procurement Department
+
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ Procurement Dpt
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+ Head of Procurement Department
+ +123 45678
+ +123 456789
+ proc-info@fin-adm.com
+
+
+
+ http://archives.fin-adm.com
+
+ TPO-0002
+
+
+ Fin Adm Archives
+
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ Fin Adm Archives Dpt
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ Proc Archives Dpt Lead
+
+ +44 123456776
+
+ +44 1234567769
+
+ proc-archi@fin-adm.com
+
+
+
+ http://tender-evaluation.fin-adm.com
+
+ TPO-0003
+
+
+ Tenders Evaluation Committee
+
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ Tenders Evaluation Committee
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ Evaluation Dpt
+
+ +44 123456777
+
+ +44 1234567779
+
+ proc-eval@fin-adm.com
+
+
+
+
+
+
+ https://www.fin-leg.com
+
+ https://contact.fin-leg.com
+
+
+ ORG-0002
+
+
+
+ TaxInfo Department
+
+
+
+ 6 Main Street
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 12345
+
+
+
+ Info desk
+
+ +44 123456780
+
+ +44 123456789
+
+ info@example.com
+
+
+
+
+
+
+ https://www.env-dpt.com
+
+ https://endpoint.env-dpt.com
+
+
+ ORG-0003
+
+
+
+ EnvironmentalInfo Dpt
+
+
+
+ 23 Nelson Square
+
+ Environment Information department
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 7812345
+
+
+
+ Info desk
+
+ +44 123456780
+
+ +44 123456789
+
+ info@env-dpt.com
+
+
+
+
+
+
+
+ https://www.employment-legis.com
+
+ https://endpoint.employment-legis.com
+
+
+ ORG-0004
+
+
+
+ EmploymentInfo Division
+
+
+
+ 162 Broad Street
+ 2nd floor
+
+ ABC Unit
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 99283
+
+
+
+ Info desk
+
+ +44 123456780
+
+ +44 123456789
+
+ info@example.com
+
+
+
+
+
+
+ https://www.appeal-adm-proc.com
+
+ https://appeal-adm-proc.com/request
+
+
+ ORG-0005
+
+
+
+ Pub Proc Appeal Adm
+
+
+
+ 87 Big Avenue
+
+ Reviews and Complains
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 0986543
+
+
+
+ A and R Department
+
+ +44 899375
+
+ +44 9928736
+
+ info@appeal-adm-proc.com
+
+
+
+
+
+
+
+ https://www.pub-mediator.com
+
+
+
+ ORG-0006
+
+
+
+ The Public Mediator
+
+
+
+ 85 Norwish Road
+
+ Public Procurement
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+ 09812345
+
+
+
+ Info desk
+
+ +44 123456345678
+
+ +44 098765432
+
+ info@pub-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0007
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@esendcorp.lu
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+
+ 14549263-b47b-4e59-96a1-2d0d13e19343
+
+ aff2863e-b4cc-4e91-baba-b3b85f709117
+
+ 2023-03-23+01:00
+ 20:59:32+01:00
+
+ 03
+
+ 32014L0024
+
+ cn-standard
+
+ ENG
+
+
+ https://profile.example.com
+
+
+ body-pl
+
+
+
+ econ-aff
+
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0007
+
+
+
+
+
+
+
+
+ CrossBorderLaw
+ Cross border law description ---
+
+
+
+
+ crime-org
+ Exclusion Ground description ---
+
+
+ corruption
+ Exclusion Ground description ---
+
+
+ fraud
+ Exclusion Ground description ---
+
+
+ terr-offence
+ Exclusion Ground description ---
+
+
+ finan-laund
+ Exclusion Ground description ---
+
+
+ human-traffic
+ Exclusion Ground description ---
+
+
+ tax-pay
+ Exclusion Ground description ---
+
+
+ socsec-pay
+ Exclusion Ground description ---
+
+
+ envir-law
+ Exclusion Ground description ---
+
+
+ socsec-law
+ Exclusion Ground description ---
+
+
+ labour-law
+ Exclusion Ground description ---
+
+
+ insolvency
+ Exclusion Ground description ---
+
+
+ nati-ground
+ Other Exclusion Ground description ---
+
+
+
+
+ 2
+
+ 2
+
+ GLO-0001
+
+ LOT-0001
+
+
+ LOT-0002
+
+
+
+
+
+
+ Description of the procedure ---
+
+ neg-w-call
+
+ all
+
+
+ true
+
+ Procedure Accelerated Justification ---
+
+
+
+
+ 2023-P-0001
+
+ Procurement Title ---
+
+ Description ---
+
+ services
+
+ Additional information ---
+
+
+ works
+
+
+
+ 9999999.99
+
+
+
+
+ 79710000
+
+
+
+
+ 79720000
+
+
+ The main location is ...
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+
+
+ Additional information ---
+
+
+ anyw-eea
+
+
+
+
+ GLO-0001
+
+
+
+
+
+
+
+
+
+
+ per-exa
+
+ 60
+
+
+
+
+
+
+ cost
+
+ name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+
+
+ per-exa
+
+ 40
+
+
+
+
+
+
+ quality
+
+ Name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+
+ 10000
+
+
+ buyer-categories
+
+
+
+
+
+ Object Reference Number---
+
+ Title of Group of Lots 1
+
+ Description of Group of Lots 1
+
+ Additional information for GLO-0001 ProcurementProject ---
+
+ true
+
+
+ 9999999.99
+
+
+
+
+ LOT-0001
+
+
+
+
+
+
+
+ sui-act
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 2
+
+
+
+
+ ef-stand
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 3
+
+
+
+
+ tp-abil
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 3
+
+
+
+
+
+
+
+ eu-funds
+
+ t-requ
+
+ 2023-05-23+02:00
+
+ allowed
+
+
+ true
+
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+
+ https://fiscal-legislation.example.com
+
+
+
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+
+ https://environment-legislation.example.com
+
+
+
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+
+ https://employment-legislation.example.com
+
+
+
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ ENG
+
+ official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ FRA
+
+ official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ CAT
+
+ non-official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+
+ restricted-document
+
+
+
+ http://accessto.com
+
+
+
+
+
+ Terms Financial ---
+
+
+
+
+ res-pub-ser
+
+
+
+
+ true
+
+ Tenderer Legal Form Description ---
+
+
+
+
+ late-all
+
+ Later tender information description ---
+
+
+
+
+ yes
+
+
+
+ performance
+ Terms Performance ---
+
+
+
+ required
+
+
+
+ allowed
+
+
+
+ true
+
+
+
+ true
+
+ Non Disclosure Agreement Description ---
+
+
+
+ false
+
+
+
+
+
+
+
+
+ per-exa
+
+ 60
+
+
+
+
+
+
+ cost
+
+ Name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+
+
+ per-exa
+
+ 40
+
+
+
+
+
+
+ quality
+
+ Name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+ TPO-0001
+
+
+
+
+
+ TPO-0002
+
+
+
+
+ http://tender-submit.fin-adm.com/esubmission
+
+
+ TPO-0001
+
+
+
+
+
+ TPO-0003
+
+
+
+
+
+ Review Deadline Description ---
+
+
+
+
+ TPO-0001
+
+
+
+
+
+ ORG-0005
+
+
+
+
+
+ ORG-0006
+
+
+
+
+
+ ENG
+
+
+
+ FRA
+
+
+
+ true
+
+ true
+
+
+
+ true
+
+ Security Clearance Description ---
+
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+
+ required
+
+ true
+
+ true
+
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+
+ 123
+
+
+
+ true
+
+ 7
+
+ 3
+
+
+
+ true
+
+ Electronic auction description ---
+
+ https://electronic-auction.com
+
+
+
+ 10
+
+ 10000
+
+
+ buyer-categories
+
+ Framework Buyer Categories ---
+
+
+
+
+ fa-w-rc
+
+
+
+ dps-list
+
+
+
+
+ Object Reference Number---
+
+ Title of Lot 1
+
+ Description of Lot 1
+
+ services
+
+ 1000
+
+ Additional information for LOT-0001 ProcurementProject ---
+
+ true
+
+
+ works
+
+
+
+ emas-com
+
+
+
+ acc-all
+
+
+
+ buy-eff
+
+
+
+ env-imp
+
+ Strategic procurement description ---
+
+
+
+ n-inc-just
+
+ Accessibility Justification ---
+
+
+
+ 9999999.99
+
+
+
+
+ 75121000
+
+
+ The main location is ...
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+
+
+ Additional information ---
+
+
+ anyw-cou
+
+
+ GBR
+
+
+
+
+
+ 2023-01-01+01:00
+
+ 2023-05-23+01:00
+
+
+
+ Options description ---
+
+ 3
+
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0002
+
+
+
+
+
+
+
+ 2021/5678
+
+ LIFE_2021
+
+ Recovery Fund
+
+
+
+ sui-act
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 3
+
+
+
+
+ ef-stand
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 3
+
+
+
+
+ tp-abil
+
+ Name of the selection criteria---
+
+ Selection Criteria Description ---
+
+ used
+
+ true
+
+
+ max-pass
+
+ 3
+
+
+
+ min-score
+
+ 3
+
+
+
+
+
+
+
+ eu-funds
+
+ t-requ
+
+ 2023-05-23+02:00
+
+ allowed
+
+
+ true
+
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+
+ https://fiscal-legislation.example.com
+
+
+
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+
+ https://environment-legislation.example.com
+
+
+
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+
+ https://employment-legislation.example.com
+
+
+
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ ENG
+
+ official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ FRA
+
+ official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+
+ non-restricted-document
+
+ CAT
+
+ non-official
+
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+
+ restricted-document
+
+
+
+ http://accessto.com
+
+
+
+
+
+ Terms Financial ---
+
+
+
+
+ none
+
+
+
+
+ true
+
+ Tenderer Legal Form Description ---
+
+
+
+
+ late-all
+
+ Later tender information description ---
+
+
+
+
+ yes
+
+
+
+ performance
+ Terms Performance ---
+
+
+
+ required
+
+
+
+ allowed
+
+
+
+ true
+
+
+
+ false
+
+
+
+
+
+
+
+
+ per-exa
+
+ 60
+
+
+
+
+
+
+ cost
+
+ Name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+
+
+ per-exa
+
+ 40
+
+
+
+
+
+
+ quality
+
+ Name of AC ---
+
+ AC Description ---
+
+
+
+
+
+
+ TPO-0001
+
+
+
+
+
+ TPO-0002
+
+
+
+
+
+ TPO-0001
+
+
+
+
+
+ TPO-0003
+
+
+
+
+
+ Review Deadline Description ---
+
+
+
+
+ TPO-0001
+
+
+
+
+
+ ORG-0005
+
+
+
+
+
+ ORG-0006
+
+
+
+
+
+ ENG
+
+
+
+ FRA
+
+
+
+ true
+
+ true
+
+
+
+ true
+
+ Security Clearance Description ---
+
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+
+ not-allowed
+
+ true
+
+ true
+
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+
+ 123
+
+
+
+ ipr-iss
+
+ Nonelectronic Submission Description ---
+
+
+
+ true
+
+ 7
+
+ 3
+
+
+
+ true
+
+ Electronic auction description ---
+
+ https://electronic-auction.com
+
+
+
+ 10
+
+ 10000
+
+
+ buyer-categories
+
+ Framework Buyer Categories ---
+
+
+
+
+ fa-w-rc
+
+
+
+ none
+
+
+
+
+ Object Reference Number---
+
+ Title Lot 2---
+
+ Description Lot 2
+
+ services
+
+ 1000
+
+ Additional information for LOT-0002 ProcurementProject ---
+
+ true
+
+
+ works
+
+
+
+ emas-com
+
+
+
+ acc-all
+
+
+
+ buy-eff
+
+
+
+ env-imp
+
+ Strategic procurement description ---
+
+
+
+ n-inc-just
+
+ Accessibility Justification ---
+
+
+
+ 9999999.99
+
+
+
+
+ 75121000
+
+
+ The main location is ...
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+
+ London
+
+ N1 9FL
+
+ UKI62
+
+
+ GBR
+
+
+
+
+
+
+ Additional information ---
+
+
+ anyw-cou
+
+
+ GBR
+
+
+
+
+
+ 2023-01-01+01:00
+
+ 2023-05-23+02:00
+
+
+
+ Options description ---
+
+ 3
+
+
+
+ Renewal description ---
+
+
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal_100_lots.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal_100_lots.xml
new file mode 100644
index 000000000..9edff446a
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_maximal_100_lots.xml
@@ -0,0 +1,37249 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+ https://www.fin-adm.com
+ https://endpoint-example.fin-adm.com
+
+ ORG-0001
+
+
+ Financial Adinistration for ...
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+ Finance Division
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 998298
+
+
+ Info desk
+ +44 123456780
+ +44 123456789
+ info@fin-adm.com
+
+
+
+ http://tender-submit.fin-adm.com
+
+ TPO-0001
+
+
+ Procurement Department
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+ Procurement Dpt
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ Head of Procurement Department
+ +123 45678
+ +123 456789
+ proc-info@fin-adm.com
+
+
+
+ http://archives.fin-adm.com
+
+ TPO-0002
+
+
+ Fin Adm Archives
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+ Fin Adm Archives Dpt
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ Proc Archives Dpt Lead
+ +44 123456776
+ +44 1234567769
+ proc-archi@fin-adm.com
+
+
+
+ http://tender-evaluation.fin-adm.com
+
+ TPO-0003
+
+
+ Tenders Evaluation Committee
+
+
+ Bruce Wayne House
+ 2 Gotham Street
+ Tenders Evaluation Committee
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ Evaluation Dpt
+ +44 123456777
+ +44 1234567779
+ proc-eval@fin-adm.com
+
+
+
+
+
+ https://www.fin-leg.com
+ https://contact.fin-leg.com
+
+ ORG-0002
+
+
+ TaxInfo Department
+
+
+ 6 Main Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 12345
+
+
+ Info desk
+ +44 123456780
+ +44 123456789
+ info@example.com
+
+
+
+
+
+ https://www.env-dpt.com
+ https://endpoint.env-dpt.com
+
+ ORG-0003
+
+
+ EnvironmentalInfo Dpt
+
+
+ 23 Nelson Square
+ Environment Information department
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 7812345
+
+
+ Info desk
+ +44 123456780
+ +44 123456789
+ info@env-dpt.com
+
+
+
+
+
+ https://www.employment-legis.com
+ https://endpoint.employment-legis.com
+
+ ORG-0004
+
+
+ EmploymentInfo Division
+
+
+ 162 Broad Street
+ 2nd floor
+ ABC Unit
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 99283
+
+
+ Info desk
+ +44 123456780
+ +44 123456789
+ info@example.com
+
+
+
+
+
+ https://www.appeal-adm-proc.com
+ https://appeal-adm-proc.com/request
+
+ ORG-0005
+
+
+ Pub Proc Appeal Adm
+
+
+ 87 Big Avenue
+ Reviews and Complains
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 0986543
+
+
+ A and R Department
+ +44 899375
+ +44 9928736
+ info@appeal-adm-proc.com
+
+
+
+
+
+ https://www.pub-mediator.com
+
+ ORG-0006
+
+
+ The Public Mediator
+
+
+ 85 Norwish Road
+ Public Procurement
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+ 09812345
+
+
+ Info desk
+ +44 123456345678
+ +44 098765432
+ info@pub-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0007
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@esendcorp.lu
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 7dac8d90-0883-49f2-87de-519c5992d0bc
+ aff2863e-b4cc-4e91-baba-b3b85f709117
+ 2023-03-23+01:00
+ 20:59:32+01:00
+ 03
+ 32014L0024
+ cn-standard
+ ENG
+
+ https://profile.example.com
+
+ body-pl
+
+
+ econ-aff
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0007
+
+
+
+
+
+
+
+ CrossBorderLaw
+ Cross border law description ---
+
+
+
+ crime-org
+ Exclusion Ground description ---
+
+
+ corruption
+ Exclusion Ground description ---
+
+
+ fraud
+ Exclusion Ground description ---
+
+
+ terr-offence
+ Exclusion Ground description ---
+
+
+ finan-laund
+ Exclusion Ground description ---
+
+
+ human-traffic
+ Exclusion Ground description ---
+
+
+ tax-pay
+ Exclusion Ground description ---
+
+
+ socsec-pay
+ Exclusion Ground description ---
+
+
+ envir-law
+ Exclusion Ground description ---
+
+
+ socsec-law
+ Exclusion Ground description ---
+
+
+ labour-law
+ Exclusion Ground description ---
+
+
+ insolvency
+ Exclusion Ground description ---
+
+
+ nati-ground
+ Other Exclusion Ground description ---
+
+
+
+
+ Description of the procedure ---
+ neg-w-call
+ all
+
+ true
+ Procedure Accelerated Justification ---
+
+
+
+ 2023-P-0001
+ Procurement Title ---
+ Description ---
+ services
+ Additional information ---
+
+ works
+
+
+ 9999999.99
+
+
+ 79710000
+
+
+ 79720000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-eea
+
+
+
+
+ LOT-0001
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0002
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ none
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ none
+
+
+
+ Object Reference Number---
+ Title Lot 2---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+02:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0003
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0004
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0005
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0006
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0007
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0008
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0009
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0010
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0011
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0012
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0013
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0014
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0015
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0016
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0017
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0018
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0019
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0020
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0021
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0022
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0023
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0024
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0025
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0026
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0027
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0028
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0029
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0030
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0031
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0032
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0033
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0034
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0035
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0036
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0037
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0038
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0039
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0040
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0041
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0042
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0043
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0044
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0045
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0046
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0047
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0048
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0049
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0050
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0051
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0052
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0053
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0054
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0055
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0056
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0057
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0058
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0059
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0060
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0061
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0062
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0063
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0064
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0065
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0066
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0067
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0068
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0069
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0070
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0071
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0072
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0073
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0074
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0075
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0076
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0077
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0078
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0079
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0080
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0081
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0082
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0083
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0084
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0085
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0086
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0087
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0088
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0089
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0090
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0091
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0092
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0093
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0094
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0095
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0096
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0097
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0098
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0099
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
+ LOT-0100
+
+
+
+
+
+
+ sui-act
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ ef-stand
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+ tp-abil
+ Name of the selection criteria---
+ Selection Criteria Description ---
+ used
+ true
+
+ max-pass
+ 3
+
+
+
+
+
+
+ eu-funds
+ t-requ
+ 2023-05-23+02:00
+ allowed
+
+ true
+ Guarantee Required Description ---
+
+
+ FiscalDocID1
+
+
+ ORG-0002
+
+
+
+
+ EnvDocID1
+
+
+ ORG-0003
+
+
+
+
+ EmplDocID1
+
+
+ ORG-0004
+
+
+
+
+ Doc1
+ non-restricted-document
+ ENG
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ FRA
+ official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc1
+ non-restricted-document
+ CAT
+ non-official
+
+
+ http://nonrestricteddocuments.com
+
+
+
+
+ Doc2
+ restricted-document
+
+
+ http://accessto.com
+
+
+
+
+ Terms Financial ---
+
+
+
+ res-pub-ser
+
+
+
+ true
+ Tenderer Legal Form Description ---
+
+
+
+ late-all
+ Later tender information description ---
+
+
+
+ yes
+
+
+ performance
+ Terms Performance ---
+
+
+ required
+
+
+ allowed
+
+
+ true
+
+
+ false
+
+
+
+
+
+
+
+ per-exa
+ 60
+
+
+
+
+
+ cost
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+
+
+ per-exa
+ 40
+
+
+
+
+
+ quality
+ Name of AC ---
+ AC Description ---
+
+
+
+
+
+ TPO-0001
+
+
+
+
+ TPO-0002
+
+
+
+ https://tender-submit.fin-adm.com/esubmission
+
+ TPO-0001
+
+
+
+
+ TPO-0003
+
+
+
+
+ Review Deadline Description ---
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0005
+
+
+
+
+ ORG-0006
+
+
+
+
+ ENG
+
+
+ FRA
+
+
+ true
+ true
+
+
+ true
+ Security Clearance Description ---
+
+
+
+
+
+
+
+ Access tool ---
+
+
+
+
+ required
+ true
+ true
+
+ 2023-05-22+01:00
+ 20:59:32+01:00
+
+
+ 2023-05-20+01:00
+ 20:59:32+01:00
+
+
+ 9c0fd704-64d3-4294-a3b6-6df45911ab9f-01
+ 123
+
+
+ true
+ 7
+ 3
+
+
+ true
+ Electronic auction description ---
+ https://electronic-auction.com
+
+
+ 10
+ 10000
+
+ buyer-categories
+ Framework Buyer Categories ---
+
+
+
+ fa-w-rc
+
+
+ dps-list
+
+
+
+ Object Reference Number---
+ Title ---
+ Description ---
+ services
+ 1000
+ Additional information for ProcurementProject ---
+ true
+
+ works
+
+
+ emas-com
+
+
+ acc-all
+
+
+ buy-eff
+
+
+ env-imp
+ Strategic procurement description ---
+
+
+ n-inc-just
+ Accessibility Justification ---
+
+
+ 9999999.99
+
+
+ 75121000
+
+
+ The main location is ...
+
+ Bruce Wayne House
+ 2 Gotham Street
+ London
+ N1 9FL
+ UKI62
+
+ GBR
+
+
+
+
+ Additional information ---
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2023-01-01+01:00
+ 2023-05-23+01:00
+
+
+ Options description ---
+ 3
+
+
+ Renewal description ---
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_minimal.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_minimal.xml
new file mode 100644
index 000000000..46156139e
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_minimal.xml
@@ -0,0 +1,222 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+
+ ORG-0001
+
+
+ Publications Office of the European Union
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ EU-PO
+
+
+ +352 292944331
+ op-appels-offres@publications.europa.eu
+
+
+
+
+
+
+ ORG-0003
+
+
+ General Court of the European Union
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ GCEU
+
+
+ +352 4303-1
+ GeneralCourt.Registry@curia.europa.eu
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ f42be27e-09cf-4f0e-a745-63ec689631e6
+ 4805c409-5939-4be9-8abd-837f7a5fee23
+ 2019-11-21+01:00
+ 00:00:00+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ENG
+
+
+ eu-ins-bod-ag
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+
+
+
+
+ crime-org
+ As stated in the procurement documents.
+
+
+
+
+ open
+
+
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer),
+ with the possibility to extend the provision to other information systems.
+ services
+
+ 72230000
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ As stated in the procurement documents.
+ used
+
+
+ ef-stand
+ As stated in the procurement documents.
+ used
+
+
+ tp-abil
+ As stated in the procurement documents.
+ used
+
+
+
+
+
+ not-allowed
+ eu-funds
+
+ 5629
+ restricted-document
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ Within 2 months of the notification to the plaintiff, or, in absence thereof, of the day on which it came to the knowledge of the plaintiff. A complaint to the European Ombudsman does not have as an effect either to suspend this period or to open a new period for lodging appeals.
+
+
+
+ ORG-0001
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ true
+ true
+
+
+
+ required
+ true
+
+ 2020-02-04+02:00
+ 10:00:00+02:00
+
+
+ false
+
+
+ fa-wo-rc
+
+
+ none
+
+
+
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer),
+ with the possibility to extend the provision to other information systems.
+ services
+
+ 72230000
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_multilingual.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_multilingual.xml
new file mode 100644
index 000000000..1576e5ae7
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_multilingual.xml
@@ -0,0 +1,1161 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+ https://op.europa.eu/
+
+ ORG-0001
+
+
+ Служба за публикации на Европейския съюз
+
+
+ Úřad pro publikace Evropské unie
+
+
+ Den Europæiske Unions Publikationskontor
+
+
+ Amt für Veröffentlichungen der Europäischen Union
+
+
+ Υπηρεσία Εκδόσεων της Ευρωπαϊκής Ένωσης
+
+
+ Publications Office of the European Union
+
+
+ Euroopa Liidu Väljaannete Talitus
+
+
+ Euroopan unionin julkaisutoimisto
+
+
+ Office des publications de l'Union européenne
+
+
+ Oifig Foilseachán an Aontais Eorpaigh
+
+
+ Ured za publikacije Europske unije
+
+
+ Az Európai Unió Kiadóhivatala
+
+
+ Ufficio delle pubblicazioni dell'Unione europea
+
+
+ Eiropas Savienības Publikāciju birojs
+
+
+ Europos Sąjungos leidinių biuras
+
+
+ L-Uffiċċju tal-Pubblikazzjonijiet tal-Unjoni Ewropea
+
+
+ Bureau voor publicaties van de Europese Unie
+
+
+ Urząd Publikacji Unii Europejskiej
+
+
+ Serviço das Publicações da União Europeia
+
+
+ Oficiul pentru Publicații al Uniunii Europene
+
+
+ Úrad pre vydávanie publikácií Európskej únie
+
+
+ Urad za publikacije Evropske unije
+
+
+ Oficina de Publicaciones de la Unión Europea
+
+
+ Europeiska unionens publikationsbyrå
+
+
+ 2, rue Mercier
+ Luxembourg
+ L-2985
+ LU000
+
+ LUX
+
+
+
+ EU-PO
+
+
+ Procurement Unit
+ +352 292911111
+ +352 2929111119
+ op-appels-offres@publications.europa.eu
+
+
+
+
+
+ http://curia.europa.eu/
+
+ ORG-0002
+
+
+ Общ съд
+
+
+ Tribunal General
+
+
+ Tribunál
+
+
+ Retten
+
+
+ Gericht
+
+
+ Üldkohus
+
+
+ Γενικό Δικαστήριο
+
+
+ General Court
+
+
+ Tribunal
+
+
+ Cúirt Ghinearálta
+
+
+ Opći sud
+
+
+ Tribunale
+
+
+ Vispārējā tiesa
+
+
+ Bendrasis Teismas
+
+
+ Törvényszék
+
+
+ Il-Qorti Ġenerali
+
+
+ Gerecht
+
+
+ Sąd
+
+
+ Tribunal Geral
+
+
+ Tribunalul
+
+
+ Všeobecný súd
+
+
+ Splošno sodišče
+
+
+ Unionin yleinen tuomioistuin
+
+
+ Tribunalen
+
+
+ rue du Fort Niedergrünewald
+ Luxembourg
+ L-2925
+ LU000
+
+ LUX
+
+
+
+ GCEU
+
+
+ +352 4303-1
+ +352 4303-2100
+ GeneralCourt.Registry@curia.europa.eu
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ LU000
+
+ LUX
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ 55aae64f-88a8-44a5-b2fb-8228e97fe6ee
+ 46c9ce89-5986-40d9-992f-e1a2469a48f8
+ 2019-11-21+01:00
+ 00:00:00+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ENG
+
+ BUL
+
+
+ CES
+
+
+ DAN
+
+
+ DEU
+
+
+ ELL
+
+
+ SPA
+
+
+ EST
+
+
+ FIN
+
+
+ FRA
+
+
+ GLE
+
+
+ HRV
+
+
+ HUN
+
+
+ ITA
+
+
+ LIT
+
+
+ LAV
+
+
+ MLT
+
+
+ NLD
+
+
+ POL
+
+
+ POR
+
+
+ RON
+
+
+ SLK
+
+
+ SLV
+
+
+ SWE
+
+
+ http://publications.europa.eu/en/web/about-us/procurement
+
+ eu-ins-bod-ag
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+ eu-funds
+
+
+ insolvency
+ Както е определено в документите за обществена поръчка.
+ Jak je uvedeno v zadávací dokumentaci.
+ Som angivet i udbudsdokumenterne.
+ Wie in den Ausschreibungsunterlagen angegeben.
+ Όπως ορίζεται στα έγγραφα διαγωνισμού.
+ As stated in the procurement documents.
+ Vt hankedokumente.
+ ilmoitetaan hankinta-asiakirjoissa.
+ Voir dossier d'appel d'offres.
+ Mar atá luaite sna doiciméid soláthair.
+ Kako je navedeno u dokumentaciji o nabavi.
+ Lásd a közbeszerzési dokumentációt.
+ Come indicato nei documenti di gara.
+ kā norādīts iepirkuma dokumentos.
+ Kaip nurodyta pirkimo dokumentuose.
+ Kif mistqarr fid-dokumenti tal-ksib.
+ zoals vermeld in de aanbestedingsstukken.
+ Jak określono w dokumentacji zamówienia.
+ Tal como indicado na documentação do concurso.
+ Astfel cum se indică în dosarul achiziției.
+ Ako je uvedené v súťažných podkladoch.
+ Kot je navedeno v razpisni dokumentaciji.
+ Véanse los documentos de contratación.
+ Enligt vad som anges i upphandlingsdokumenten.
+
+
+
+
+ open
+
+
+ AO 10786
+ Предоставяне на ИТ услуги, свързани с ИТ системите на Службата за публикации (EUR-Lex, N-Lex, Search Layer и други)
+ Poskytování IT služeb souvisejících s IT systémy Úřadu pro publikace (EUR-Lex, N-Lex, Search Layer a další)
+ Levering af IT-tjenester relateret til operationelle (OP) IT-systemer (EUR-Lex, N-Lex, søgelag m.fl.)
+ Bereitstellung von IT-Dienstleistungen im Zusammenhang mit OP-IT-Systemen (EUR-Lex, N-Lex, Search Layer und weitere)
+ Παροχή υπηρεσιών πληροφορικής σχετικών με λειτουργικά συστήματα πληροφορικής (EUR-Lex, N-Lex, Layer Search και άλλα)
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Euroopa Liidu Väljaannete Talituse IT-süsteemidega (EUR-Lex, N-Lex, otsingukiht jt) seotud IT-teenuste osutamine
+ julkaisutoimiston tietoteknisiin järjestelmiin (EUR-Lex, N-Lex, hakukerros ja muut) liittyvien tietoteknisten palvelujen toimittaminen
+ Fourniture de services informatiques liés aux systèmes informatiques OP (EUR-Lex, N-Lex, Search Layer, etc.)
+ Soláthar Seirbhísí TF i ndáil le Córais TF Oifig na bhFoilseachán (EUR-Lex, N-Lex, Search Layer, agus Eile)
+ Pružanje IT usluga koje se odnose na IT sustave Ureda za publikacije (EUR-Lex, N-Lex, Search Layer i ostale)
+ A Kiadóhivatal IT-rendszereivel kapcsolatos IT-szolgáltatások biztosítása (EUR-Lex, N-Lex, Search Layer és egyebek)
+ Prestazione di servizi informatici relativi ai sistemi informativi dell'Ufficio delle pubblicazioni (EUR-Lex, N-Lex, Search Layer e altri)
+ IT pakalpojumu sniegšana saistībā ar OP IT sistēmām (“EUR-Lex”, “N-Lex”, “Search Layer” u. c.)
+ IT paslaugų, susijusių su OP IT sistemomis (EUR-Lex, N-Lex, Search Layer ir kitomis), teikimas
+ Provvista ta' Servizzi tat-TI Relatati ma' Sistemi tat-TI tal-OP (EUR-lex, N-Lex, Search Layer, u Oħrajn)
+ Verlening van IT-diensten die verband houden met de IT-systemen van het Bureau voor publicaties (onder meer EUR-Lex, N-Lex en Search Layer)
+ Świadczenie usług informatycznych związanych z systemami informatycznymi Urzędu Publikacji (EUR-Lex, N-Lex i Search Layer i inne)
+ Prestação de serviços de TI relacionados com sistemas informáticos do Serviço de Publicações (EUR-Lex, N-Lex, Search Layer, e outros)
+ Furnizarea de servicii IT legate de sistemele OP IT (EUR-Lex, N-Lex, Strat de căutare și altele)
+ Poskytovanie IT služieb súvisiacich s IT systémami Úradu pre vydávanie publikácií (EUR-Lex, N-Lex, Search Layer a ďalšie)
+ Zagotavljanje storitev IT, povezanih s sistemi IT Urada za publikacije (EUR-Lex, N-Lex, Search Layer in drugo)
+ Prestación de servicios informáticos relacionados con los sistemas informáticos de la OP (EUR-Lex, N-Lex, Search Layer y otros)
+ Tillhandahållande av IT-tjänster avseende OP IT Systems (EUR-Lex, N-Lex, Search Layer, och andra)
+ Предоставяне на ИТ услуги, свързани с информационните системи на Службата за публикации (именно EUR-Lex, N-Lex и Search Layer) с възможност да се удължи предоставянето на други информационни системи.
+ Poskytování IT služeb souvisejících s informačními systémy Úřadu pro publikace (konkrétně EUR-Lex, N-Lex a Search Layer), s možností rozšíření poskytování služeb o další informační systémy.
+ Levering af IT-systemer relateret til Publikationskontorets informationssystemer (dvs. EUR-Lex, N-Lex og søgelag), med mulighed for at udvide leverancen til andre informationssystemer.
+ IT-Dienste im Zusammenhang mit Informationssystemen des Büros für Veröffentlichungen (nämlich EUR-Lex, N-Lex und Search Layer) mit der Möglichkeit, die Bereitstellung auf andere Informationssysteme auszuweiten.
+ Παροχή υπηρεσιών πληροφορικής που σχετίζονται με τα πληροφοριακά συστήματα του γραφείου δημοσιεύσεων (ήτοι EUR-Lex, N-Lex και Layer Search), με δυνατότητα επέκτασης της παροχής υπηρεσιών σε άλλα πληροφοριακά συστήματα.
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer), with the possibility to extend the provision to other information systems.
+ Väljaannete talituse infosüsteemidega (st EUR-Lex, N-Lex ja otsingukiht) seotud infotehnoloogiateenuste osutamine, võimalusega laiendada teenuste osutamist muudele infosüsteemidele.
+ Sopimuksen kohteena on julkaisutoimiston tietoteknisiin järjestelmiin (EUR-Lex, N-Lex ja hakukerros (Search Layer) liittyvien tietoteknisten palvelujen toimittaminen. Lisäksi sopimukseen voidaan sisällyttää muihin tietoteknisiin järjestelmiin liittyvien palvelujen toimittaminen.
+ Fourniture de services informatiques liés aux systèmes d'information de l'Office des publications (à savoir EUR-Lex, N-Lex et Search Layer), avec la possibilité d'étendre cette prestation à d'autres systèmes d'information.
+ Seirbhísí TF a sholáthar i ndáil le córais faisnéise d’oifig na bhfoilseachán (eadhon EUR-Lex, N-Lex, agus Search Layer), leis an bhféidearthacht an soláthar a leathnú chuig córais faisnéise eile.
+ Pružanje IT usluga koje se odnose na informacijske sustave Ureda za publikacije (konkretno, EUR-Lex, N-Lex i Search Layer), s mogućnošću proširenja nabave na druge informacijske sustave.
+ A Kiadóhivatal IT-rendszereivel (nevezetesen az EUR-Lex, az N-Lex és a Search Layer) kapcsolatos IT-szolgáltatások biztosítása, a szolgáltatásnyújtás egyéb információs rendszerekre történő kiterjesztésének lehetőségével.
+ Fornitura di servizi informatici relativi ai sistemi informativi dell'Ufficio delle pubblicazioni (ovvero EUR-Lex, N-Lex e Search Layer), con la possibilità di estendere la prestazione ad altri sistemi informativi.
+ IT pakalpojumu sniegšana saistībā ar Publikāciju biroja (OP) informācijas sistēmām (“EUR-Lex”, “N-Lex”, “Search Layer”) ar iespēju paplašināt pakalpojumu nodrošināšanu arī citām informācijas sistēmām.
+ IT paslaugų, susijusių su Leidinių biuro informacinėmis sistemomis (būtent EUR-Lex, N-Lex ir Search Layer), teikimas, su galimybe papildyti teikimą kitomis informacinėmis sistemomis.
+ Il-provvista ta' servizzi tat-TI relatati mas-sistemi tal-informazzjoni tal-uffiċċju tal-pubblikazzjonijiet (bħal EUR-Lex, N-Lex, u Search Layer), bil-possibilità li tiġi estiża l-provvista għal sistemi tal-informazzjoni oħrajn.
+ Verlening van IT-diensten die verband houden met de informatiesystemen van het Bureau voor publicaties (met name EUR-Lex, N-Lex en Search Layer), met mogelijke uitbreiding van de dienstverlening naar andere informatiesystemen.
+ Świadczenie usług informatycznych związanych z systemami informatycznymi Urzędu Publikacji (EUR-Lex, N-Lex i Search Layer), z możliwością rozszerzenia tych usług na inne systemy informatyczne.
+ Prestação de serviços de TI relacionados com sistemas de informação do serviço das publicações (nomeadamente EUR-Lex, N-Lex e Search Layer), com a possibilidade de ampliar a prestação a outros sistemas de informação.
+ Furnizarea de servicii IT legate de sistemele de informații ale biroului de publicații (respectiv EUR-Lex, N-Lex și Strat de căutare), cu posibilitatea de a extinde furnizarea la alte sisteme informaționale.
+ Poskytovanie IT služieb súvisiacich s informačnými systémami úradu pre vydávanie publikácií (menovite EUR-Lex, N-Lex a Search Layer) s možnosťou rozšírenia poskytovania na ďalšie informačné systémy.
+ Zagotavljanje storitev IT, povezanih z informacijskimi sistemi Urada za publikacije (tj. EUR-Lex, N-Lex in Search Layer), z možnostjo razširitve storitev še na druge informacijske sisteme.
+ Prestación de servicios informáticos relacionados con los sistemas de información de la Oficina de Publicaciones (concretamente EUR-Lex, N-Lex y Search Layer), con la posibilidad de ampliar la prestación de servicios a otros sistemas de información.
+ Tillhandahållande av IT-tjänster avseende publikationsbyråns informationssystem (EUR-Lex, N-Lex, och Search Layer) med möjlighet att utöka tillhandahållandet till andra informationssystem.
+ services
+
+ 4500000
+
+
+ 72230000
+
+
+ 72260000
+
+
+ Основното място на изпълнение е помещенията на изпълнителя и помещенията на възлагащия орган.
+ Hlavním místem provedení jsou prostory poskytovatele služeb a prostory veřejného zadavatele.
+ Udførelsesstedet er hovedsageligt kontrahentens lokaler og den ordregivende myndigheds lokaler.
+ Hauptausführungsort sind die Räumlichkeiten des Auftragnehmers und die Räumlichkeiten des öffentlichen Auftraggebers.
+ Ο τόπος παροχής είναι οι εγκαταστάσεις του αναδόχου και οι εγκαταστάσεις της αναθέτουσας αρχής.
+ The main place of performance is the contractor's premises and the contracting authority's premises.
+ Peamine teostamise koht on töövõtja ruumid ja avaliku sektori hankija ruumid.
+ pääasiallinen suorituspaikka on sopimusosapuolen toimitilat ja hankintaviranomaisen toimitilat.
+ Le lieu d'exécution principal correspond aux locaux du contractant et du pouvoir adjudicateur.
+ Is ionann an phríomhláthair feidhmíochta agus áitreabh an chonraitheora agus áitreabh an údaráis chonarthaigh.
+ Glavno su mjesto izvedbe prostori izvoditelja te prostori javnog naručitelja.
+ A végrehajtás fő helye a nyertes ajánlattevő telephelye és az ajánlatkérő telephelye.
+ Il luogo principale di esecuzione è la sede del contraente e la sede dell'ente appaltante.
+ galvenā izpildes vieta ir darbuzņēmēja telpas un līgumslēdzējas iestādes telpas.
+ Pagrindinė įgyvendinimo vieta yra rangovo patalpos ir perkančiosios organizacijos patalpos.
+ Il-post ewlieni tat-twettiq huwa l-bini tal-kuntrattur u l-bini tal-awtorità li qiegħda toħroġ il-kuntratt.
+ de voornaamste plaats van uitvoering is in de kantoren van de contractant en in de kantoren van de aanbestedende dienst.
+ Głównym miejscem realizacji jest siedziba wykonawcy oraz siedziba instytucji zamawiającej.
+ O local de execução principal é nas instalações do contratante e nas instalações da entidade adjudicante.
+ Locul principal de executare este sediul contractantului și sediile autorității contractante.
+ Hlavným miestom vykonania sú priestory dodávateľa a priestory verejného obstarávateľa.
+ Glavni kraj izvedbe bodo prostori izvajalca in prostori naročnika.
+ El principal lugar de ejecución son las instalaciones del contratista y las instalaciones del órgano de contratación.
+ Plats för utförande är huvudsakligen uppdragstagarens lokaler och den upphandlande myndighetens lokaler.
+
+ LU000
+
+ LUX
+
+
+
+
+ 0
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Както е определено в документите за обществена поръчка.
+ Jak je uvedeno v zadávací dokumentaci.
+ Som angivet i udbudsdokumenterne.
+ Wie in den Ausschreibungsunterlagen angegeben.
+ Όπως ορίζεται στα έγγραφα διαγωνισμού.
+ As stated in the procurement documents.
+ Vt hankedokumente.
+ ilmoitetaan hankinta-asiakirjoissa.
+ Voir dossier d'appel d'offres.
+ Mar atá luaite sna doiciméid soláthair.
+ Kako je navedeno u dokumentaciji o nabavi.
+ Lásd a közbeszerzési dokumentációt.
+ Come indicato nei documenti di gara.
+ kā norādīts iepirkuma dokumentos.
+ Kaip nurodyta pirkimo dokumentuose.
+ Kif mistqarr fid-dokumenti tal-ksib.
+ zoals vermeld in de aanbestedingsstukken.
+ Jak określono w dokumentacji zamówienia.
+ Tal como indicado na documentação do concurso.
+ Astfel cum se indică în dosarul achiziției.
+ Ako je uvedené v súťažných podkladoch.
+ Kot je navedeno v razpisni dokumentaciji.
+ Véanse los documentos de contratación.
+ Enligt vad som anges i upphandlingsdokumenten.
+ used
+
+
+ ef-stand
+ Както е определено в документите за обществена поръчка.
+ Jak je uvedeno v zadávací dokumentaci.
+ Som angivet i udbudsdokumenterne.
+ Wie in den Ausschreibungsunterlagen angegeben.
+ Όπως ορίζεται στα έγγραφα διαγωνισμού.
+ As stated in the procurement documents.
+ Vt hankedokumente.
+ ilmoitetaan hankinta-asiakirjoissa.
+ Voir dossier d'appel d'offres.
+ Mar atá luaite sna doiciméid soláthair.
+ Kako je navedeno u dokumentaciji o nabavi.
+ Lásd a közbeszerzési dokumentációt.
+ Come indicato nei documenti di gara.
+ kā norādīts iepirkuma dokumentos.
+ Kaip nurodyta pirkimo dokumentuose.
+ Kif mistqarr fid-dokumenti tal-ksib.
+ zoals vermeld in de aanbestedingsstukken.
+ Jak określono w dokumentacji zamówienia.
+ Tal como indicado na documentação do concurso.
+ Astfel cum se indică în dosarul achiziției.
+ Ako je uvedené v súťažných podkladoch.
+ Kot je navedeno v razpisni dokumentaciji.
+ Véanse los documentos de contratación.
+ Enligt vad som anges i upphandlingsdokumenten.
+ used
+
+
+ tp-abil
+ Както е определено в документите за обществена поръчка.
+ Jak je uvedeno v zadávací dokumentaci.
+ Som angivet i udbudsdokumenterne.
+ Wie in den Ausschreibungsunterlagen angegeben.
+ Όπως ορίζεται στα έγγραφα διαγωνισμού.
+ As stated in the procurement documents.
+ Vt hankedokumente.
+ ilmoitetaan hankinta-asiakirjoissa.
+ Voir dossier d'appel d'offres.
+ Mar atá luaite sna doiciméid soláthair.
+ Kako je navedeno u dokumentaciji o nabavi.
+ Lásd a közbeszerzési dokumentációt.
+ Come indicato nei documenti di gara.
+ kā norādīts iepirkuma dokumentos.
+ Kaip nurodyta pirkimo dokumentuose.
+ Kif mistqarr fid-dokumenti tal-ksib.
+ zoals vermeld in de aanbestedingsstukken.
+ Jak określono w dokumentacji zamówienia.
+ Tal como indicado na documentação do concurso.
+ Astfel cum se indică în dosarul achiziției.
+ Ako je uvedené v súťažných podkladoch.
+ Kot je navedeno v razpisni dokumentaciji.
+ Véanse los documentos de contratación.
+ Enligt vad som anges i upphandlingsdokumenten.
+ used
+
+
+
+
+
+ not-allowed
+ eu-funds
+ t-requ
+ false
+
+ 5629
+ ipr-iss
+ restricted-document
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 70
+
+
+
+
+
+ quality
+ Технически критерии за възлагане, както е изложено в документите за обществена поръчка
+ Technická kritéria pro zadání zakázky dle zadávací dokumentace
+ Tekniske tildelingskriterier som angivet i udbudsdokumenterne
+ Technische Zuschlagskriterien gemäß den Ausschreibungsunterlagen
+ Τεχνικά κριτήρια ανάθεσης, όπως ορίζονται στα έγγραφα της σύμβασης
+ Technical award criteria as stated in the procurement documents
+ hankedokumentides sätestatud lepingu sõlmimise tehnilised kriteeriumid
+ tekniset ratkaisuperusteet hankinta-asiakirjoissa määritetyn mukaisesti.
+ Critères d'attribution tels qu'énoncés dans le dossier d'appel d'offres
+ Na critéir dhámhachtana teicniúla de réir mar atá luaite sna doiciméid soláthair
+ Tehnički kriteriji za dodjelu kako su navedeni u dokumentaciji o nabavi
+ A közbeszerzési dokumentumok szerinti technikai odaítélési kritériumok
+ Criteri di aggiudicazione tecnici stabiliti nei documenti di gara
+ Tehniskie piešķiršanas kritēriji, kā norādīts iepirkuma dokumentos
+ Techniniai skyrimo kriterijai, kaip nurodyta pirkimo dokumentuose
+ Il-kriterji tekniċi tal-għoti kif mistqarra fid-dokumenti tal-ksib
+ technische gunningscriteria zoals vermeld in de aanbestedingsstukken
+ techniczne kryteria kwalifikacji zgodnie z dokumentami zamówienia
+ Critérios de adjudicação técnicos, conforme indicados na documentação do concurso
+ Criterii tehnice de atribuire prevăzute în dosarul achiziției
+ Technické kritériá vyhodnotenia ponúk, ako sú uvedené v súťažných podkladoch
+ Tehnična merila za oddajo, kot je navedeno v razpisni dokumentaciji
+ Criterios técnicos de adjudicación indicados en los documentos de contratación
+ Tekniska uttagningskriterier enligt vad som anges i upphandlingsdokumenten
+
+
+
+
+
+
+
+ per-exa
+ 30
+
+
+
+
+
+ price
+ Технически критерии за възлагане, както е изложено в документите за обществена поръчка
+ Technická kritéria pro zadání zakázky dle zadávací dokumentace
+ Tekniske tildelingskriterier som angivet i udbudsdokumenterne
+ Technische Zuschlagskriterien gemäß den Ausschreibungsunterlagen
+ Τεχνικά κριτήρια ανάθεσης, όπως ορίζονται στα έγγραφα της σύμβασης
+ Technical award criteria as stated in the procurement documents
+ hankedokumentides sätestatud lepingu sõlmimise tehnilised kriteeriumid
+ tekniset ratkaisuperusteet hankinta-asiakirjoissa määritetyn mukaisesti.
+ Critères d'attribution tels qu'énoncés dans le dossier d'appel d'offres
+ Na critéir dhámhachtana teicniúla de réir mar atá luaite sna doiciméid soláthair
+ Tehnički kriteriji za dodjelu kako su navedeni u dokumentaciji o nabavi
+ A közbeszerzési dokumentumok szerinti technikai odaítélési kritériumok
+ Criteri di aggiudicazione tecnici stabiliti nei documenti di gara
+ Tehniskie piešķiršanas kritēriji, kā norādīts iepirkuma dokumentos
+ Techniniai skyrimo kriterijai, kaip nurodyta pirkimo dokumentuose
+ Il-kriterji tekniċi tal-għoti kif mistqarra fid-dokumenti tal-ksib
+ technische gunningscriteria zoals vermeld in de aanbestedingsstukken
+ techniczne kryteria kwalifikacji zgodnie z dokumentami zamówienia
+ Critérios de adjudicação técnicos, conforme indicados na documentação do concurso
+ Criterii tehnice de atribuire prevăzute în dosarul achiziției
+ Technické kritériá vyhodnotenia ponúk, ako sú uvedené v súťažných podkladoch
+ Tehnična merila za oddajo, kot je navedeno v razpisni dokumentaciji
+ Criterios técnicos de adjudicación indicados en los documentos de contratación
+ Tekniska uttagningskriterier enligt vad som anges i upphandlingsdokumenten
+
+
+
+
+
+ ORG-0001
+
+
+
+ https://etendering.ted.europa.eu/cft/cft-display.html?cftId=5629
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ В рамките на 2 месеца от получаването на известието от ищеца или, в случай че такова липсва, от деня, в който е станало известно на ищеца. Жалба до Европейския омбудсман нито спира този срок, нито води до откриване на нов срок за подаване на жалби.
+ Ve lhůtě 2 měsíců od oznámení žalobci nebo, není-li k dispozici, ode dne, kdy vstoupilo ve známost žalobce. Stížnost podaná evropskému veřejnému ochránci práv nebude mít za následek ani pozastavení této lhůty, ani započetí nové lhůty pro podání odvolání.
+ Senest 2 måneder efter meddelelse af klageren eller, i mangel heraf, efter den dag, klageren har taget sagen til efterretning. En klage til Den Europæiske Ombudsmand bevirker ikke, at denne periode afbrydes, eller at der påbegyndes en ny periode for indgivelse af klager.
+ Binnen 2 Monaten ab Mitteilung an den Kläger oder, in Ermangelung dessen, vom Zeitpunkt der Kenntnisnahme durch den Kläger an. Eine Beschwerde beim Europäischen Bürgerbeauftragten bewirkt weder die Unterbrechung dieses Zeitraums noch den Beginn eines neuen Zeitraums für die Einlegung von Rechtsbehelfen.
+ Εντός 2 μηνών από την κοινοποίηση στον προσφεύγοντα ή, ελλείψει τέτοιας, από την ημέρα που ο ίδιος έλαβε γνώση. Οι καταγγελίες στον Ευρωπαίο Διαμεσολαβητή δεν έχουν ως αποτέλεσμα ούτε την αναστολή της εν λόγω προθεσμίας ούτε την έναρξη νέας προθεσμίας υποβολής προσφυγών.
+ Within 2 months of the notification to the plaintiff, or, in absence thereof, of the day on which it came to the knowledge of the plaintiff. A complaint to the European Ombudsman does not have as an effect either to suspend this period or to open a new period for lodging appeals.
+ 2 kuu jooksul hageja teavitamisest, või kui teavitamist ei toimu, 2 kuu jooksul päevast, mil hageja asjast teada sai. Kaebuse esitamine Euroopa Ombudsmanile ei too kaasa apellatsioonide esitamise tähtaja peatamist ega uue tähtaja määramist.
+ Muutosta on haettava 2 kuukauden kuluessa ilmoituksesta asianosaiselle tai, jos ilmoitusta ei ole tehty, siitä päivästä, jona asia tuli hänen tietoonsa. Euroopan oikeusasiamiehelle tehty kantelu ei vaikuta määräaikaan, eikä sen vuoksi muutoksenhaulle määrätä uutta määräaikaa.
+ Dans les 2 mois à compter de la notification au requérant ou, à défaut, du jour où celui-ci en a eu connaissance. L'introduction d'une plainte auprès du Médiateur européen n'a pour effet ni la suspension de ce délai, ni l'ouverture d'un nouveau délai de recours.
+ Laistigh de 2 mhí ón bhfógra chuig an ngearánaí, nó dá éagmais sin, ón lá a tháinig sé chun feasa an ghearánaí. Ní chuirfear an tréimhse sin ar fionraí ná ní thosófar tréimhse nua le haghaidh achomharc a dhéanamh mar thoradh ar ghearán a dhéantar leis an Ombudsman Eorpach.
+ U roku od 2 mjeseca od slanja obavijesti podnositelju žalbe, a u slučaju izostanka obavijesti, od datuma primanja na znanje okolnosti koje su povod žalbi. Podnošenjem pritužbe Europskom ombudsmanu to se razdoblje ne obustavlja niti se ne otvara novo razdoblje za podnošenje žalbi.
+ A vesztes fél értesítésétől, illetve – ennek hiányában – az eredmény ismertté válásától számított 2 hónapon belül. Az európai ombudsmanhoz benyújtott panasz nem eredményezi sem ezen időszak felfüggesztését, sem új fellebbezési időszak megnyílását.
+ Entro 2 mesi dalla notifica al ricorrente o, in assenza, dal giorno in cui ne è venuto a conoscenza. La denuncia al Mediatore europeo non produce né l'effetto di sospendere tale periodo, né di aprirne uno nuovo per la presentazione di ricorsi.
+ 2 mēnešu laikā no prasītāja informēšanas vai, ja tā nav notikusi, no dienas, kad prasītājs to uzzinājis. Sūdzības iesniegšana Eiropas Ombudam nevar ne atlikt šo periodu, ne arī atklāt jaunu periodu pārsūdzību iesniegšanai.
+ Per 2 mėnesius po to, kai apie tai pranešta ieškovui, arba, jei pranešimas neparengiamas, nuo dienos, kai informacija tampa žinoma. Dėl Europos ombudsmenui pateikto skundo šis laikotarpis nebus sustabdytas ar inicijuotas naujas apeliacijų teikimo laikotarpis.
+ Fi żmien xahrejn (2) mill-avviż li jintbagħat lil min qiegħed iressaq l-ilment, jew, fin-nuqqas ta' dan, mill-jum li fih min qiegħed iressaq l-ilment isir jaf b'dan. It-tressiq ta' lment quddiem l-Ombudsman Ewropew mhux se jkollu effett biex jew jissospendi dan il-perijodu jew biex jinfetaħ perijodu ġdid għat-tressiq tal-appelli.
+ Binnen 2 maanden na de kennisgeving aan de klager of, bij ontbreken daarvan, binnen 2 maanden na de dag waarop het de klager bekend werd. Een klacht bij de Europese Ombudsman leidt niet tot een opschorting van die periode, noch tot de opening van een nieuwe periode voor het instellen van een beroep.
+ W ciągu 2 miesięcy od zawiadomienia strony skarżącej lub, w przypadku braku zawiadomienia, od dnia podania do wiadomości. Wniesienie skargi do Europejskiego Rzecznika Praw Obywatelskich nie skutkuje zawieszeniem ani rozpoczęciem na nowo biegu terminu składania odwołań.
+ Num prazo de 2 meses a contar da data de notificação ao requerente ou, na sua falta, a contar do dia em que o requerente tenha tomado conhecimento do ato. As queixas efetuadas ao Provedor de Justiça Europeu não têm como efeito a suspensão do período em questão, nem a abertura de um novo prazo para a interposição de recursos.
+ În termen de 2 luni de la notificarea reclamantului sau, în lipsa acesteia, de la ziua în care acesta a luat cunoștință de actul respectiv. O plângere depusă la Ombudsmanul European nu are drept efect suspendarea acestui termen sau deschiderea unui nou termen pentru utilizarea căilor de atac.
+ Do 2 mesiacov od vyrozumenia osoby podávajúcej odvolanie alebo, ak to nie je možné, odo dňa, keď túto skutočnosť zistila. Sťažnosť predložená európskemu ombudsmanovi nebude mať za následok prerušenie tohto obdobia, ani začatie novej lehoty na predloženie odvolaní.
+ V 2 mesecih od uradnega obvestila tožniku ali, če tega ni bilo, od dneva, ko je tožnik zanj izvedel. Pritožba Evropskemu varuhu človekovih pravic ne prekine navedenega obdobja niti ne začne novega obdobja za vložitev pritožb.
+ En un plazo de 2 meses a partir de la notificación al recurrente o, en su defecto, del día en que este haya tenido conocimiento del acto en cuestión. Una reclamación ante el Defensor del Pueblo Europeo no tendrá como efecto la suspensión de dicho plazo ni la apertura de un nuevo plazo de presentación de recursos.
+ Inom 2 månader efter att käranden fick meddelandet eller, om så inte skett, från den dag då käranden fick kännedom om saken. Ett klagomål till Europeiska ombudsmannen leder varken till att denna period avbryts eller till att en ny period för inlämning av ett överklagande inleds.
+
+
+
+ ORG-0001
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0003
+
+
+
+
+ BUL
+
+
+ CES
+
+
+ DAN
+
+
+ DEU
+
+
+ ELL
+
+
+ ENG
+
+
+ SPA
+
+
+ EST
+
+
+ FIN
+
+
+ FRA
+
+
+ GLE
+
+
+ HRV
+
+
+ HUN
+
+
+ ITA
+
+
+ LIT
+
+
+ LAV
+
+
+ MLT
+
+
+ NLD
+
+
+ POL
+
+
+ POR
+
+
+ RON
+
+
+ SLK
+
+
+ SLV
+
+
+ SWE
+
+
+ true
+ true
+
+
+
+
+
+
+
+ e-Tendering
+
+
+
+
+ required
+ true
+
+ 2020-02-03Z
+ 13:00:00Z
+
+
+ 2020-02-04Z
+ 09:00:00Z
+ Както е определено в документите за обществена поръчка.
+ Jak je uvedeno v zadávací dokumentaci.
+ Som angivet i udbudsdokumenterne.
+ Wie in den Ausschreibungsunterlagen angegeben.
+ Όπως ορίζεται στα έγγραφα διαγωνισμού.
+ As stated in the procurement documents.
+ Vt hankedokumente.
+ ilmoitetaan hankinta-asiakirjoissa.
+ Voir dossier d'appel d'offres.
+ Mar atá luaite sna doiciméid soláthair.
+ Kako je navedeno u dokumentaciji o nabavi.
+ Lásd a közbeszerzési dokumentációt.
+ Come indicato nei documenti di gara.
+ kā norādīts iepirkuma dokumentos.
+ Kaip nurodyta pirkimo dokumentuose.
+ Kif mistqarr fid-dokumenti tal-ksib.
+ zoals vermeld in de aanbestedingsstukken.
+ Jak określono w dokumentacji zamówienia.
+ Tal como indicado na documentação do concurso.
+ Astfel cum se indică în dosarul achiziției.
+ Ako je uvedené v súťažných podkladoch.
+ Kot je navedeno v razpisni dokumentaciji.
+ Véanse los documentos de contratación.
+ Enligt vad som anges i upphandlingsdokumenten.
+
+ Помещенията на Службата за публикации в Люксембург.
+ Prostory Úřadu pro publikace v Lucemburku.
+ Publikationskontorets lokaler i Luxembourg.
+ Räumlichkeiten des Amtes für Veröffentlichungen in Luxemburg.
+ Στις εγκαταστάσεις της Υπηρεσίας Εκδόσεων στο Λουξεμβούργο.
+ Premises of the Publications Office in LUXEMBOURG.
+ Väljaannete talituse ruumid Luxembourgis.
+ julkaisutoimiston toimitilat Luxemburgissa.
+ Locaux de l'Office des publications à Luxembourg.
+ Áitreabh Oifig na bhFoilseachán i Lucsamburg.
+ Prostori Ureda za publikacije u Luxembourgu.
+ A Kiadóhivatal luxembourgi helyiségei.
+ Locali dell'Ufficio delle pubblicazioni a Lussemburgo.
+ Publikāciju biroja telpas Luksemburgā
+ Leidinių biuro patalpos Liuksemburge.
+ Il-bini tal-Uffiċċju tal-Pubblikazzjonijiet fil-Lussemburgu.
+ de kantoren van het Bureau voor publicaties in Luxemburg.
+ siedziba Urzędu Publikacji w Luksemburgu.
+ Instalações do Serviço das Publicações em Luxemburgo.
+ Sediul Oficiului pentru Publicații din Luxemburg.
+ Priestory Úradu pre vydávanie publikácií Európskej únie v Luxemburgu.
+ prostori Urada za publikacije v Luxembourgu.
+ Instalaciones de la Oficina de Publicaciones en Luxemburgo.
+ Publikationsbyråns lokaler i Luxemburg.
+
+
+
+ false
+
+
+ 3
+
+
+ fa-wo-rc
+
+
+ none
+
+
+
+ AO 10786 Lot 1
+ Предоставяне на ИТ услуги, свързани с ИТ системите на Службата за публикации (EUR-Lex, N-Lex, Search Layer и други)
+ Poskytování IT služeb souvisejících s IT systémy Úřadu pro publikace (EUR-Lex, N-Lex, Search Layer a další)
+ Levering af IT-tjenester relateret til operationelle (OP) IT-systemer (EUR-Lex, N-Lex, søgelag m.fl.)
+ Bereitstellung von IT-Dienstleistungen im Zusammenhang mit OP-IT-Systemen (EUR-Lex, N-Lex, Search Layer und weitere)
+ Παροχή υπηρεσιών πληροφορικής σχετικών με λειτουργικά συστήματα πληροφορικής (EUR-Lex, N-Lex, Layer Search και άλλα)
+ Provision of IT Services Related to OP IT Systems (EUR-Lex, N-Lex, Search Layer, and Others)
+ Euroopa Liidu Väljaannete Talituse IT-süsteemidega (EUR-Lex, N-Lex, otsingukiht jt) seotud IT-teenuste osutamine
+ julkaisutoimiston tietoteknisiin järjestelmiin (EUR-Lex, N-Lex, hakukerros ja muut) liittyvien tietoteknisten palvelujen toimittaminen
+ Fourniture de services informatiques liés aux systèmes informatiques OP (EUR-Lex, N-Lex, Search Layer, etc.)
+ Soláthar Seirbhísí TF i ndáil le Córais TF Oifig na bhFoilseachán (EUR-Lex, N-Lex, Search Layer, agus Eile)
+ Pružanje IT usluga koje se odnose na IT sustave Ureda za publikacije (EUR-Lex, N-Lex, Search Layer i ostale)
+ A Kiadóhivatal IT-rendszereivel kapcsolatos IT-szolgáltatások biztosítása (EUR-Lex, N-Lex, Search Layer és egyebek)
+ Prestazione di servizi informatici relativi ai sistemi informativi dell'Ufficio delle pubblicazioni (EUR-Lex, N-Lex, Search Layer e altri)
+ IT pakalpojumu sniegšana saistībā ar OP IT sistēmām (“EUR-Lex”, “N-Lex”, “Search Layer” u. c.)
+ IT paslaugų, susijusių su OP IT sistemomis (EUR-Lex, N-Lex, Search Layer ir kitomis), teikimas
+ Provvista ta' Servizzi tat-TI Relatati ma' Sistemi tat-TI tal-OP (EUR-lex, N-Lex, Search Layer, u Oħrajn)
+ Verlening van IT-diensten die verband houden met de IT-systemen van het Bureau voor publicaties (onder meer EUR-Lex, N-Lex en Search Layer)
+ Świadczenie usług informatycznych związanych z systemami informatycznymi Urzędu Publikacji (EUR-Lex, N-Lex i Search Layer i inne)
+ Prestação de serviços de TI relacionados com sistemas informáticos do Serviço de Publicações (EUR-Lex, N-Lex, Search Layer, e outros)
+ Furnizarea de servicii IT legate de sistemele OP IT (EUR-Lex, N-Lex, Strat de căutare și altele)
+ Poskytovanie IT služieb súvisiacich s IT systémami Úradu pre vydávanie publikácií (EUR-Lex, N-Lex, Search Layer a ďalšie)
+ Zagotavljanje storitev IT, povezanih s sistemi IT Urada za publikacije (EUR-Lex, N-Lex, Search Layer in drugo)
+ Prestación de servicios informáticos relacionados con los sistemas informáticos de la OP (EUR-Lex, N-Lex, Search Layer y otros)
+ Tillhandahållande av IT-tjänster avseende OP IT Systems (EUR-Lex, N-Lex, Search Layer, och andra)
+ Предоставяне на ИТ услуги, свързани с информационните системи на Службата за публикации (именно EUR-Lex, N-Lex и Search Layer) с възможност да се удължи предоставянето на други информационни системи.
+ Poskytování IT služeb souvisejících s informačními systémy Úřadu pro publikace (konkrétně EUR-Lex, N-Lex a Search Layer), s možností rozšíření poskytování služeb o další informační systémy.
+ Levering af IT-systemer relateret til Publikationskontorets informationssystemer (dvs. EUR-Lex, N-Lex og søgelag), med mulighed for at udvide leverancen til andre informationssystemer.
+ IT-Dienste im Zusammenhang mit Informationssystemen des Büros für Veröffentlichungen (nämlich EUR-Lex, N-Lex und Search Layer) mit der Möglichkeit, die Bereitstellung auf andere Informationssysteme auszuweiten.
+ Παροχή υπηρεσιών πληροφορικής που σχετίζονται με τα πληροφοριακά συστήματα του γραφείου δημοσιεύσεων (ήτοι EUR-Lex, N-Lex και Layer Search), με δυνατότητα επέκτασης της παροχής υπηρεσιών σε άλλα πληροφοριακά συστήματα.
+ Provision of IT services related to the information systems of the publications office (namely EUR-Lex, N-Lex, and Search Layer), with the possibility to extend the provision to other information systems.
+ Väljaannete talituse infosüsteemidega (st EUR-Lex, N-Lex ja otsingukiht) seotud infotehnoloogiateenuste osutamine, võimalusega laiendada teenuste osutamist muudele infosüsteemidele.
+ Sopimuksen kohteena on julkaisutoimiston tietoteknisiin järjestelmiin (EUR-Lex, N-Lex ja hakukerros (Search Layer) liittyvien tietoteknisten palvelujen toimittaminen. Lisäksi sopimukseen voidaan sisällyttää muihin tietoteknisiin järjestelmiin liittyvien palvelujen toimittaminen.
+ Fourniture de services informatiques liés aux systèmes d'information de l'Office des publications (à savoir EUR-Lex, N-Lex et Search Layer), avec la possibilité d'étendre cette prestation à d'autres systèmes d'information.
+ Seirbhísí TF a sholáthar i ndáil le córais faisnéise d’oifig na bhfoilseachán (eadhon EUR-Lex, N-Lex, agus Search Layer), leis an bhféidearthacht an soláthar a leathnú chuig córais faisnéise eile.
+ Pružanje IT usluga koje se odnose na informacijske sustave Ureda za publikacije (konkretno, EUR-Lex, N-Lex i Search Layer), s mogućnošću proširenja nabave na druge informacijske sustave.
+ A Kiadóhivatal IT-rendszereivel (nevezetesen az EUR-Lex, az N-Lex és a Search Layer) kapcsolatos IT-szolgáltatások biztosítása, a szolgáltatásnyújtás egyéb információs rendszerekre történő kiterjesztésének lehetőségével.
+ Fornitura di servizi informatici relativi ai sistemi informativi dell'Ufficio delle pubblicazioni (ovvero EUR-Lex, N-Lex e Search Layer), con la possibilità di estendere la prestazione ad altri sistemi informativi.
+ IT pakalpojumu sniegšana saistībā ar Publikāciju biroja (OP) informācijas sistēmām (“EUR-Lex”, “N-Lex”, “Search Layer”) ar iespēju paplašināt pakalpojumu nodrošināšanu arī citām informācijas sistēmām.
+ IT paslaugų, susijusių su Leidinių biuro informacinėmis sistemomis (būtent EUR-Lex, N-Lex ir Search Layer), teikimas, su galimybe papildyti teikimą kitomis informacinėmis sistemomis.
+ Il-provvista ta' servizzi tat-TI relatati mas-sistemi tal-informazzjoni tal-uffiċċju tal-pubblikazzjonijiet (bħal EUR-Lex, N-Lex, u Search Layer), bil-possibilità li tiġi estiża l-provvista għal sistemi tal-informazzjoni oħrajn.
+ Verlening van IT-diensten die verband houden met de informatiesystemen van het Bureau voor publicaties (met name EUR-Lex, N-Lex en Search Layer), met mogelijke uitbreiding van de dienstverlening naar andere informatiesystemen.
+ Świadczenie usług informatycznych związanych z systemami informatycznymi Urzędu Publikacji (EUR-Lex, N-Lex i Search Layer), z możliwością rozszerzenia tych usług na inne systemy informatyczne.
+ Prestação de serviços de TI relacionados com sistemas de informação do serviço das publicações (nomeadamente EUR-Lex, N-Lex e Search Layer), com a possibilidade de ampliar a prestação a outros sistemas de informação.
+ Furnizarea de servicii IT legate de sistemele de informații ale biroului de publicații (respectiv EUR-Lex, N-Lex și Strat de căutare), cu posibilitatea de a extinde furnizarea la alte sisteme informaționale.
+ Poskytovanie IT služieb súvisiacich s informačnými systémami úradu pre vydávanie publikácií (menovite EUR-Lex, N-Lex a Search Layer) s možnosťou rozšírenia poskytovania na ďalšie informačné systémy.
+ Zagotavljanje storitev IT, povezanih z informacijskimi sistemi Urada za publikacije (tj. EUR-Lex, N-Lex in Search Layer), z možnostjo razširitve storitev še na druge informacijske sisteme.
+ Prestación de servicios informáticos relacionados con los sistemas de información de la Oficina de Publicaciones (concretamente EUR-Lex, N-Lex y Search Layer), con la posibilidad de ampliar la prestación de servicios a otros sistemas de información.
+ Tillhandahållande av IT-tjänster avseende publikationsbyråns informationssystem (EUR-Lex, N-Lex, och Search Layer) med möjlighet att utöka tillhandahållandet till andra informationssystem.
+ services
+
+ 4500000
+
+
+ 72230000
+
+
+ 72260000
+
+
+ Основното място на изпълнение е помещенията на изпълнителя и помещенията на възлагащия орган.
+ Hlavním místem provedení jsou prostory poskytovatele služeb a prostory veřejného zadavatele.
+ Udførelsesstedet er hovedsageligt kontrahentens lokaler og den ordregivende myndigheds lokaler.
+ Hauptausführungsort sind die Räumlichkeiten des Auftragnehmers und die Räumlichkeiten des öffentlichen Auftraggebers.
+ Ο τόπος παροχής είναι οι εγκαταστάσεις του αναδόχου και οι εγκαταστάσεις της αναθέτουσας αρχής.
+ The main place of performance is the contractor's premises and the contracting authority's premises.
+ Peamine teostamise koht on töövõtja ruumid ja avaliku sektori hankija ruumid.
+ pääasiallinen suorituspaikka on sopimusosapuolen toimitilat ja hankintaviranomaisen toimitilat.
+ Le lieu d'exécution principal correspond aux locaux du contractant et du pouvoir adjudicateur.
+ Is ionann an phríomhláthair feidhmíochta agus áitreabh an chonraitheora agus áitreabh an údaráis chonarthaigh.
+ Glavno su mjesto izvedbe prostori izvoditelja te prostori javnog naručitelja.
+ A végrehajtás fő helye a nyertes ajánlattevő telephelye és az ajánlatkérő telephelye.
+ Il luogo principale di esecuzione è la sede del contraente e la sede dell'ente appaltante.
+ galvenā izpildes vieta ir darbuzņēmēja telpas un līgumslēdzējas iestādes telpas.
+ Pagrindinė įgyvendinimo vieta yra rangovo patalpos ir perkančiosios organizacijos patalpos.
+ Il-post ewlieni tat-twettiq huwa l-bini tal-kuntrattur u l-bini tal-awtorità li qiegħda toħroġ il-kuntratt.
+ de voornaamste plaats van uitvoering is in de kantoren van de contractant en in de kantoren van de aanbestedende dienst.
+ Głównym miejscem realizacji jest siedziba wykonawcy oraz siedziba instytucji zamawiającej.
+ O local de execução principal é nas instalações do contratante e nas instalações da entidade adjudicante.
+ Locul principal de executare este sediul contractantului și sediile autorității contractante.
+ Hlavným miestom vykonania sú priestory dodávateľa a priestory verejného obstarávateľa.
+ Glavni kraj izvedbe bodo prostori izvajalca in prostori naročnika.
+ El principal lugar de ejecución son las instalaciones del contratista y las instalaciones del órgano de contratación.
+ Plats för utförande är huvudsakligen uppdragstagarens lokaler och den upphandlande myndighetens lokaler.
+
+ LU000
+
+ LUX
+
+
+
+
+ 2020-06-01+02:00
+ 48
+
+
+ 0
+
+
+
+
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_nego_accel.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_nego_accel.xml
new file mode 100644
index 000000000..4a2bcfb55
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_nego_accel.xml
@@ -0,0 +1,408 @@
+
+
+
+
+
+
+
+ https://hmlandregistry.force.com
+
+ 16
+
+
+
+
+ https://www.gov.uk/government/organisations/land-registry
+ https://www.gov.uk/government/organisations/land-registry
+
+ ORG-0001
+
+
+ HM Land Registry
+
+
+ 1 Bedford Park
+ Trafalgar House
+ Croydon
+ CR0 2AQ
+ UKI62
+
+ GBR
+
+
+
+ 123 456 789
+
+
+ Helpdesk
+ (+12)34567890
+ (+12)345678909
+ helpdesk@landregistry.gov.uk
+
+
+
+ https://www.gov.uk/government/organisations/land-registry
+
+ TPO-0001
+
+
+ Procurement Department
+
+
+ Trafalgar House, 1 Bedford Park
+ Croydon
+ CR0 2AQ
+ UKI62
+
+ GBR
+
+
+
+ (+12)34567890
+ (+12)345678909
+ Procurement@landregistry.gov.uk
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0002
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI62
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0003
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ d1a2e651-b32f-4606-a5dd-d180bab20be1
+ e3cdabf1-e057-47a5-9210-b1f6fc757228
+ 2020-03-30+01:00
+ 09:10:40+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ENG
+
+
+ cga
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0003
+
+
+
+
+
+
+
+
+
+
+ https://hmlandregistry.force.com
+
+
+
+
+
+
+ crime-org
+ NOT AVAILABLE
+
+
+ corruption
+ NOT AVAILABLE
+
+
+ fraud
+ NOT AVAILABLE
+
+
+ terr-offence
+ NOT AVAILABLE
+
+
+ finan-laund
+ NOT AVAILABLE
+
+
+ human-traffic
+ NOT AVAILABLE
+
+
+ tax-pay
+ NOT AVAILABLE
+
+
+ socsec-pay
+ NOT AVAILABLE
+
+
+ envir-law
+ NOT AVAILABLE
+
+
+ socsec-law
+ NOT AVAILABLE
+
+
+ labour-law
+ NOT AVAILABLE
+
+
+ insolvency
+ Tenderers will be excluded if...
+
+
+
+
+ neg-w-call
+
+ true
+ The needs of the contracting authority cannot be met without adaptation of ready available solutions.
+
+
+
+ CO591
+ Scanning, Processing and Data Extraction Services
+ This requirement is to procure a replacement contract for scanning, processing and data extraction services which are located off HM Land Registry premises. To access the procurement documents for this contract please sign up at https://hmlandregistry.force.com and register for project C0591. You should use the same link to submit your selection questionnaire response.
+ services
+
+ 79999000
+
+
+ Her Majesty's Land Registry, UK-wide
+
+ anyw-cou
+
+ GBR
+
+
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ HM Land Registry will have certain technical requirements for this contract that will be mandatory in order to meet the necessary UK Government security standards. (i) Bidders will be asked to self-certify that their organisation either is already certified to ‘ISO 27001:2017 Information Security Management' or equivalent level, or would ensure that it is accredited in accordance with the outline implementation plan timescale requirements and will maintain this certification throughout the contract period. (ii) Bidders will be asked to self-certify that their organisation either is already certified to ‘Penetration of systems by a CHECK, CREST, or TIGER approved’ or equivalent standard, or would ensure that it is accredited in accordance with the outline implementation plan timescale requirements and will maintain this certification throughout the contract period. (iii) Bidders will be asked to self-certify that their organisation either is already operating to UK government cloud security principles in terms of official data holding and management of personal information, or can provide assurance that the required services will be implemented and managed in accordance to these principles. This includes assurance that controls will be implemented as part of a security risk management process within the outline implementation plan timescale requirements, and risk management maintained throughout the contract period. Please see the following link: https://www.ncsc.gov.uk/guidance/cloud-security-collection.
+ used
+ false
+
+
+ ef-stand
+ Selection criteria as stated in the procurement documents
+ used
+ true
+
+
+ tp-abil
+ Selection criteria as stated in the procurement documents
+ used
+ true
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ TenderDocID1
+ tdf-non-av
+ restricted-document
+ ENG
+
+
+ https://hmlandregistry.force.com
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ not-allowed
+
+
+ true
+
+
+ Price is not the only award criterion and all criteria are stated only in the procurement documents
+
+
+
+
+
+ ORG-0001
+
+
+
+ https://hmlandregistry.force.com
+
+ ORG-0001
+
+
+
+
+ There is no right of appeal in this procurement. If you have a complaint or seek to challenge the outcome, please follow the guidance on procedure contained in the previous section.
+
+
+
+ ORG-0001
+
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0002
+
+
+
+
+ ENG
+
+
+ false
+ false
+
+
+
+ required
+ true
+ true
+ https://hmlandregistry.force.com
+
+ 2020-04-22+02:00
+
+
+ 2020-04-29+01:00
+ 12:00:00+01:00
+
+
+ true
+ 10
+ 3
+
+
+ false
+
+
+ none
+
+
+ none
+
+
+
+ xyz
+ Scanning, Processing and Data Extraction Services
+ HM Land Registry plan to procure a replacement contract for scanning, processing and data extraction services. The contract period will be for an initial period of 42 months, plus 2 x 12 month extension options, with an indicative value of between GBP 7 000 000 and GBP 10 000 000 across the whole contract period, including extension options. We expect that the scope of the services will cover the following: • receipt and processing of items of mail addressed to HM Land Registry, which may include opening, re-directing, returning and/or scanning; • mail items may be of varying size for example letters and packets and are currently delivered by Royal Mail and DX; • preparation and scanning of HM Land Registry application forms, plans and documents, of varying size, age and quality, which may be coloured or black and white; • the extraction, capture and electronic submission of accurate data from HM Land Registry paper and scanned images of application forms (electronic data extraction) and documents; • the electronic submission of high quality digital images within specified service levels; • temporary storage and secure destruction of hard copy original documents; • returning through post and/or courier cherished documents and other associated documents; • processing, validation and banking of cheques and postal orders; • bulk scanning and digitisation of documents held in HM Land Registry’s archive; • quality assurance processes average front file scanning daily volumes are as follows: — mail items received 2 150, — images scanned 23 000. • average back file scanning daily volumes are as follows: — mail items received 1 000, — images scanned 16 000. • electronic data extraction daily volumes are as follows: — documents 13 000, — images 51 000. • cheques and postal orders daily volumes are as follows: 355. Please note that the value provided in section II.1.5) is only an estimate. This procurement offering does not guarantee any minimum spend and there will be no form of exclusivity or volume guarantee under this contract. This is the first stage of the procurement where suppliers are asked to download and complete the selection questionnaire document. To access the procurement documents for this contract please sign up at https://hmlandregistry.force.com and register for project C0591. If you have already registered for this procurement via the supplier day you do not need to re-register. You should use the same link to submit your selection questionnaire response. The selection questionnaire will be accompanied by the draft tender documents, including the statement of requirements, invitation to negotiate, method statement, pricing schedule and the contract. All communications should be via HM Land Registry's tender portal https://hmlandregistry.force.com and register for project C0591. The deadline for submitting selection questionnaire responses is 12.00 on Wednesday 29 April 2020.
+ services
+ 10000000
+ false
+
+ 79999000
+
+
+ Her Majesty's Land Registry, UK-wide
+
+ anyw-cou
+
+ GBR
+
+
+
+
+ 2020-09-01+02:00
+ 66
+
+
+ 2
+
+
+ There will be 2 x 12 month extensions following the initial 42-month period.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open.xml
new file mode 100644
index 000000000..383045e32
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open.xml
@@ -0,0 +1,491 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+ http://www.renfrewshire.gov.uk
+
+ ORG-0001
+
+
+ Renfrewshire Council
+
+
+ Renfrewshire House, Cotton Street
+ Paisley
+ PA1 1JB
+ UKM83
+
+ GBR
+
+
+
+ not available
+
+
+ (+12)34567890
+ (+12)345678909
+ douglas.mcewan@renfrewshire.gov.uk
+
+
+
+
+
+ https://sheriff.gov.uk
+
+ ORG-0002
+
+
+ Sheriff Court
+
+
+ Sheriff Street
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 123 456 789
+
+
+ (+12)34567890
+ (+12)345678909
+ contact@example.com
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ c4c415ee-ac08-4465-8fa6-57568cf69462
+ 31f258b6-5eb2-4875-8997-affa3cdce27c
+ 2020-02-28+01:00
+ 12:32:13+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ENG
+
+ https://www.publiccontractsscotland.gov.uk/search/Search_AuthProfile.aspx?ID=AA00400
+
+ la
+
+
+ gen-pub
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+
+
+ crime-org
+ NOT AVAILABLE
+
+
+ corruption
+ NOT AVAILABLE
+
+
+ fraud
+ NOT AVAILABLE
+
+
+ terr-offence
+ NOT AVAILABLE
+
+
+ finan-laund
+ NOT AVAILABLE
+
+
+ human-traffic
+ NOT AVAILABLE
+
+
+ tax-pay
+ NOT AVAILABLE
+
+
+ socsec-pay
+ NOT AVAILABLE
+
+
+ envir-law
+ NOT AVAILABLE
+
+
+ socsec-law
+ NOT AVAILABLE
+
+
+ labour-law
+ NOT AVAILABLE
+
+
+ insolvency
+ Bidders will be required to state if any of the exclusion grounds as detailed within Regulation 58 (1) of The Public Contracts (Scotland) Regulations 2015 apply to them. — If required by the member state, bidders are required to be enrolled in the relevant professional or trade registers within the country in which they are established (in the United Kingdom, the bidder is a company registered with the Registrar of Companies and can provide a certificate stating that he is certified as incorporated or registered or, where he is not so certified, a certificate stating that the person concerned has declared on oath that he is engaged in the profession in a specific place under a given business name). — Bidders will be required to state if it is a requirement in the bidder’s country of establishment to hold a particular authorisation or membership of a particular organisation in order to be able to perform the service in question. Where it is required, within a bidder’s country of establishment they must confirm which authorisation or memberships of the relevant organisation(s) are required in order to perform this service and also must confirm if they hold the particular authorisation or memberships.
+
+
+
+
+ open
+
+
+ RC-CPU-19-065
+ Term Contract for a Planned Programme of In-service Inspection and Testing of Electrical Equipment
+ The purpose of this contract is to formalise the Councils requirement to employ a contractor to carry out a planned programme of in-service inspection and testing of electrical equipment within the Councils public buildings.
+ services
+ The anticipated annual value of this contract is estimated to be GBP 90 0000.00 to GBP 100 000.00.
+
+ 500000
+
+
+ 71630000
+
+
+ 71314100
+
+
+ 50300000
+
+
+ 31600000
+
+
+ Public buildings within the geographical area of Renfrewshire Council.
+
+ UKM83
+
+ GBR
+
+
+
+
+
+
+ the Council will have the option to extend the contract for additional periods up to a total of 24 months (it is at the Councils sole discretion the period of any extension awarded but the total of all extension periods awarded will not exceed 24 months).
+
+
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Bidders will be required to state if any of the exclusion grounds as detailed within Regulation 58 (1) of The Public Contracts (Scotland) Regulations 2015 apply to them. — If required by the member state, bidders are required to be enrolled in the relevant professional or trade registers within the country in which they are established (in the United Kingdom, the bidder is a company registered with the Registrar of Companies and can provide a certificate stating that he is certified as incorporated or registered or, where he is not so certified, a certificate stating that the person concerned has declared on oath that he is engaged in the profession in a specific place under a given business name). — Bidders will be required to state if it is a requirement in the bidder’s country of establishment to hold a particular authorisation or membership of a particular organisation in order to be able to perform the service in question. Where it is required, within a bidder’s country of establishment they must confirm which authorisation or memberships of the relevant organisation(s) are required in order to perform this service and also must confirm if they hold the particular authorisation or memberships.
+ used
+
+
+ ef-stand
+ Bidders will be required to have a minimum ‘general’ yearly turnover of GBP 200 000.00 for the last 3 years. Where turnover information is not available for the time period requested, the bidder will be required to state the date which they were set up/started trading. Where a bidder fails to meet the minimum financial turnover requirements in its own right but is a subsidiary of a group, the bidder must state if they are relying on a parent company guarantee (the parent company must meet the stipulated minimum financial requirements). The parent company guarantee will be in the form provided in the tender documentation (Appendix A1). Where a bidder is applying as part of a consortium the collective annual turnover of all consortium members will be utilised in the overall assessment of annual turnover. Bidders will require to evidence the equivalent of a Dun and Bradstreet Failure Score of 20 or above. If a bidder considers that the D&B failure score does not reflect their current financial status, the bidder should give a detailed explanation and will be required to provide any relevant supporting independent evidence at request for documentation stage. Where the bidder is a subsidiary of a group but is applying as a separate legal entity and fails to meet the minimum D&B Failure Score (or equivalent) as a company, a parent company guarantee will be required. The parent company must meet the minimum financial requirements as assessed by the Council. The parent company guarantee will be in the form provided in the tender documentation (Appendix A1). Where a bidder is under no obligation to publish accounts and therefore does not have a D&B failure score, they will be required to provide their audited financial accounts for the previous 2 years as part of the request for documentation stage in order that the Council may assess these to determine the suitability of the bidder to undertake a contract of this size. Where a consortium bid is received, the D&B failure score of each consortium member shall be assessed. Bidders must hold or can commit to obtain prior to the commence of any subsequently awarded contract, the types and levels of insurance indicated below: Employer’s (compulsory) liability insurance — minimum GBP 10 million each and every claim. Public and product liability insurance — minimum GBP 10 million each and every claim but in the aggregate for products. Statutory third party motor vehicle insurance. Minimum level(s) of standards possibly required: Minimum ‘general’ yearly turnover of GBP 200 000.00 for the last 3 years. Minimum Dun and Bradstreet Failure Score of 20 or equivalent credit rating. Employer’s (compulsory) liability insurance with a minimum indemnity limit of GBP 10 million each and every claim. Public and Product Liability Insurance with a minimum indemnity limit of GBP 10 million each and every claim but in the aggregate for products. Statutory third party motor vehicle insurance.
+ used
+
+
+ tp-abil
+ Bidders will be required to provide examples that demonstrate that they have the relevant experience to deliver the works/services required under this contract. Bidders will require to confirm that the personnel to be used in the execution of this contract possess the City and Guilds Level 3 Certificate for in-service inspections and testing of electrical equipment or other equivalent qualification relevant to the country where the bidder’s registered office or place of business is based. Bidders will be required to confirm their average annual manpower for the last 3 years and the number of managerial staff for the last 3 years. Bidders will be required to demonstrate that they have (or have access to) the relevant tools, plant or technical equipment to deliver the works/services required under this contract. Bidders will be required to confirm whether they intend to subcontract and, if so, for what proportion of the contract (where the bidder intends to subcontract more than 25 % of any contract value to a single subcontractor, a financial report will be carried out on the subcontractor. The Council reserve the right to request one copy of all subcontractors last 2 years audited accounts and details of significant changes since the last year end. The Council also reserve the right to reject the use of subcontractors in relation to the contract, where they fail to meet the Council's minimum financial criteria). Bidders must have health and safety accreditation to BS OHSAS 18001 (or equivalent) or have a documented policy for health and safety management, endorsed by the Chief Executive Officer or equivalent. Bidders must have quality management accreditation to BS EN ISO 9001 (or equivalent) or have a documented policy for quality management, endorsed by the Chief Executive Officer or equivalent. Bidders must have environmental management accreditation to BS EN ISO 14001 (or equivalent) or have a documented policy for environmental management, endorsed by the Chief Executive Officer or equivalent. Minimum level(s) of standards possibly required: Bidders must have previous relevant experience. Bidders personnel must have City and Guilds Level 3 certificate for in-service inspections and testing of electrical equipment or other equivalent qualification. Bidders must have the appropriate number of employees to successfully deliver this contract. Bidders must have the appropriate tools, plant and equipment to successfully deliver this contract. Bidders must state if they intend to subcontract any portion of this contract. Bidders must be accredited to BS OHSAS 18001 (or equivalent) or have a documented policy for health and safety management. Bidders must be accredited to BS EN ISO 9001 (or equivalent) or have a documented policy for quality management. Bidders must be accredited to BS EN ISO 14001 (or equivalent) or have a documented policy for environmental management
+ used
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ DocID1
+ non-restricted-document
+
+
+ https://www.publictendersscotland.publiccontractsscotland.gov.uk
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ not-allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 15
+
+
+
+
+
+ quality
+ Methodology and approach
+ The methodology is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 5
+
+
+
+
+
+ quality
+ Fair working practices
+ The working practices are evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 3
+
+
+
+
+
+ quality
+ Community benefits offered
+ The community benefits are evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 2
+
+
+
+
+
+ quality
+ Community benefit methodology
+ The community benefits methodology is evaluated by...
+
+
+
+
+
+
+
+ per-exa
+ 75
+
+
+
+
+
+ price
+ Price
+ The price is evaluated by...
+
+
+
+
+
+ ORG-0001
+
+
+
+ https://www.publictendersscotland.publiccontractsscotland.gov.uk
+
+ ORG-0001
+
+
+
+ 150
+
+
+
+ Precise information on deadline(s) for review procedures: An economic operator that suffers or risks suffering, loss or damage attributable to a breach of duty under the Public Contracts (Scotland) Regulations 2015 (SSI 2015/446) may bring proceedings in the Sheriff Court or the Court of Session, provided that it has informed the contracting authority of the breach or apprehended breach of its duties and of its intention to bring proceedings relating to that breach. Proceedings must be brought within the timescales set out in the regulations.
+
+
+
+ ORG-0001
+
+
+
+
+ ORG-0002
+
+
+
+
+ ORG-0003
+
+
+
+
+ ENG
+
+
+ true
+ true
+
+
+
+ allowed
+ true
+
+ 2020-04-03+01:00
+ 12:00:00+01:00
+
+
+ 2020-04-03+01:00
+ 14:00:00+01:00
+ Strictly by invitation only.
+
+ Renfrewshire House, Cotton Street, Paisley.
+
+
+
+ false
+
+
+ none
+
+
+ none
+
+
+
+ Term Contract for a Planned Programme of In-service Inspection and Testing of Electrical Equipment
+ The purpose of this contract is to formalise the Councils requirement to employ a contractor to carry out a planned programme of in-service inspection and testing of electrical equipment within the Councils public buildings.
+ services
+
+ 71630000
+
+
+ 71314100
+
+
+ 50300000
+
+
+ 31600000
+
+
+ Public buildings within the geographical area of Renfrewshire Council.
+
+ UKM83
+
+ GBR
+
+
+
+
+ 2020-09-01+02:00
+ 36
+
+
+
+
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open_accel.xml b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open_accel.xml
new file mode 100644
index 000000000..82568ca72
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/test_data/cn_sample_2022_10/cn_24_open_accel.xml
@@ -0,0 +1,439 @@
+
+
+
+
+
+
+
+
+ 16
+
+
+
+
+ http://www.carabinieri.it/Internet/
+
+ ORG-0001
+
+
+ Comando generale dell'Arma dei carabinieri
+
+
+ viale Romania 45
+ Roma
+ 00197
+ ITI43
+
+ ITA
+
+
+
+ 123 456 789
+
+
+ +39 0680982269
+ +39 06809822699
+ crm42527@pec.carabinieri.it
+
+
+
+ http://www.carabinieri.it/Internet/
+
+ TPO-0001
+
+
+ Ufficio Approvvigionamenti
+
+
+ viale Romania 45
+ Roma
+ 00197
+ ITI43
+
+ ITA
+
+
+
+ +39 0680982269
+ +39 06809822699
+ crm42527@pec.carabinieri.it
+
+
+
+ http://www.carabinieri.it/Internet/
+
+ TPO-0002
+
+
+ Direzione di Commissariato
+
+
+ viale Romania 45
+ Roma
+ 00197
+ ITI43
+
+ ITA
+
+
+
+ +39 0680982710
+ +39 06809827109
+ crm42527@pec.carabinieri.it
+
+
+
+
+
+ https://www.giustizia-amministrativa.it/tribunale-amministrativo-regionale-per-il-lazio-roma
+
+ ORG-0002
+
+
+ Tribunale amministrativo regionale del Lazio
+
+
+ via Flaminia 189
+ Roma
+ 00197
+ ITI43
+
+ ITA
+
+
+
+ 222 222 222
+
+
+ +39 06328721
+ +39 0632872310
+ contact@example.com
+
+
+
+
+
+ https://example-mediator.eu
+
+ ORG-0003
+
+
+ Example Mediator
+
+
+ Some Street
+ Example City
+ ABC123
+ UKI42
+
+ GBR
+
+
+
+ 111 111 111
+
+
+ +123 456 789
+ +123 456 7899
+ contact@example-mediator.com
+
+
+
+
+
+ https://esendercorp.eu
+
+ ORG-0004
+
+
+ eSendCorp
+
+
+ Luxembourg
+ 2985
+ LU000
+
+ LUX
+
+
+
+ 111 222 333
+
+
+ +352 123456789
+ +352 1234567899
+ esender@example.com
+
+
+
+
+
+
+
+
+ 2.3
+ eforms-sdk-1.2
+ c77a5424-249b-499b-a45b-2265edb941bb
+ 2b81ba62-3167-4618-bbfc-98db716e2f38
+ 2020-04-23+01:00
+ 07:06:04+01:00
+ 01
+ 32014L0024
+ cn-standard
+ ITA
+
+ http://www.carabinieri.it/Internet/
+
+ cga
+
+
+ defence
+
+
+
+ ORG-0001
+
+
+ ted-esen
+
+
+ ORG-0004
+
+
+
+
+
+
+
+
+ crime-org
+ NOT AVAILABLE
+
+
+ corruption
+ NOT AVAILABLE
+
+
+ fraud
+ NOT AVAILABLE
+
+
+ terr-offence
+ NOT AVAILABLE
+
+
+ finan-laund
+ NOT AVAILABLE
+
+
+ human-traffic
+ NOT AVAILABLE
+
+
+ tax-pay
+ NOT AVAILABLE
+
+
+ socsec-pay
+ NOT AVAILABLE
+
+
+ envir-law
+ NOT AVAILABLE
+
+
+ socsec-law
+ NOT AVAILABLE
+
+
+ labour-law
+ NOT AVAILABLE
+
+
+ insolvency
+ NOT AVAILABLE
+
+
+
+
+ open
+
+ true
+ Urgente necessità logistico-operativa di assicurare la fruizione dei posti letto
+
+
+
+ not available
+ Procedura aperta accelerata per la fornitura di n. 212 posti letto, ognuno composto da arredi e complementi di arredo, per le esigenze della Scuola marescialli e brigadieri di Firenze
+ Fornitura di n. 212 posti letto ognuno composto da: — arredi (n. 1 armadio a due ante, n. 1 comodino a un cassetto, n, 1 scarpiera, n. 1 mobile basso a due ante, n. 1 scrivania singola con alzata e n. 1 struttura per letto con cassettone contenitore), — complementi d’arredo (n. 1 cassetta porta pistola, n. 1 scala in alluminio, n. 1 rete a doghe di legno, n. 1 materasso, n. 1 sopraffodera, n. 1 guanciale e n. 1 sedia).
+ supplies
+ a) le procedure approvvigionative di cui al presente bando sono state autorizzate – ai sensi dell’art. 32, comma 2 del D.Lgs. n. 50/2016 – con determina a contrarre n. 180 RUA in data 25.3.2020; b) la presente procedura viene pubblicata nonostante la sospensione dei termini ordinatori, perentori, propedeutici, endoprocedimentali, finali ed esecutivi relativi allo svolgimento di procedimenti amministrativi prevista dall’art. 103 del D.L. n. 18 del 17.3.2020 vista la necessità e l’urgenza di disporre dei materiali in approvvigionamento, sin dall’AA 2020-2021, presso la Scuola marescialli e brigadieri dei Carabinieri di Firenze; c) il disciplinare di gara, che contiene tutte le condizioni di partecipazione, unitamente ai relativi allegati, alle specifiche tecniche ed alla bozza di contratto sono disponibili, unitamente al presente bando, sul sito: www.carabinieri.it, nella sezione «amministrazione trasparente», sotto-sezione «bandi di gara e contratti», al seguente URL: http://www.carabinieri.it/cittadino/informazioni/gare-appalto/gare-appalto/approvvigionamento-di-212-posti-letto-per-la-scuola-mar.-e-brig.-di-firenze e sul sito Internet: www.acquistinretepa.it (nome iniziativa: procedura aperta per la fornitura di n. 212 posti letto – numero/codice iniziativa: 2554061 accessibile dalla sottocartella «altre gare»); d) il presente appalto non è stato suddiviso in lotti funzionali, in ragione dell’omogeneità del materiale in acquisizione; e) non è stato redatto il DUVRI in ragione dell’assenza di interferenze; f) il CIG (Codice identificativo di gara) attribuito al presente procedimento dall’ANAC è: 8266589D09; g) il codice unico di progetto (CUP) attribuito al presente procedimento è: D19E20000110001; h) il presente bando di gara è stato trasmesso per la pubblicazione sulla GUUE all’Ufficio delle pubblicazioni dell’Unione europea in data 23.4.2020; i) ai sensi del regolamento CE n. 593 del 17.6.2008 del Parlamento europeo e del Consiglio, alle obbligazioni contrattuali derivanti dalla presente gara di appalto sarà applicata la legislazione italiana; j) responsabile del procedimento è il capo pro-tempore del centro unico contrattuale del Comando generale dell’Arma dei carabinieri; k) direttore dell’esecuzione del contratto è il direttore pro-tempore della Direzione di commissariato del Comando generale dell’Arma dei carabinieri.
+
+ 291934.60
+
+
+ 39143100
+
+
+
+ LOT-0000
+
+
+
+
+
+
+ sui-act
+ Sono ammessi tutti gli operatori economici previsti dall’art. 45 del D.Lgs. n. 50/2016, compresi i concorrenti appositamente e temporaneamente raggruppati ai sensi dell’art. 45, comma 2, lett. d) del D.Lgs. n. 50/2016 e aggregazioni tra imprese aderenti al contratto di rete ai sensi dell’art. 45, comma 2, lett. f) del D.Lgs. n. 50/2016, secondo le modalità indicate nel disciplinare di gara.
+ used
+
+
+ ef-stand
+ Ciascuna impresa concorrente (anche se ausiliaria, consorziata, mandante o retista) dovrà produrre due idonee dichiarazioni bancarie.
+ used
+
+
+ tp-abil
+ Sono ammesse a partecipare le imprese e/o raggruppamenti e/o reti specializzati nella produzione dei manufatti per cui chiedono di concorrere. A tal fine, ciascun concorrente dovrà dichiarare/dimostrare il possesso dei seguenti requisiti minimi: a) fasi di lavorazione essenziali che ogni operatore economico partecipante dovrà possedere (esclusi rete, sedia e cassetta porta pistola e gli accessori come viti, maniglie e guide): — taglio, fresatura, foratura, piallatura, levigatura e incollaggio del legno, — assemblaggio delle parti componenti i singoli arredi, — imballaggio, — montaggio a destinazione; b) organizzazione complessiva d’impresa desumibile da: — elenco descrittivo delle attrezzature tecniche possedute afferenti la lavorazione completi dei manufatti in legno, — stabilimenti di produzione e forza lavoro, — capacità produttiva giornaliera riferita a prodotti finiti analoghi a quelli dell’appalto in linea con i termini di approntamento e montaggio degli arredi in fornitura (55 giorni); c) certificazione di qualità in corso di validità, attestante l’ottemperanza alle norme UNI EN ISO 9001-2015, rilasciata da ente accreditato Accredia o altro ente in mutuo riconoscimento, relativa al settore di accreditamento (EA) e processi verificati e certificati (indicati nello «scopo» o «campo di applicazione») concernenti la/e fase/i di lavorazione svolta/e dall’operatore economico per la tipologia di manufatti per i quali chiede di partecipare; d) fatturato specifico: le ditte partecipanti dovranno presentare l’elenco dettagliato di forniture, realizzate nel triennio 2017-2019, relativo a prodotti finiti analoghi per materia prima utilizzata (manufatti in legno) a quelli per cui si chiede di partecipare, la cui media annua deve essere pari ad almeno il valore della gara (291 934,60 EUR, IVA esclusa). L’elenco deve contenere l’indicazione dettagliata di tipologia dei prodotti, importi fatturati, date dei contratti e beneficiari. L’amministrazione si riserva la facoltà di disporre sopralluoghi tecnici presso le sedi, anche secondarie, dei concorrenti, per verificarne la capacità tecnica. Le relative spese sono a carico del concorrente. I livelli minimi di capacità tecnica ed economica sono giustificati dall’oggettiva complessità della fornitura (quanto a tempi di approntamento e consegna dei prodotti finiti, specie per richiesta di «V d’urgenza» o «V d’obbligo»), in quanto i materiali dovranno essere adattati all’ambiente dove dovranno essere consegnati ed installati.
+ used
+
+
+
+
+
+ not-allowed
+ no-eu-funds
+
+ 1234
+ non-restricted-document
+
+
+ http://www.carabinieri.it/cittadino/informazioni/gare-appalto/gare-appalto/approvvigionamento-di-212-posti-letto-per-la-scuola-mar.-e-brig.-di-firenze
+
+
+
+
+
+ none
+
+
+
+ no
+
+
+ required
+
+
+ allowed
+
+
+
+
+
+
+
+
+
+ per-exa
+ 100
+
+
+
+
+
+ price
+ Il prezzo è valutato da...
+
+
+
+
+
+ TPO-0002
+
+
+
+ https://www.acquistinretepa.it/negoziazioni/prv?pagina=iniziativaIns_stepMain&idT=2554061&submit=elenco&backPage=get:3338017180&hmac=ed61bcf821de9dcbc24205e2c515b0ca
+
+ ORG-0001
+
+
+
+ 6
+
+
+
+ Informazioni dettagliate sui termini di presentazione dei ricorsi: 30 giorni dalla notifica o dall’effettiva conoscenza dell’avvenuta aggiudicazione, per ricorrere al competente Tribunale amministrativo regionale del Lazio, sede di Roma.
+
+
+
+ ORG-0002
+
+
+
+
+ TPO-0001
+
+
+
+
+ ORG-0003
+
+
+
+
+ ITA
+
+
+ true
+ false
+
+
+
+ required
+ true
+
+ 2020-05-18+01:00
+ 18:00:00+01:00
+
+
+ 2020-05-19+01:00
+ 09:30:00+01:00
+
+ Piattaforma telematica di negoziazione messa a disposizione dalla Consip SpA (in qualità di gestore del sistema), sul sito Internet: www.acquistinretepa.it
+
+
+
+ false
+
+
+ none
+
+
+ none
+
+
+
+ not available
+ Procedura aperta accelerata per la fornitura di n. 212 posti letto, ognuno composto da arredi e complementi di arredo, per le esigenze della Scuola marescialli e brigadieri di Firenze
+ Fornitura di n. 212 posti letto ognuno composto da: — arredi (n. 1 armadio a due ante, n. 1 comodino a un cassetto, n, 1 scarpiera, n. 1 mobile basso a due ante, n. 1 scrivania singola con alzata e n. 1 struttura per letto con cassettone contenitore), — complementi d’arredo (n. 1 cassetta porta pistola, n. 1 scala in alluminio, n. 1 rete a doghe di legno, n. 1 materasso, n. 1 sopraffodera, n. 1 guanciale e n. 1 sedia).
+ supplies
+
+ 39143100
+
+
+ Firenze
+
+ ITI14
+
+ ITA
+
+
+
+
+ 2020-06-01+02:00
+ 55
+
+
+
+
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/conceptual_mappings.xlsx b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/conceptual_mappings.xlsx
new file mode 100644
index 000000000..e08e007ed
Binary files /dev/null and b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/conceptual_mappings.xlsx differ
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AcquiringCentralPurchasingBody.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AcquiringCentralPurchasingBody.ttl
new file mode 100644
index 000000000..c1c6d8401
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AcquiringCentralPurchasingBody.ttl
@@ -0,0 +1,73 @@
+#--- MG-AcquiringCentralPurchasingBody ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-AcquiringCentralPurchasingBody_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-AcquiringCentralPurchasingBody" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rml:reference "if(exists(efbc:AcquiringCPBIndicator)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_AcquiringCentralPurchasingBody_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null";
+ rr:class epo:AcquiringCentralPurchasingBody
+ ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:playedBy ;
+ rr:objectMap
+ [
+ rdfs:label "Acquiring CPB Buyer Indicator" ;
+ rr:parentTriplesMap tedm:MG-Organization-playedBy-AcquiringCentralPurchasingBody_ND-Organization ;
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ] ;
+ ] ;
+.
+
+# this is an example of an MG with iterator that is not on the node but a level down
+tedm:MG-Organization-playedBy-AcquiringCentralPurchasingBody_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-Organization-playedBy-AcquiringCentralPurchasingBody" ;
+ rdfs:comment "Represents the AcquiringCentralPurchasingBody Organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rdfs:comment "Primary type declaration for MG-Organization-playedBy-AcquiringCentralPurchasingBody under ND-Organization" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:PartyIdentification/cbc:ID}" ;
+ rr:class org:Organization
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AwardingCentralPurchasingBody.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AwardingCentralPurchasingBody.ttl
new file mode 100644
index 000000000..4668a2d7a
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/AwardingCentralPurchasingBody.ttl
@@ -0,0 +1,73 @@
+#--- MG-AwardingCentralPurchasingBody ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-AwardingCentralPurchasingBody_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-AwardingCentralPurchasingBody" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rml:reference "if(exists(efbc:AwardingCPBIndicator)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_AwardingCentralPurchasingBody_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null";
+ rr:class epo:AwardingCentralPurchasingBody
+ ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:playedBy ;
+ rr:objectMap
+ [
+ rdfs:label "Awarding CPB Buyer Indicator" ;
+ rr:parentTriplesMap tedm:MG-Organization-playedBy-AwardingCentralPurchasingBody_ND-Organization ;
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ] ;
+ ] ;
+.
+
+# this is an example of an MG with iterator that is not on the node but a level down
+tedm:MG-Organization-playedBy-AwardingCentralPurchasingBody_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-Organization-playedBy-AwardingCentralPurchasingBody" ;
+ rdfs:comment "Represents the AwardingCentralPurchasingBody Organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rdfs:comment "Primary type declaration for MG-Organization-playedBy-AwardingCentralPurchasingBody under ND-Organization" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:PartyIdentification/cbc:ID}" ;
+ rr:class org:Organization
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Buyer.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Buyer.ttl
new file mode 100644
index 000000000..a615e66ad
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Buyer.ttl
@@ -0,0 +1,155 @@
+#--- MG-Buyer ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+# this is an example of a role being declared on a node
+tedm:MG-Buyer_ND-ContractingParty a rr:TriplesMap ;
+ rdfs:label "MG-Buyer" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ContractingParty";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ContractingParty" ;
+ rdfs:comment "Primary type declaration for MG-Buyer under ND-ContractingParty" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Buyer_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:Buyer
+ ] ;
+ # this is an example of an association to an independent resource (role to organization)
+ # TODO should this be another TMap, since it is under ND-ServiceProvider node instead of ND-ContractingParty?
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.10
+ rdfs:label "OPT-300-Procedure-Buyer" ;
+ rdfs:comment "Buyer Technical Identifier Reference" ;
+ rr:predicate epo:playedBy ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.3" ;
+ tedm:maxSDKVersion "1.9.1" ;
+ rr:parentTriplesMap tedm:MG-Organization-playedBy-Buyer_ND-ServiceProvider ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # this is an example of a conditioned attribute where neither type, legalType or ePO type are the same
+ rdfs:label "BT-740-Procedure-Buyer (cont-ent)" ;
+ rdfs:comment "Is BuyerContractingEntity of MG-Buyer under ND-ContractingParty, TRUE case" ;
+ rr:predicate epo:isContractingEntity ;
+ rr:objectMap
+ [
+ rml:reference "if(cac:ContractingPartyType/cbc:PartyTypeCode[@listName='buyer-contracting-type']/text()='cont-ent') then 'true' else null" ;
+ rr:datatype xsd:boolean ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-740-Procedure-Buyer (not-cont-ent)" ;
+ rdfs:comment "Is BuyerContractingEntity of MG-Buyer under ND-ContractingParty, FALSE case" ;
+ rr:predicate epo:isContractingEntity ;
+ rr:objectMap
+ [
+ rml:reference "if(cac:ContractingPartyType/cbc:PartyTypeCode[@listName='buyer-contracting-type']/text()='not-cont-ent') then 'false' else null" ;
+ rr:datatype xsd:boolean ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-508-Procedure-Buyer" ;
+ rdfs:comment "Buyer Profile URL of of MG-Buyer under ND-ContractingParty" ;
+ rr:predicate epo:hasBuyerProfile ;
+ rr:objectMap
+ [
+ rml:reference "cbc:BuyerProfileURI";
+ rr:datatype xsd:anyURI
+ ] ;
+ ] ;
+.
+
+tedm:MG-Organization-playedBy-Buyer_ND-ServiceProvider a rr:TriplesMap ;
+ rdfs:label "MG-Organization-playedBy-Buyer" ;
+ rdfs:comment "Represents the Buyer Organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ContractingParty/cac:Party";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ServiceProvider" ;
+ rdfs:comment "Primary type declaration for MG-Organization-playedBy-Buyer under ND-ServiceProvider" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:PartyIdentification/cbc:ID}" ;
+ rr:class org:Organization
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-11-Procedure-Buyer" ;
+ rdfs:comment "Buyer Legal Type" ;
+ rr:predicate epo:hasBuyerLegalType ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:buyer-legal-type" ;
+ rr:parentTriplesMap tedm:buyerLegalType ;
+ rr:joinCondition [
+ rr:child "../cac:ContractingPartyType/cbc:PartyTypeCode[@listName='buyer-legal-type']" ;
+ rr:parent "code" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-10-Procedure-Buyer" ;
+ rdfs:comment "Activity Authority" ;
+ rr:predicate epo:hasMainActivity ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:main-activity" ;
+ rr:parentTriplesMap tedm:main-activity ;
+ rr:joinCondition [
+ rr:child "../cac:ContractingActivity/cbc:ActivityTypeCode[@listName='authority-activity']" ;
+ rr:parent "code" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-610-Procedure-Buyer" ;
+ rdfs:comment "ActivityEntity" ;
+ rr:predicate epo:hasMainActivity ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:main-activity" ;
+ rr:parentTriplesMap tedm:main-activity ;
+ rr:joinCondition [
+ rr:child "../cac:ContractingActivity/cbc:ActivityTypeCode[@listName='authority-activity']" ;
+ rr:parent "code" ;
+ ] ;
+ ] ;
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContactPoint.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContactPoint.ttl
new file mode 100644
index 000000000..a5e34c93b
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContactPoint.ttl
@@ -0,0 +1,276 @@
+#--- MG-ContactPoint ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-ContactPoint_ND-Touchpoint a rr:TriplesMap ;
+ rdfs:label "MG-ContactPoint" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:TouchPoint";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Touchpoint" ;
+ rdfs:comment "Primary type declaration for MG-ContactPoint under ND-Touchpoint" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_TouchPoint_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class cpov:ContactPoint
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-500-Organization-TouchPoint" ;
+ rdfs:comment "Name" ;
+ rr:predicate dct:description ;
+ rr:objectMap
+ [
+ rml:reference "cac:PartyName/cbc:Name" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cac:PartyName/cbc:Name/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-201-Organization-TouchPoint" ;
+ rdfs:comment "TouchPoint Technical Identifier" ;
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-ContactPoint_ND-Touchpoint ;
+ # TODO: how does this work?
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate locn:address ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Address-address-ContactPoint_ND-TouchpointAddress ;
+ # TODO how does this work?
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-505-Organization-TouchPoint";
+ rr:predicate epo:hasInternetAddress ;
+ rr:objectMap
+ [
+ rml:reference "cbc:WebsiteURI" ;
+ rr:datatype xsd:anyURI ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-Identifier-identifier-ContactPoint_ND-Touchpoint a rr:TriplesMap ;
+ rdfs:label "MG-Identifier" ;
+ rdfs:comment "The identifier of a touchpoint" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:TouchPoint/cac:PartyIdentification" ;
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-Touchpoint" ;
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_Identifier_' || cbc:ID else null" ;
+ rr:class epo:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "identifier";
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID";
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-200-Organization-TouchPoint-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier for MG-ContactPoint under ND-Touchpoint" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
+
+tedm:MG-Address-address-ContactPoint_ND-TouchpointAddress a rr:TriplesMap ;
+ rdfs:label "ND-TouchpointAddress" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:TouchPoint/cac:PostalAddress" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-TouchpointAddress" ;
+ rdfs:comment "Primary type declaration for MG-Address-address-ContactPoint under ND-TouchpointAddress" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_TouchPointAddress_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class locn:Address
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-16,BT-510(a|b|c),BT-512,BT-513,514-Organization-Touchpoint" ;
+ rdfs:comment "Department, Street, Streetline 1, Streetline 2, Organisation City, Organisation Post Code, Organisation Country Code" ;
+ rr:predicate locn:fullAddress ;
+ rr:objectMap
+ [
+ rml:reference "replace(replace(cbc:Department || ', ' || cbc:StreetName || ', ' || cbc:AdditionalStreetName || ', ' || cbc:Line || ', ' || cbc:CityName || ', ' || cbc:PostalZone || ', ' || cac:Country/cbc:IdentificationCode, '(, )+', ', '), '^, |, $', '')" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-513-Organization-TouchPoint" ;
+ rdfs:comment "City" ;
+ rr:predicate locn:postName ;
+ rr:objectMap
+ [
+ rml:reference "cbc:CityName" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-512-Organization-TouchPoint" ;
+ rdfs:comment "City" ;
+ rr:predicate locn:postCode ;
+ rr:objectMap
+ [
+ rml:reference "cbc:PostalZone" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-507-Organization-TouchPoint" ;
+ rdfs:comment "Country Subdivision" ;
+ rr:predicate epo:hasNutsCode ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:nuts;
+ rr:joinCondition [
+ rr:child "cbc:CountrySubentityCode";
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-514-Organization-TouchPoint" ;
+ rr:predicate epo:hasCountryCode ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:country" ;
+ # alternative: instantiate vocabulary IRIs instead of mapping to a vocabulary parent resource
+ # rml:reference "'http://publications.europa.eu/resource/authority/country/' || cac:Country/cbc:IdentificationCode" ;
+ # rr:termType rr:IRI ;
+ rr:parentTriplesMap tedm:country ;
+ rr:joinCondition [
+ rr:child "cac:Country/cbc:IdentificationCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ]
+.
+
+# this is an example of a TMap with the same IRI as another (tedm:MG-ContactPoint_ND-Touchpoint)
+# (this could alternatively all go into the other TMap instead)
+tedm:MG-ContactPoint_ND-TouchpointContact a rr:TriplesMap ;
+ rdfs:label "MG-ContactPoint" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:TouchPoint/cac:Contact" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-TouchpointContact" ;
+ rdfs:comment "Primary type declaration for MG-ContactPoint under ND-TouchpointContact" ;
+ # this is an example of an IRI reference with a parent path and the type name not matching the parent node but of the ancestor
+ rml:reference "if(exists(cbc:Name) or exists(cbc:ElectronicMail) or exists(cbc:Telephone) or exists(cbc:Telefax)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_TouchPoint_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw') else null" ;
+ rr:class cpov:ContactPoint
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-502-Organization-TouchPoint" ;
+ rdfs:comment "Contact Point" ;
+ rr:predicate epo:hasContactName ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Name" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-506-Organization-TouchPoint" ;
+ rdfs:comment "Contact Email Address" ;
+ rr:predicate cpov:email ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ElectronicMail" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-503-Organization-TouchPoint" ;
+ rdfs:comment "Contact Telephone Number" ;
+ rr:predicate cpov:telephone ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Telephone" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-739-Organization-TouchPoint" ;
+ rdfs:comment "Contact Fax" ;
+ rr:predicate epo:hasFax ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Telefax" ;
+ ] ;
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContractTerm.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContractTerm.ttl
new file mode 100644
index 000000000..7f80af8f2
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ContractTerm.ttl
@@ -0,0 +1,121 @@
+#--- MG-ContractTerm ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-ContractTerm_ND-ProcedurePlacePerformanceAdditionalInformation a rr:TriplesMap ;
+ rdfs:label "MG-ContractTerm" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:RealizedLocation" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedurePlacePerformanceAdditionalInformation" ;
+ rdfs:comment "Primary type declaration for MG-ContractTerm under ND-ProcedurePlacePerformanceAdditionalInformation" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcurementProjectContractTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ContractTerm
+ ] ;
+ # rr:predicateObjectMap
+ # [
+ # rr:predicate epo:definesSpecificPlaceOfPerformance ;
+ # rr:objectMap
+ # [
+ # rr:parentTriplesMap tedm:ProcurementProjectContractLocation;
+ # rr:joinCondition [
+ # rr:child "path(.)";
+ # rr:parent "path(.)";
+ # ];
+ # ]
+ # ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-727-Procedure";
+ # rr:predicate epo:hasBroadPlaceOfPerformance ;
+ # rr:objectMap
+ # [
+ # rml:reference "descendant::cbc:Region";
+ # rr:datatype xsd:string;
+ # ] ;
+ # ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-728-Procedure";
+ # rr:predicate epo:hasPlaceOfPerformanceAdditionalInformation ;
+ # rr:objectMap
+ # [
+ # rml:reference "descendant::cbc:Description";
+ # rr:datatype xsd:string;
+ # ] ;
+ # ] ;
+ # this is an example of a predicate with value from a complex ancestor XPath
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.7
+ rdfs:label "BT-531-Procedure" ;
+ rdfs:comment "Additional Nature (different from Main) of MG-ContractTerm under ND-ProcedurePlacePerformanceAdditionalInformation" ;
+ rr:predicate epo:hasAdditionalContractNature ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.8" ;
+ rdfs:label "at-voc:contract-nature" ;
+ rr:parentTriplesMap tedm:contract-nature ;
+ rr:joinCondition [
+ rr:child "../cac:ProcurementAdditionalType[cbc:ProcurementTypeCode/@listName='contract-nature']/cbc:ProcurementTypeCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ]
+ # ,
+ # # this is an example of an alternative mapping for different versions
+ # [
+ # tedm:minSDKVersion "1.3" ;
+ # tedm:maxSDKVersion "1.7" ;
+ # rdfs:label "at-voc:contract-nature" ;
+ # # TODO min SDK 1.3 max SDK 1.7 check the XPath for the first and last versions
+ # rr:parentTriplesMap tedm:contract-nature ;
+ # rr:joinCondition [
+ # rr:child "descendant::cbc:ProcurementTypeCode[not(@listName='transport-service')]" ;
+ # rr:parent "code.value" ;
+ # ] ;
+ # ] ;
+ ] ;
+ # this is an example of a predicate with value from an ancestor XPath
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-23-Procedure" ;
+ rdfs:comment "Main Nature of MG-ContractTerm under ND-ProcedurePlacePerformanceAdditionalInformation" ;
+ rr:predicate epo:hasContractNatureType;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:contract-nature" ;
+ rr:parentTriplesMap tedm:contract-nature ;
+ rr:joinCondition [
+ rr:child "../cbc:ProcurementTypeCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ]
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LeadBuyer.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LeadBuyer.ttl
new file mode 100644
index 000000000..2739af15e
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LeadBuyer.ttl
@@ -0,0 +1,72 @@
+#--- MG-LeadBuyer ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-LeadBuyer_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-LeadBuyer" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rml:reference "if(exists(efbc:GroupLeadIndicator)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_LeadBuyer_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null";
+ rr:class epo:LeadBuyer
+ ];
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:playedBy ;
+ rr:objectMap
+ [
+ rdfs:label "ND-Company";
+ rr:parentTriplesMap tedm:MG-Organization-playedBy-LeadBuyer_ND-Organization ;
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-Organization-playedBy-LeadBuyer_ND-Organization a rr:TriplesMap ;
+ rdfs:label "MG-Organization-playedBy-LeadBuyer" ;
+ rdfs:comment "Represents the LeadBuyer Organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Organization" ;
+ rdfs:comment "Primary type declaration for MG-Organization-playedBy-LeadBuyer under ND-Organization" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:PartyIdentification/cbc:ID}" ;
+ rr:class org:Organization
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Lot.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Lot.ttl
new file mode 100644
index 000000000..d1dab5c0a
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Lot.ttl
@@ -0,0 +1,1155 @@
+#--- MG-Lot ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-Lot_ND-Lot a rr:TriplesMap ;
+ rdfs:label "MG-Lot" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-Lot" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Lot_{cbc:ID}" ;
+ rr:class epo:Lot
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-767-Lot,and BT-122-Lot ";
+ rr:predicate epo:usesTechnique ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-EAuctionTechnique-usesTechnique-Lot_ND-AuctionTerms ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-766-Lot ";
+ rr:predicate epo:usesTechnique ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-DynamicPurchaseSystemTechnique-usesTechnique-Lot_ND-LotTenderingProcess ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../.)";
+ ];
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-123-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-AuctionTerms ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-765-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(..)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-113-Lot, BT-109-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-FA ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-111-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-FABuyerCategories ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-52-Lot, BT-130-Lot, BT-631-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-MultipleStageProcedureTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-51-Lot and BT-50-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-MultipleStageProcedureTerm-isSubjectToLotSpecificTerm-Lot_ND-SecondStage ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-131(d)-Lot and BT-131(t)-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-SubmissionDeadline ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-13(d)-Lot and BT-13(t)-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-AccessTerm-isSubjectToLotSpecificTerm-Lot_ND-LotInfoRequestPeriod ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-1311(d)-Lot and BT-1311(t)-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-ParticipationRequestPeriod ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-134-Lot, BT-132(d)-Lot, BT-132(t)-Lot and BT-133-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-OpeningTerm-isSubjectToLotSpecificTerm-Lot_ND-PublicOpening ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-133-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Address-definesOpeningPlace-OpeningTerm-isSubjectToLotSpecificTerm-Lot_ND-PublicOpeningPlace;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-17-Lot";
+ rr:predicate epo:isSubjectToLotSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../.)";
+ ];
+ ] ;
+ ];
+
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-124-Lot";
+ rr:predicate epo:usesChannel ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-AdHocChannel-usesChannel-Lot_ND-LotTenderingProcess;
+ rr:joinCondition [
+ rr:child "cbc:ID";
+ rr:parent "../cbc:ID";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-632-Lot";
+ rr:predicate epo:usesChannel ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-AdHocChannel-usesChannel-Lot_ND-LotTenderingProcessExtension;
+ rr:joinCondition [
+ rr:child "cbc:ID";
+ rr:parent "../cbc:ID";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-137-Lot" ;
+ rdfs:comment "Purpose Lot Identifier of MG-Lot under ND-Lot" ;
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-Lot_ND-Lot ;
+ rr:joinCondition [
+ rr:child "cbc:ID";
+ rr:parent "cbc:ID";
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-Identifier-identifier-Lot_ND-Lot a rr:TriplesMap ;
+ rdfs:label "BT-137-Lot";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_LotIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID";
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-137-Lot-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier under ND-Lot" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
+
+# this is an example of a linked resource that is instantiated on an iterator that repeats, but for a parent resource that does not
+tedm:MG-Identifier-identifier-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning a rr:TriplesMap ;
+ rdfs:label "MG-Identifier";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:NoticeDocumentReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotPreviousPlanning";
+ # this is an example of an IRI component hashing on an explicit element to prevent unwanted instances (owing to an iterator that has repeating elements)
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(cbc:ID, ' ', '-' ), '/' , '-') || '_PlanningNoticeIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(cbc:ID) || '?response_type=raw') else null" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO link to LOt (In CM no link)
+ rdfs:label "BT-125(i)-Lot";
+ rdfs:comment "Previous Planning Identifier of MG-Identifier under ND-LotPreviousPlanning";
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID";
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-125(i)-Lot-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier under ND-LotPreviousPlanning" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
+
+# this is an example of an external root resource (Notice) instantiation for referencing
+tedm:MG-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning a rr:TriplesMap ;
+ rdfs:label "MG-PlanningNotice";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:NoticeDocumentReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotPreviousPlanning";
+ # we use the ID at this level to create an IRI with the pattern of a Notice
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(cbc:ID, ' ', '-' ), '/' , '-') || '_Notice' else null" ;
+ rr:class epo:PlanningNotice
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-125(i)-Lot";
+ rdfs:comment "Previous Planning Identifier of MG-PlanningNotice under ND-LotPreviousPlanning ";
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO link to LOt (In CM no link)
+ rdfs:label "BT-1251-Lot";
+ rdfs:comment "Previous Planning Part Identifier of MG-PlanningNotice under ND-LotPreviousPlanning ";
+ rr:predicate epo:announcesPlannedProcurementPart ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-PlannedProcurementPart-announcesPlannedProcurementPart-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-Notice_ND-LotPreviousPlanning a rr:TriplesMap ;
+ rdfs:label "MG-Notice";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:NoticeDocumentReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotPreviousPlanning";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Notice" ;
+ # rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_PlanningNotice_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class epo:Notice
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO link to LOt (In CM no link)
+ rdfs:label "BT-125(i)-Lot and BT-1251-Lot";
+ rdfs:comment "Previous Planning Identifier of MG-Notice under ND-LotPreviousPlanning ";
+ rr:predicate epo:refersToPrevious ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ] ;
+ ] ;
+.
+
+# this is an example of a second-degree linked resource of a linked external resource
+tedm:MG-Identifier-identifier-PlannedProcurementPart-announcesPlannedProcurementPart-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning a rr:TriplesMap ;
+ rdfs:label "MG-Identifier";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:NoticeDocumentReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotPreviousPlanning";
+ # we hash on the ID at the end and not the path as the iterator is repeating
+ rml:reference "if (exists(cbc:ReferencedDocumentInternalAddress)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(cbc:ID, ' ', '-' ), '/' , '-') || '_PlannedProcurementPartIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(cbc:ID) || '?response_type=raw') else null" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO link to LOt (In CM no link)
+ rdfs:label "BT-1251-Lot";
+ rdfs:comment "Previous Planning Part Identifier of MG-Identifier under ND-LotPreviousPlanning ";
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ReferencedDocumentInternalAddress";
+ ] ;
+ ]
+.
+
+# this is an example of a linked resource of a linked external resource
+tedm:MG-PlannedProcurementPart-announcesPlannedProcurementPart-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning a rr:TriplesMap ;
+ rdfs:label "MG-PlannedProcurementPart";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:NoticeDocumentReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotPreviousPlanning";
+ rml:reference "if (exists(cbc:ReferencedDocumentInternalAddress)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(cbc:ID, ' ', '-' ), '/' , '-') || '_PlannedProcurementPart_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(cbc:ID) || '?response_type=raw') else null" ;
+ rr:class epo:PlannedProcurementPart
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO link to LOt (In CM no link)
+ rdfs:label "BT-1251-Lot";
+ rdfs:comment "Previous Planning Part Identifier of MG-PlannedProcurementPart under ND-LotPreviousPlanning ";
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-PlannedProcurementPart-announcesPlannedProcurementPart-PlanningNotice-refersToPrevious-Notice_ND-LotPreviousPlanning ;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-EAuctionTechnique-usesTechnique-Lot_ND-AuctionTerms a rr:TriplesMap ;
+ rdfs:label "MG-EAuctionTechnique";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:AuctionTerms";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-AuctionTerms";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_AuctionTerms_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:EAuctionTechniqueUsage
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-767-Lot";
+ rdfs:comment "Electronic Auction of MG-EAuctionTechnique under ND-AuctionTerms ";
+ rr:predicate epo:hasUsage ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:usage";
+ rdfs:comment "translation of 'true' to at-voc:usage:used";
+ rml:reference "if(cbc:AuctionConstraintIndicator/text()='true') then 'http://publications.europa.eu/resource/authority/usage/used' else null";
+ rr:termType rr:IRI
+ ] ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:usage";
+ rdfs:comment "translation of 'false' to at-voc:usage:n-used";
+ rml:reference "if(cbc:AuctionConstraintIndicator/text()='false') then 'http://publications.europa.eu/resource/authority/usage/n-used' else null";
+ rr:termType rr:IRI
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-122-Lot";
+ rdfs:comment "Electronic Auction Description of MG-EAuctionTechnique under ND-AuctionTerms ";
+ rr:predicate dct:description;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-AuctionTerms a rr:TriplesMap ;
+ rdfs:label "MG-SubmissionTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:AuctionTerms";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-AuctionTerms";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_SubmissionTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:SubmissionTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-123-Lot";
+ rdfs:comment "Electronic Auction URL of MG-SubmissionTerm under ND-AuctionTerms ";
+ rr:predicate epo:hasEAuctionURL ;
+ rr:objectMap
+ [
+ rml:reference "cbc:AuctionURI";
+ rr:datatype xsd:anyURI
+ ] ;
+ ]
+.
+
+tedm:MG-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-Lot";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcess";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Lot_{cbc:ID}" ;
+ rr:class epo:Lot
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-115-Lot";
+ rdfs:comment "GPA Coverage of MG-Lot under ND-LotTenderingProcess";
+ rr:predicate epo:isCoveredByGPA ;
+ rr:objectMap
+ [
+ rml:reference "cac:TenderingProcess/cbc:GovernmentAgreementConstraintIndicator";
+ rr:datatype xsd:boolean
+ ] ;
+ ]
+.
+
+tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-FrameworkAgreementTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcess";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_FrameworkAgreementTechnicalUsage_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:FrameworkAgreementTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-765-Lot";
+ # TODO min SDK 1.3 max SDK 1.8
+ # TODO min SDK 1.9.1
+ rdfs:comment "Framework Agreement of MG-FrameworkAgreementTerm under ND-LotTenderingProcess ";
+ rr:predicate epo:hasFrameworkAgreementType ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:framework-agreement" ;
+ rr:parentTriplesMap tedm:framework-agreement ;
+ rr:joinCondition [
+ rr:child "cac:ContractingSystem/cbc:ContractingSystemTypeCode[@listName='framework-agreement']";
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-DynamicPurchaseSystemTechnique-usesTechnique-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-DynamicPurchaseSystemTechnique";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcess";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_DynamicPurchaseSystemTechnicalUsage_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:DynamicPurchaseSystemTechnique
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.8
+ # TODO min SDK 1.9.1
+ rdfs:label "BT-766-Lot";
+ rdfs:comment "Dynamic Purchasing System of MG-DynamicPurchaseSystemTechnique under ND-LotTenderingProcess";
+ rr:predicate epo:hasDPSScope ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:dps-usage" ;
+ rr:parentTriplesMap tedm:fdps-usage ;
+ rr:joinCondition [
+ rr:child "cac:ContractingSystem/cbc:ContractingSystemTypeCode[@listName='dps-usage']";
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-FA a rr:TriplesMap ;
+ rdfs:label "MG-FrameworkAgreementTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:FrameworkAgreement";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-FA";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_FrameworkAgreementTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:FrameworkAgreementTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+
+ rdfs:label "BT-113-Lot";
+ rdfs:comment "Framework Maximum Participants Number of MG-FrameworkAgreementTerm under ND-FA";
+ rr:predicate epo:hasMaximumParticipantsNumber ;
+ rr:objectMap
+ [
+ rml:reference "cbc:MaximumOperatorQuantity";
+ rr:datatype xsd:integer;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-109-Lot";
+ rdfs:comment "Framework Duration Justification of MG-FrameworkAgreementTerm under ND-FA";
+ rr:predicate epo:hasDurationExtensionJustification ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Justification";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Justification/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-FrameworkAgreementTerm-isSubjectToLotSpecificTerm-Lot_ND-FABuyerCategories a rr:TriplesMap ;
+ rdfs:label "MG-FrameworkAgreementTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:FrameworkAgreement/cac:SubsequentProcessTenderRequirement[cbc:Name/text()='buyer-categories']";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-FABuyerCategories";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_FrameworkAgreementTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:FrameworkAgreementTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-111-Lot";
+ rdfs:comment "Framework Buyer Categories of MG-FrameworkAgreementTerm under ND-FABuyerCategories";
+ rr:predicate epo:hasBuyerCategoryDescription ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-MultipleStageProcedureTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-MultipleStageProcedureTerm";
+ rdfs:comment "different from old mapping";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:EconomicOperatorShortList";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcess";
+ rml:reference "if (exists(cbc:CandidateReductionConstraintIndicator) or exists(descendant::cbc:LimitationDescription) or exists(descendant::cbc:MaximumQuantity) or exists(descendant::cbc:MinimumQuantity)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_MultipleStageProcedureTerm_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw') else null" ;
+ rr:class epo:MultipleStageProcedureTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-52-Lot";
+ rdfs:comment "Successive Reduction Indicator (Lot) of MG-MultipleStageProcedureTerm under ND-LotTenderingProcess";
+ rr:predicate epo:hasSuccessiveReduction ;
+ rr:objectMap
+ [
+ rml:reference "../cbc:CandidateReductionConstraintIndicator";
+ rr:datatype xsd:boolean
+ ] ;
+ ];
+rr:predicateObjectMap
+ [
+ rdfs:label "BT-130-Lot";
+ rdfs:comment "Dispatch Invitation Tender of MG-MultipleStageProcedureTerm under ND-LotTenderingProcess";
+ rr:predicate epo:hasEstimatedInvitationToTenderDate ;
+ rr:objectMap
+ [
+ rml:reference "../cac:InvitationSubmissionPeriod/cbc:StartDate";
+ rr:datatype xsd:date;
+ ] ;
+ ];
+rr:predicateObjectMap
+ [
+ rdfs:label "BT-631-Lot";
+ rdfs:comment "Dispatch Invitation Interest of MG-MultipleStageProcedureTerm under ND-LotTenderingProcess";
+ rr:predicate epo:hasEstimatedInvitationToExpressInterestDate ;
+ rr:objectMap
+ [
+ rml:reference "../cac:ParticipationInvitationPeriod/cbc:StartDate";
+ rr:datatype xsd:date;
+ ] ;
+ ]
+.
+
+tedm:MG-MultipleStageProcedureTerm-isSubjectToLotSpecificTerm-Lot_ND-SecondStage a rr:TriplesMap ;
+ rdfs:label "MG-MultipleStageProcedureTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:EconomicOperatorShortList";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-SecondStage";
+ rml:reference "if (exists(cbc:CandidateReductionConstraintIndicator) or exists(descendant::cbc:LimitationDescription) or exists(descendant::cbc:MaximumQuantity) or exists(descendant::cbc:MinimumQuantity)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_MultipleStageProcedureTerm_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw') else null" ;
+ rr:class epo:MultipleStageProcedureTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-51-Lot";
+ rdfs:comment "Maximum Candidates Number of MG-MultipleStageProcedureTerm under ND-SecondStage";
+ rr:predicate epo:hasMaximumNumberOfCandidates ;
+ rr:objectMap
+ [
+ rml:reference "cbc:MaximumQuantity";
+ rr:datatype xsd:integer
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-50-Lot";
+ rdfs:label "Minimum Candidates of MG-MultipleStageProcedureTerm under ND-SecondStage";
+ rr:predicate epo:hasMinimumNumberOfCandidates ;
+ rr:objectMap
+ [
+ rml:reference "cbc:MinimumQuantity";
+ ] ;
+ ]
+.
+
+tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-SubmissionDeadline a rr:TriplesMap ;
+ rdfs:label "MG-SubmissionTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:TenderSubmissionDeadlinePeriod";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-SubmissionDeadline";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_SubmissionTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:SubmissionTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-131(d)-Lot and BT-131(t)-Lot";
+ rdfs:comment "Deadline Receipt Tenders of MG-SubmissionTerm under ND-SubmissionDeadline (incl. Time)";
+ rr:predicate epo:hasReceiptTenderDeadline ;
+ rr:objectMap
+ [
+ rml:reference "if(exists(cbc:EndDate) and exists(cbc:EndTime) and contains(cbc:EndDate, '+')) then substring-before(cbc:EndDate, '+') || 'T' || cbc:EndTime else if(exists(cbc:EndDate) and exists(cbc:EndTime)) then cbc:EndDate || 'T' || cbc:EndTime else if(exists(cbc:EndDate)) then cbc:EndDate else null";
+ rr:datatype xsd:dateTime;
+ ] ;
+ ]
+.
+
+tedm:MG-AccessTerm-isSubjectToLotSpecificTerm-Lot_ND-LotInfoRequestPeriod a rr:TriplesMap ;
+ rdfs:label "MG-AccessTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:AdditionalInformationRequestPeriod";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotInfoRequestPeriod";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_AccessTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:AccessTerm
+ ];
+rr:predicateObjectMap
+ [
+ rdfs:label "BT-13(d)-Lot and BT-13(t)-Lot";
+ rdfs:comment "Additional Information Deadline of MG-AccessTerm under ND-LotInfoRequestPeriod (incl. Time)";
+ rr:predicate epo:hasAdditionalInformationDeadline ;
+ rr:objectMap
+ [
+ rml:reference "if(exists(cbc:EndDate) and exists(cbc:EndTime) and contains(cbc:EndDate, '+')) then substring-before(cbc:EndDate, '+') || 'T' || cbc:EndTime else if(exists(cbc:EndDate) and exists(cbc:EndTime)) then cbc:EndDate || 'T' || cbc:EndTime else if(exists(cbc:EndDate)) then cbc:EndDate else null";
+ rr:datatype xsd:dateTime;
+ ] ;
+ ]
+.
+
+tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-ParticipationRequestPeriod a rr:TriplesMap ;
+ rdfs:label "MG-SubmissionTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:ParticipationRequestReceptionPeriod";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-ParticipationRequestPeriod";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_SubmissionTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:SubmissionTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-1311(d)-Lot and BT-1311(t)-Lot";
+ rdfs:comment "Deadline Receipt Requests of under ND-ParticipationRequestPeriod (incl. Time)";
+ rr:predicate epo:hasReceiptParticipationRequestDeadline ;
+ rr:objectMap
+ [
+ rml:reference "if(exists(cbc:EndDate) and exists(cbc:EndTime) and contains(cbc:EndDate, '+')) then substring-before(cbc:EndDate, '+') || 'T' || cbc:EndTime else if(exists(cbc:EndDate) and exists(cbc:EndTime)) then cbc:EndDate || 'T' || cbc:EndTime else if(exists(cbc:EndDate)) then cbc:EndDate else null";
+ rr:datatype xsd:dateTime;
+ ] ;
+ ]
+.
+
+tedm:MG-OpeningTerm-isSubjectToLotSpecificTerm-Lot_ND-PublicOpening a rr:TriplesMap ;
+ rdfs:label "MG-OpeningTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:OpenTenderEvent";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-PublicOpening";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_OpeningTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:OpeningTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-134-Lot";
+ rdfs:comment "Public Opening Description of MG-OpeningTerm under ND-PublicOpening";
+ rr:predicate epo:hasOpeningDescription ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-132(d)-Lot and BT-132(t)-Lot";
+ rdfs:comment "Public Opening Date of MG-OpeningTerm under ND-PublicOpening (incl. Time)";
+ rr:predicate epo:hasOpeningDateTime ;
+ rr:objectMap
+ [
+ rml:reference "if(exists(cbc:OccurrenceDate) and exists(cbc:OccurrenceTime) and contains(cbc:OccurrenceDate, '+')) then substring-before(cbc:OccurrenceDate, '+') || 'T' || cbc:OccurrenceTime else if(exists(cbc:OccurrenceDate) and exists(cbc:OccurrenceTime)) then cbc:OccurrenceDate || 'T' || cbc:OccurrenceTime else if(exists(cbc:OccurrenceDate)) then cbc:OccurrenceDate else null";
+ rr:datatype xsd:dateTime;
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.3
+ # TODO min SDK 1.4
+ rdfs:label "BT-133-Lot";
+ rdfs:comment "Public Opening Place of MG-OpeningTerm under ND-PublicOpening";
+ rr:predicate epo:definesOpeningPlace ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Address-definesOpeningPlace-OpeningTerm-isSubjectToLotSpecificTerm-Lot_ND-PublicOpeningPlace ;
+ rr:joinCondition[
+ rr:child "path(..)";
+ rr:parent "path(../..)"
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-Address-definesOpeningPlace-OpeningTerm-isSubjectToLotSpecificTerm-Lot_ND-PublicOpeningPlace a rr:TriplesMap ;
+ rdfs:label "MG-Address";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:OpenTenderEvent/cac:OccurenceLocation";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-PublicOpeningPlace";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_OpenTenderEventPlace_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class locn:Address
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-133-Lot";
+ rdfs:comment "Public Opening Place of MG-Address under ND-PublicOpeningPlace";
+ rr:predicate locn:fullAddress ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-SubmissionTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:comment "ND-LotTenderingProcess";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_SubmissionTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:SubmissionTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-17-Lot";
+ rdfs:comment "SubmissionElectronic of MG-SubmissionTerm under ND-LotTenderingProcess";
+ rr:predicate epo:hasESubmissionPermission ;
+ rr:objectMap
+ [
+ rdfs:label "permission:" ;
+ rr:parentTriplesMap tedm:permission;
+ rr:joinCondition [
+ rr:child "if(exists(cbc:SubmissionMethodCode[@listName='esubmission'])) then cbc:SubmissionMethodCode else null" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-SubmissionTerm-isSubjectToLotSpecificTerm-Lot_ND-NoESubmission a rr:TriplesMap ;
+ rdfs:label "MG-SubmissionTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/cac:ProcessJustification";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-NoESubmission";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_SubmissionTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:SubmissionTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.7
+ # TODO min SDK 1.8
+ rdfs:label "BT-19-Lot";
+ rdfs:comment "Submission Nonelectronic Justification of MG-SubmissionTerm under ND-NoESubmission";
+ rr:predicate epo:hasNonElectronicSubmissionJustification ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:communication-justification" ;
+ rr:parentTriplesMap tedm:communication-justification ;
+ rr:joinCondition [
+ rr:child "cbc:ProcessReasonCode[@listName='no-esubmission-justification']";
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.7
+ # TODO min SDK 1.8
+ rdfs:label "BT-745-Lot";
+ rdfs:comment "Submission Nonelectronic Description of MG-SubmissionTerm under ND-NoESubmission";
+ rr:predicate epo:hasNonElectronicSubmissionDescription ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-AdHocChannel-usesChannel-Lot_ND-LotTenderingProcessExtension a rr:TriplesMap ;
+ rdfs:label "MG-AdHocChannel";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcessExtension";
+ rml:reference "if (exists(descendant::efbc:AccessToolName) or exists(cbc:AccessToolsURI)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_Channel_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class epo:AdHocChannel
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-632-Lot";
+ rdfs:comment "Tool Name of MG-AdHocChannel underND-LotTenderingProcessExtension";
+ rr:predicate dct:description ;
+ rr:objectMap
+ [
+ rml:reference "descendant::efbc:AccessToolName";
+ ] ;
+ ]
+.
+
+tedm:MG-AdHocChannel-usesChannel-Lot_ND-LotTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-AdHocChannel";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcess";
+ rml:reference "if (exists(descendant::efbc:AccessToolName) or exists(cbc:AccessToolsURI)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_Channel_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class epo:AdHocChannel
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-124-Lot";
+ rdfs:comment "Tool Atypical URL of MG-AdHocChannel underND-LotTenderingProcess";
+ rr:predicate epo:hasAddressURL ;
+ rr:objectMap
+ [
+ rml:reference "cbc:AccessToolsURI";
+ rr:datatype xsd:anyURI
+ ] ;
+ ]
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LotGroup.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LotGroup.ttl
new file mode 100644
index 000000000..4d16584a1
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/LotGroup.ttl
@@ -0,0 +1,84 @@
+#--- MG-LotGroup ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-LotGroup_ND-LotsGroup a rr:TriplesMap ;
+ rdfs:label "MG-LotGroup" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='LotsGroup']" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotsGroup" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_LotGroup_{cbc:ID}" ;
+ rr:class epo:LotGroup
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-137-LotsGroup" ;
+ rdfs:comment "Purpose Lot Identifier of MG-LotGroup under ND-LotsGroup" ;
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-LotGroup_ND-LotsGroup ;
+ ] ;
+ ]
+.
+
+tedm:MG-Identifier-identifier-LotGroup_ND-LotsGroup a rr:TriplesMap ;
+ rdfs:comment "The identifier of a lot group" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='LotsGroup']" ;
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_LotsGroupIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID";
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-137-LotsGroup-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier under ND-LotsGroup" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Organization.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Organization.ttl
new file mode 100644
index 000000000..77891bc10
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Organization.ttl
@@ -0,0 +1,337 @@
+#--- MG-Organization ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-Organization_ND-Company a rr:TriplesMap ;
+ rdfs:label "MG-Organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ # TODO why do we not iterate one level up on Organization?
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Company" ;
+ rdfs:comment "Primary type declaration for MG-Organization under ND-Company" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:PartyIdentification/cbc:ID}" ;
+ rr:class org:Organization
+ ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:hasPrimaryContactPoint ;
+ rr:objectMap
+ [
+ rdfs:label "ND-CompanyContact" ;
+ rr:parentTriplesMap tedm:MG-ContactPoint-hasPrimaryContactPoint-Organization_ND-CompanyContact ;
+ # TODO how does this work?
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ]
+ ] ;
+ # rr:predicateObjectMap
+ # [
+ # #The channel of ND-Company it is created for the BT-509-Organization-Company it does not correspond to a node"
+ # rr:predicate epo:hasDeliveryGateway ;
+ # rr:objectMap
+ # [
+ # rr:parentTriplesMap tedm:ND-CompanyChannel ;
+ # rr:joinCondition [
+ # rr:child "path(.)";
+ # rr:parent "path(.)";
+ # ];
+ # ]
+ # ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "Aggregate Address" ;
+ rdfs:comment "Aggregate values of MG-Address under ND-CompanyAddress" ;
+ rr:predicate cv:registeredAddress ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Address-registeredAddress-Organization_ND-CompanyAddress ;
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(../.)" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-500-Organization-Company" ;
+ rdfs:comment "Organisation Name of MG-Organization under ND-Company" ;
+ rr:predicate epo:hasLegalName ;
+ rr:objectMap
+ [
+ rml:reference "cac:PartyName/cbc:Name" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cac:PartyName/cbc:Name/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-200-Organization-Company" ;
+ rdfs:comment "Organisation Technical Identifier of MG-Organization under ND-Company" ;
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-Organization_ND-Company ;
+ # TODO how does this work?
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(.)" ;
+ ] ;
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.7
+ rdfs:label "BT-501-Organization-Company" ;
+ rdfs:comment "Organisation Identifier of MG-Organization under ND-Company" ;
+ rr:predicate epo:hasLegalIdentifier ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.8" ;
+ rr:parentTriplesMap tedm:MG-Identifier-hasLegalIdentifier-Organization_ND-Company ;
+ rr:joinCondition [
+ rr:child "path(.)" ;
+ rr:parent "path(.)" ;
+ ] ;
+ ]
+ ] ;
+.
+
+tedm:MG-Identifier-identifier-Organization_ND-Company a rr:TriplesMap ;
+ rdfs:label "MG-Identifier" ;
+ rdfs:comment "The identifier of an organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-Company" ;
+ rml:reference "if (exists(cac:PartyIdentification/cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_Identifier_' || cac:PartyIdentification/cbc:ID else null" ;
+ rr:class epo:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "identifier" ;
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cac:PartyIdentification/cbc:ID" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-200-Organization-Company-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier for MG-Organization under ND-Company" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cac:PartyIdentification/cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
+
+tedm:MG-Identifier-hasLegalIdentifier-Organization_ND-Company a rr:TriplesMap ;
+ rdfs:label "MG-Identifier" ;
+ rdfs:comment "The legal identifier of an organization" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company" ;
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-Company" ;
+ rml:reference "if (exists(cac:PartyLegalEntity/cbc:CompanyID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_OrganisationIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(cac:PartyLegalEntity/cbc:CompanyID)) || '?response_type=raw') else null" ;
+ rr:class epo:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "legal identifier" ;
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cac:PartyLegalEntity/cbc:CompanyID" ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-Address-registeredAddress-Organization_ND-CompanyAddress a rr:TriplesMap ;
+ rdfs:label "MG-Address" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company/cac:PostalAddress" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-CompanyAddress" ;
+ rdfs:comment "Primary type declaration for Address-registeredAddress-Organization under ND-CompanyAddress" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_CompanyAddress_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class locn:Address
+
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-16,BT-510(a|b|c),BT-512,BT-513,514-Organization-Company" ;
+ rdfs:comment "Aggregate of Department, Street, Streetline 1, Streetline 2, Organisation City, Organisation Post Code, Organisation Country Code" ;
+ rr:predicate locn:fullAddress ;
+ rr:objectMap
+ [
+ rml:reference "replace(replace(cbc:Department || ', ' || cbc:StreetName || ', ' || cbc:AdditionalStreetName || ', ' || cbc:Line || ', ' || cbc:CityName || ', ' || cbc:PostalZone || ', ' || cac:Country/cbc:IdentificationCode, '(, )+', ', '), '^, |, $', '')" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-513-Organization-Company" ;
+ rr:predicate locn:postName ;
+ rr:objectMap
+ [
+ rml:reference "cbc:CityName" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-512-Organization-Company" ;
+ rr:predicate locn:postCode ;
+ rr:objectMap
+ [
+ rml:reference "cbc:PostalZone" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-507-Organization-Company" ;
+ rr:predicate epo:hasNutsCode ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:nuts ;
+ rr:joinCondition [
+ rr:child "cbc:CountrySubentityCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-514-Organization-Company";
+ rr:predicate epo:hasCountryCode ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:country" ;
+ rr:parentTriplesMap tedm:country ;
+ rr:joinCondition [
+ rr:child "cac:Country/cbc:IdentificationCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-ContactPoint-hasPrimaryContactPoint-Organization_ND-CompanyContact a rr:TriplesMap ;
+ rdfs:label "MG-ContactPoint-hasPrimaryContactPoint-Organization";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Organizations/efac:Organization/efac:Company/cac:Contact" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-CompanyContact" ;
+ rdfs:comment "Primary type declaration for MG-ContactPoint-hasPrimaryContactPoint-Organization under ND-CompanyContact" ;
+ rml:reference "if(exists(cbc:Name) or exists(cbc:ElectronicMail) or exists(cbc:Telephone) or exists(cbc:Telefax)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_CompanyContactPoint_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class cpov:ContactPoint
+
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-502-Organization-Company" ;
+ rr:predicate epo:hasContactName ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Name" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-506-Organization-Company";
+ rr:predicate cpov:email ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ElectronicMail" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-503-Organization-Company" ;
+ rr:predicate cpov:telephone ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Telephone" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-739-Organization-Company" ;
+ rr:predicate epo:hasFax ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Telefax" ;
+ ] ;
+ ] ;
+ # this is an example of a predicate with an XPath at the parent
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-505-Organization-Company" ;
+ rr:predicate epo:hasInternetAddress ;
+ rr:objectMap
+ [
+ rml:reference "../cbc:WebsiteURI" ;
+ rr:datatype xsd:anyURI ;
+ ] ;
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Procedure.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Procedure.ttl
new file mode 100644
index 000000000..7f12e083a
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/Procedure.ttl
@@ -0,0 +1,1292 @@
+#--- MG-Procedure ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-Procedure_ND-LocalLegalBasisWithID a rr:TriplesMap ;
+ rdfs:label "MG-Procedure";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ rdfs:label "ND-LocalLegalBasisWithID";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ # currently unmappable according to feedback and instead combined in the next one BT-01(d)-Procedure
+ # rr:predicateObjectMap
+ # [
+ # # TODO min SDK 1.3 max SDK 1.3 (when mappable)
+ # # TODO min SDK 1.4 max SDK 1.7 (when mappable)
+ # rdfs:label "BT-01(c)-Procedure";
+ # rdfs:comment "Procedure Legal Basis (ID) of MG-Procedure under ND-LocalLegalBasisWithID ";
+ # rr:predicate epo:hasLegalBasis ;
+ # rr:objectMap
+ # [
+ # tedm:minSDKVersion "1.8" ;
+ # rml:reference "cbc:ID";
+ # ] ;
+ # ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-01(d)-Procedure";
+ rdfs:comment "Procedure Legal Basis (Description) of MG-Procedure under ND-LocalLegalBasisWithID ";
+ rr:predicate epo:hasLegalBasisDescription ;
+ rr:objectMap
+ [
+ rml:reference "normalize-space(cbc:ID || ' ' || cbc:ID/@schemeName || ' ' || cbc:DocumentDescription)";
+ # rml:reference "cbc:DocumentDescription";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:DocumentDescription/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+tedm:MG-Procedure_ND-LocalLegalBasisNoID a rr:TriplesMap ;
+ rdfs:label "MG-Procedure";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:ProcurementLegislationDocumentReference[cbc:ID/text()='LocalLegalBasis']";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ rdfs:label "ND-LocalLegalBasisNoID";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ # currently unmappable according to feedback but makes no sense with the next one mapped
+ # rr:predicateObjectMap
+ # [
+ # # TODO min SDK 1.4 max SDK 1.7 (when mappable)
+ # rdfs:label "BT-01(e)-Procedure";
+ # rdfs:comment "Procedure Legal Basis (NoID) of MG-Procedure under ND-LocalLegalBasisNoID";
+ # rr:predicate epo:hasLegalBasis ;
+ # rr:objectMap
+ # [
+ # tedm:minSDKVersion "1.8" ;
+ # rml:reference "cbc:ID";
+ # ] ;
+ # ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-01(f)-Procedure";
+ rdfs:comment "Procedure Legal Basis (NoID Description) of MG-Procedure under ND-LocalLegalBasisNoID";
+ rr:predicate epo:hasLegalBasisDescription ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.4" ;
+ rml:reference "cbc:DocumentDescription";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:DocumentDescription/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
+
+# TODO MG missing in CM
+tedm:MG-Procedure_ND-CrossBorderLaw a rr:TriplesMap ;
+ rdfs:label "MG-Procedure";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-CrossBorderLaw";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "ProcedureTerm";
+ rdfs:comment "Composition relationship between Procedure and ProcedureTerm";
+ rr:predicate epo:isSubjectToProcedureSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-CrossBorderLaw;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ]
+ ] ;
+.
+
+# TODO min SDK 1.3 max SDK 1.3 required only for BT-01(c)-Procedure
+# tedm:MG-Procedure_ND-ProcedureTerms a rr:TriplesMap ;
+# rdfs:label "MG-Procedure";
+# rml:logicalSource
+# [
+# rml:source "data/source.xml" ;
+# rml:iterator "/*/cac:TenderingTerms";
+# rml:referenceFormulation ql:XPath
+# ] ;
+# rr:subjectMap
+# [
+# rdfs:label "ND-ProcedureTerms";
+# rdfs:comment "Primary type declaration of MG-Procedure under ND-ProcedureTerms";
+# rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+# rr:class epo:Procedure
+# ] ;
+# .
+
+# TODO MG missing in CM
+tedm:MG-Procedure_ND-LotDistribution a rr:TriplesMap ;
+ rdfs:label "MG-Procedure";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:LotDistribution";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotDistribution";
+ rdfs:comment "Primary type declaration of MG-Procedure under ND-LotDistribution";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "ProcedureTerm";
+ rdfs:comment "Composition relationship between Procedure and ProcedureTerm";
+ rr:predicate epo:isSubjectToProcedureSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-LotDistribution;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ]
+ ] ;
+.
+
+tedm:MG-LotGroup-definesLotGroup-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-GroupComposition a rr:TriplesMap ;
+ rdfs:label "MG-LotGroup";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:LotDistribution/cac:LotsGroup/cac:ProcurementProjectLotReference";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-GroupComposition";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_LotGroup_{../cbc:LotsGroupID}" ;
+ rr:class epo:LotGroup
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.6 max SDK 1.7
+ # TODO min SDK 1.3 max SDK 1.5.12
+ rdfs:label "BT-1375-Procedure";
+ rdfs:comment "Group Lot Identifier of MG-LotGroup under ND-GroupComposition";
+ rr:predicate epo:setsGroupingContextForLot;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.8" ;
+ # while there is the Mapping Group tedm:MG-Lot-setsGroupingContextForLot-LotGroup-definesLotGroup-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-GroupCompositionLotReference
+ # there is no point in creating a new TriplesMap as there are no new properties to instantiate and so we link to what's already defined
+ rr:parentTriplesMap tedm:MG-Lot_ND-Lot ;
+ rr:joinCondition [
+ rr:child "cbc:ID";
+ rr:parent "cbc:ID";
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-LotDistribution a rr:TriplesMap ;
+ rdfs:label "MG-ProcedureTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:LotDistribution";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotDistribution";
+ rdfs:comment "Primary type declaration of MG-ProcedureTerm under ND-LotDistribution";
+ # TODO check if reference (the conditions) is needed
+ # rml:reference "if (exists(cbc:MaximumLotsSubmittedNumeric) or exists(cbc:MaximumLotsAwardedNumeric)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcedureTerm_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcedureTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ProcedureTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.5.12
+ rdfs:label "BT-31-Procedure";
+ rdfs:comment "Lots Max Allowed of MG-ProcedureTerm under ND-LotDistribution";
+ rr:predicate epo:hasMaximumLotSubmissionAllowed ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.6" ;
+ rml:reference "cbc:MaximumLotsSubmittedNumeric";
+ rr:datatype xsd:integer
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.5.12
+ rdfs:label "BT-33-Procedure";
+ rdfs:comment "Lots Max Awarded of MG-ProcedureTerm under ND-LotDistribution";
+ rr:predicate epo:hasMaximumNumberOfLotsToBeAwarded ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.6" ;
+ rml:reference "cbc:MaximumLotsAwardedNumeric";
+ rr:datatype xsd:integer
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.5.12
+ rdfs:label "BT-330-Procedure";
+ rdfs:comment "Group Identifier of MG-ProcedureTerm under ND-LotDistribution";
+ rr:predicate epo:definesLotGroup;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.6" ;
+ rr:parentTriplesMap tedm:MG-LotGroup-definesLotGroup-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-GroupComposition ;
+ # this is an example of a joinCondition with a child element that is a descendant
+ rr:joinCondition [
+ rr:child "cac:LotsGroup/cbc:LotsGroupID";
+ rr:parent "../cbc:LotsGroupID";
+ ];
+ ] ;
+ ]
+.
+
+tedm:MG-Procedure_ND-ProcedureProcurementScope a rr:TriplesMap ;
+ rdfs:label "MG-Procedure";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ # TODO what does that mean?
+ rdfs:label "ND-ProcedureProcurementScope" ;
+ rdfs:comment "Primary type declaration for MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-22-Procedure" ;
+ rdfs:comment "Internal Identifier of MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:predicate epo:hasInternalIdentifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-hasInternalIdentifier-Procedure_ND-ProcedureProcurementScope ;
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-21-Procedure" ;
+ rdfs:comment "Title of MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:predicate dct:title ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Name" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Name/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-24-Procedure" ;
+ rdfs:comment "Description of MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:predicate dct:description ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-300-Procedure" ;
+ rdfs:comment "Additional Information of MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:predicate epo:hasAdditionalInformation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Note";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Note/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-26(a)-Procedure and BT-263-Procedure";
+# rr:predicate epo:hasAdditionalClassification ;
+# rr:objectMap
+# [
+# rml:reference "if(exists(descendant::cbc:ItemClassificationCode) and exists(descendant::cbc:ItemClassificationCode/@listName)) then concat(cbc:ItemClassificationCode, ':', cbc:ItemClassificationCode/@listName) else null";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-26(m)-Procedure and BT-262-Procedure";
+# rr:predicate epo:hasMainClassification ;
+# rr:objectMap
+# [
+# rml:reference "if(exists(descendant::cbc:ItemClassificationCode) and exists(descendant::cbc:ItemClassificationCode/@listName)) then concat(cbc:ItemClassificationCode, ':', cbc:ItemClassificationCode/@listName) else null";
+# ] ;
+# ] ;
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:foreseesContractSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-ContractTerm_ND-ProcedurePlacePerformanceAdditionalInformation ;
+ # TODO check if this is needed
+ # rr:joinCondition [
+ # rr:child "path(.)";
+ # rr:parent "path(../.)";
+ # ];
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-27-Procedure";
+ rr:predicate epo:hasEstimatedValue ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-MonetaryValue-hasEstimatedValue-Procedure_ND-ProcedureValueEstimate;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../.)";
+ ];
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-271-Procedure";
+ rdfs:comment "Estimated Value of MG-MonetaryValue under ND-ProcedureValueEstimate";
+ rr:predicate epo:hasLaunchFrameworkAgreementMaximumValue ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-MonetaryValue-hasLaunchFrameworkAgreementMaximumValue-Procedure_ND-ProcedureValueEstimateExtension;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../../../../..)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-263-Procedure";
+ rdfs:comment "Additional Classification Code of MG-Purpose under ND-ProcedureMainClassificationCode";
+ rr:predicate epo:hasPurpose ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Purpose-hasPurpose-Procedure_ND-ProcedureAdditionalCommodityClassification;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../.)";
+ ];
+ ] ;
+ ];
+rr:predicateObjectMap
+ [
+ rdfs:label "BT-262-Procedure";
+ rdfs:comment "Main Classification Code of MG-Purpose under ND-ProcedureMainClassificationCode";
+ rr:predicate epo:hasPurpose ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Purpose-hasPurpose-Procedure_ND-ProcedureMainClassificationCode;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../.)";
+ ];
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5101(a)-Procedure, BT-5101(b)-Procedure, BT-5101(c)-Procedure, BT-5131-Procedure and BT-5121-Procedure";
+ rr:predicate epo:foreseesContractSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../..)";
+ ];
+ ]
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-728-Procedure";
+ rr:predicate epo:foreseesContractSpecificTerm ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformanceAdditionalInformation;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(../.)";
+ ];
+ ]
+ ]
+.
+
+tedm:MG-Identifier-hasInternalIdentifier-Procedure_ND-ProcedureProcurementScope a rr:TriplesMap ;
+ rdfs:comment "The identifier of a procedure" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ # TODO decide on labeling scheme for composition links like this
+ rdfs:label "MG-Identifier" ;
+ rdfs:comment "Type declaration for MG-Identifier under ND-ProcedureProcurementScope" ;
+ rml:reference "if (exists(cbc:ID)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcedureIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID";
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-22-Procedure-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier for MG-Procedure under ND-ProcedureProcurementScope" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ID/@schemeName";
+ ] ;
+ ] ;
+.
+
+# this is an example of a TMap which has the same subject IRI as another (tedm:MG-Procedure_ND-ProcedureProcurementScope)
+tedm:MG-Procedure_ND-ProcedureTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-Procedure" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingProcess" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ # this is an example of a template/IRI that hashes on the parent path
+ rdfs:label "ND-ProcedureTenderingProcess" ;
+ rdfs:comment "Type declaration for MG-Procedure under ND-ProcedureTenderingProcess" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-88-Procedure" ;
+ rdfs:comment "Procedure Features of MG-Procedure under ND-ProcedureTenderingProcess" ;
+ rr:predicate epo:hasMainFeature ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-105-Procedure" ;
+ rdfs:comment "Procedure Type of MG-Procedure under ND-ProcedureTenderingProcess" ;
+ rr:predicate epo:hasProcedureType ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:procurement-procedure-type" ;
+ rr:parentTriplesMap tedm:procurement-procedure-type ;
+ rr:joinCondition [
+ rr:child "cbc:ProcedureCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ # TODO bring this into another TMap to align w/ MG+Node?
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-01-notice" ;
+ rdfs:comment "Procedure Legal Basis of MG-Procedure under ND-Root" ;
+ rr:predicate epo:hasLegalBasis ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:legal-basis" ;
+ rr:parentTriplesMap tedm:legal-basis ;
+ rr:joinCondition [
+ rr:child "/*/cbc:RegulatoryDomain" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-01-notice and BT-01(c)-notice and BT-01(d)-notice";
+ # rr:predicate epo:hasLegalBasis ;
+ # rr:objectMap
+ # [
+ # rml:reference "if(exists(/*/cbc:RegulatoryDomain) or exists(cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID[not(text()=('CrossBorderLaw','LocalLegalBasis'))]) or exists(cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:DocumentDescription)) then concat(/*/cbc:RegulatoryDomain, ' ',concat(cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:ID[not(text()=('CrossBorderLaw','LocalLegalBasis'))], ' ', cac:ProcurementLegislationDocumentReference[not(cbc:ID/text()=('CrossBorderLaw','LocalLegalBasis'))]/cbc:DocumentDescription)) else null";
+ # rr:datatype xsd:string
+ # ] ;
+ # ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-106-Procedure";
+ # rr:predicate epo:isAccelerated ;
+ # rr:objectMap
+ # [
+ # rml:reference "descendant::cbc:ProcessReasonCode[@listName='accelerated-procedure']";
+ # rr:datatype xsd:boolean
+ # ] ;
+ # ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-1351-Procedure";
+ # rr:predicate epo:hasAcceleratedProcedureJustification ;
+ # rr:objectMap
+ # [
+ # rml:reference "descendant::cbc:ProcessReason";
+ # rr:datatype xsd:string
+ # ] ;
+ # ] ;
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "ND-ExclusionGrounds";
+ # rr:predicate epo:specifiesExclusionGround ;
+ # rr:objectMap
+ # [
+ # rr:parentTriplesMap tedm:ND-ExclusionGrounds;#/*/cac:TenderingTerms/cac:TendererQualificationRequest/cac:SpecificTendererRequirement
+ # rr:joinCondition [
+ # rr:child "path(..)";
+ # rr:parent "path(../../..)";
+ # ];
+ # ]
+ # ];
+ # rr:predicateObjectMap
+ # [
+ # rdfs:label "BT-09(b)-Procedure";
+ # rr:predicate epo:refersToProcedure ;
+ # rr:objectMap
+ # [
+ # rr:parentTriplesMap tedm:ND-ProcedureTenderingProcess;
+ # rr:joinCondition [
+ # rr:child "path(/*/cac:TenderingProcess)";
+ # rr:parent "path(.)";
+ # ];
+ # ]
+ # ]
+.
+
+# this is an example of a TMap which has the same subject IRI as two others (tedm:MG-Procedure_ND-ProcedureProcurementScope and tedm:MG-Procedure_ND-TenderingProcess)
+tedm:MG-Procedure_ND-AcceleratedProcedure a rr:TriplesMap ;
+ rdfs:label "MG-Procedure" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingProcess/cac:ProcessJustification[cbc:ProcessReasonCode/@listName='accelerated-procedure']" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ # this is an example of a subject IRI with a hash on the grandparent
+ rdfs:label "ND-AcceleratedProcedure" ;
+ rdfs:comment "Type declaration for MG-Procedure under ND-AcceleratedProcedure" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Procedure_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(../..)) || '?response_type=raw')}" ;
+ rr:class epo:Procedure
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.4
+ # TODO min SDK 1.5.12 max SDK 1.7
+ rdfs:label "BT-106-Procedure" ;
+ rdfs:comment "Procedure Accelerated of MG-Procedure under ND-AcceleratedProcedure" ;
+ rr:predicate epo:isAccelerated ;
+ rr:objectMap
+ # [
+ # tedm:minSDKVersion "1.5.12" ;
+ # tedm:maxSDKVersion "1.7" ;
+ # rml:reference "cbc:ProcessReasonCode[@listName='accelerated-procedure']" ;
+ # rr:datatype xsd:boolean
+ # ]
+ # ,
+ [
+ # this is an example of a version-specific assertion that has no difference
+ # with its other counterparts due to simple changes in the XPath only
+ # i.e. one could've chosen to ignore this, but we choose to be consistent
+ tedm:minSDKVersion "1.8" ;
+ rml:reference "cbc:ProcessReasonCode" ;
+ rr:datatype xsd:boolean
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-1351-Procedure" ;
+ rdfs:comment "Procedure Accelerated Justification of MG-Procedure under ND-AcceleratedProcedure" ;
+ rr:predicate epo:hasAcceleratedProcedureJustification ;
+ rr:objectMap
+ [
+ rml:reference "cbc:ProcessReason" ;
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:ProcessReason/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-MonetaryValue-hasEstimatedValue-Procedure_ND-ProcedureValueEstimate a rr:TriplesMap ;
+ rdfs:label "MG-MonetaryValue";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:RequestedTenderTotal";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_MonetaryValueLot_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:MonetaryValue;
+ ] ;
+
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-27-Procedure";
+ rdfs:comment "Estimated Value of MG-MonetaryValue under ND-ProcedureValueEstimate";
+ rr:predicate epo:hasAmountValue ;
+ rr:objectMap
+ [
+ rml:reference "cbc:EstimatedOverallContractAmount";
+ rr:datatype xsd:decimal;
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:hasCurrency ;
+ rr:objectMap
+ [
+ rml:reference "cbc:EstimatedOverallContractAmount/@currencyID";
+ ] ;
+ ]
+.
+
+tedm:MG-MonetaryValue-hasLaunchFrameworkAgreementMaximumValue-Procedure_ND-ProcedureValueEstimateExtension a rr:TriplesMap ;
+ rdfs:label "MG-MonetaryValue";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:RequestedTenderTotal/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedureValueEstimateExtension";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcedureValueEstimateExtension_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:MonetaryValue
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.5.12
+ rdfs:label "BT-271-Procedure";
+ rdfs:comment "Framework Maximum Value of MG-MonetaryValue under ND-ProcedureValueEstimateExtension";
+ rr:predicate epo:hasAmountValue ;
+ rr:objectMap
+ [
+ rml:reference "efbc:FrameworkMaximumAmount";
+ rr:datatype xsd:decimal;
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:hasCurrency ;
+ rr:objectMap
+ [
+ rml:reference "efbc:FrameworkMaximumAmount/@currencyID";
+ ] ;
+ ]
+ .
+
+tedm:MG-Purpose-hasPurpose-Procedure_ND-ProcedureMainClassificationCode a rr:TriplesMap ;
+ rdfs:label "MG-Purpose";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:MainCommodityClassification";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ rdfs:label "ND-ProcedureMainClassificationCode" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Purpose_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:Purpose
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label " BT-262-Procedure";
+ rdfs:comment "Main Classification Code of MG-Purpose under ND-ProcedureMainClassificationCode";
+ rr:predicate epo:hasMainClassification ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:cpv";
+ rr:parentTriplesMap tedm:cpv ;
+ rr:joinCondition [
+ rr:child "cbc:ItemClassificationCode";
+ rr:parent "code.value" ;
+ ] ;
+# rml:reference "cbc:ItemClassificationCode";
+ ] ;
+ ] ;
+.
+
+tedm:MG-Purpose-hasPurpose-Procedure_ND-ProcedureAdditionalCommodityClassification a rr:TriplesMap ;
+ rdfs:label "MG-Purpose";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:AdditionalCommodityClassification";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ #This one maps to the parent path
+ rdfs:label "ND-ProcedureMainClassificationCode" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Purpose_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:Purpose
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label " BT-263-Procedure";
+ rdfs:comment "Additional Classification Code of MG-Purpose under ND-ProcedureMainClassificationCode";
+ rr:predicate epo:hasAdditionalClassification ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:cpv";
+ rr:parentTriplesMap tedm:cpv ;
+ rr:joinCondition [
+ rr:child "cbc:ItemClassificationCode";
+ rr:parent "code.value" ;
+ ] ;
+# rml:reference "cbc:ItemClassificationCode";
+ ] ;
+ ] ;
+.
+
+tedm:MG-Address-address-Location-definesSpecificPlaceOfPerformance-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance a rr:TriplesMap ;
+ rdfs:label "MG-Address";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:RealizedLocation/cac:Address";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedurePlacePerformance";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcedurePlacePerformance_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+# rml:reference "if (exists(cbc:StreetName) or exists(cbc:AdditionalStreetName) or exists(cac:AddressLine/cbc:Line) or exists(cbc:CityName) or exists(cbc:PostalZone)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcurementProjectContractAddress_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+# rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_AddressandLocation_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class locn:Address
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5101(a|b|c),BT-5121,BT-5131,5141" ;
+ rdfs:comment "Aggregate of Department, Street, Streetline 1, Streetline 2, City, Post Code, Country Code" ;
+ rr:predicate locn:fullAddress ;
+ rr:objectMap
+ [
+ rml:reference "normalize-space(cbc:Department || ' ' || cbc:StreetName || ' ' || cbc:AdditionalStreetName || ' ' || cbc:Line || ' ' || cbc:CityName || ' ' || cbc:PostalZone || ' ' || cac:Country/cbc:IdentificationCode)" ;
+# rml:languageMap [
+# fnml:functionValue [
+# rr:predicateObjectMap [
+# rr:predicate idlab-fn:str ;
+# rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+# ] ,
+# tedm:idlab-fn_executes_lookup ,
+# tedm:idlab-fn_inputFile_language ,
+# tedm:idlab-fn_fromColumn_0 ,
+# tedm:idlab-fn_toColumn_1
+# ]
+# ] ;
+ ] ;
+
+ ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-5101(a)-Procedure";
+# rdfs:comment "Place Performance Street of MG-Address under ND-ProcedurePlacePerformance";
+# rr:predicate locn:fullAddress ;
+# rr:objectMap
+# [
+# rml:reference "cbc:StreetName";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-5101(b)-Procedure";
+# rdfs:comment "Place Performance Streetline 1 of MG-Address under ND-ProcedurePlacePerformance";
+# rr:predicate locn:fullAddress ;
+# rr:objectMap
+# [
+# rml:reference "cbc:AdditionalStreetName";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-5101(c)-Procedure";
+# rdfs:comment "Place Performance Streetline 2 of MG-Address under ND-ProcedurePlacePerformance";
+# rr:predicate locn:fullAddress ;
+# rr:objectMap
+# [
+# rml:reference "descendant::cbc:Line";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-5131-Procedure";
+# rdfs:comment "Place Performance City of MG-Address under ND-ProcedurePlacePerformance";
+# rr:predicate locn:fullAddress ;
+# rr:objectMap
+# [
+# rml:reference "cbc:CityName";
+# # ] ;
+# ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5131-Procedure";
+ rdfs:comment "Place Performance City of MG-Address under ND-ProcedurePlacePerformance";
+ rr:predicate locn:postName ;
+ rr:objectMap
+ [
+ rml:reference "cbc:CityName";
+ ] ;
+ ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-5121-Procedure";
+# rdfs:comment "Place Performance Post Code of MG-Address under ND-ProcedurePlacePerformance";
+# rr:predicate locn:fullAddress ;
+# rr:objectMap
+# [
+# rml:reference "cbc:PostalZone";
+# ] ;
+# ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5121-Procedure";
+ rdfs:comment "Place Performance Post Code of MG-Address under ND-ProcedurePlacePerformance";
+ rr:predicate locn:postCode ;
+ rr:objectMap
+ [
+ rml:reference "cbc:PostalZone";
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5071-Procedure";
+ rdfs:comment "Place Performance Country Subdivision of MG-Location under ND-LotPerformanceAddress";
+ rr:predicate epo:hasNutsCode ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:nuts ;
+ rr:joinCondition [
+ rr:child "cbc:CountrySubentityCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5141-Procedure of MG-Address under ND-LotPerformanceAddress";
+ rdfs:comment "Place Performance Country Code";
+ rr:predicate epo:hasCountryCode ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:country" ;
+ # rml:reference "descendant::cbc:IdentificationCode" ;
+ rr:parentTriplesMap tedm:country ;
+ rr:joinCondition [
+ rr:child "cac:Country/cbc:IdentificationCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+.
+
+tedm:MG-Location-definesSpecificPlaceOfPerformance-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance a rr:TriplesMap ;
+ rdfs:label "MG-Location";
+ rdfs:comment "This is an iterator for the location it has the same xpath with the ND-ProcedurePlacePerformanceAdditionalInformation as this one goes through the ContractTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+# rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:ProcurementProject/cac:RealizedLocation";
+ rml:iterator "/*/cac:ProcurementProject/cac:RealizedLocation/cac:Address";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ContractLocation_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class dct:Location
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5101(a)-Procedure, BT-5101(b)-Procedure, BT-5101(c)-Procedure, BT-5131-Procedure and BT-5121-Procedure";
+ rr:predicate locn:address ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Address-address-Location-definesSpecificPlaceOfPerformance-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance;
+ rr:joinCondition [
+ # TODO check the joint condition
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5141-Procedure of MG-Location under ND-LotPerformanceAddress";
+ rdfs:comment "Place Performance Country Code";
+ rr:predicate epo:hasCountryCode ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:country" ;
+ # rml:reference "descendant::cbc:IdentificationCode" ;
+ rr:parentTriplesMap tedm:country ;
+ rr:joinCondition [
+ rr:child "cac:Country/cbc:IdentificationCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5071-Procedure";
+ rdfs:comment "Place Performance Country Subdivision of MG-Address under ND-LotPerformanceAddress";
+ rr:predicate epo:hasNutsCode ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:nuts";
+ rr:parentTriplesMap tedm:nuts ;
+ rr:joinCondition [
+ rr:child "cbc:CountrySubentityCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+
+ ]
+.
+
+tedm:MG-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance a rr:TriplesMap ;
+ rdfs:label "MG-ContractTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+# rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:ProcurementProject";
+ rml:iterator "/*/cac:ProcurementProject/cac:RealizedLocation/cac:Address";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedurePlacePerformance";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcurementProjectContractTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+# rml:reference "if (exists(cbc:ProcurementTypeCode[@listName='contract-nature']) or exists(descendant::cbc:ProcurementTypeCode[@listName='contract-nature'])) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ContractTerm_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw') else null" ;
+ rr:class epo:ContractTerm;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-5101(a)-Procedure, BT-5101(b)-Procedure, BT-5101(c)-Procedure, BT-5131-Procedure and BT-5121-Procedure";
+ rr:predicate epo:definesSpecificPlaceOfPerformance ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Location-definesSpecificPlaceOfPerformance-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance;
+ rr:joinCondition [
+ rr:child "path(.)";
+ rr:parent "path(.)";
+ ];
+ ]
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-727-Procedure";
+ rdfs:comment "Place Performance Services Other of MG-ContractTerm under ND-ProcedurePlacePerformance";
+ rr:predicate epo:hasBroadPlaceOfPerformance ;
+ rr:objectMap
+ [
+ rdfs:label " at-voc:other-place-service";
+ rr:parentTriplesMap tedm:other-place-service ;
+ rr:joinCondition [
+ rr:child "cbc:Region" ;
+ rr:parent "code.value" ;
+ ] ;
+# rml:reference "cbc:Region";
+ ] ;
+ ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-728-Procedure";
+# rr:predicate epo:hasPlaceOfPerformanceAdditionalInformation ;
+# rr:objectMap
+# [
+# rml:reference "descendant::cbc:Description";
+# rr:datatype xsd:string;
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-531-Procedure";
+# rr:predicate epo:hasAdditionalContractNature;
+# rr:objectMap
+# [
+# rml:reference "descendant::cbc:ProcurementTypeCode[not(@listName='transport-service')]";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-23-Procedure";
+# rr:predicate epo:hasContractNatureType;
+# rr:objectMap
+# [
+# rml:reference "../cbc:ProcurementTypeCode";
+# ] ;
+# ]
+.
+
+tedm:MG-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformanceAdditionalInformation a rr:TriplesMap ;
+ rdfs:label "MG-ContractTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProject/cac:RealizedLocation";
+ rml:referenceFormulation ql:XPath
+ ];
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedurePlacePerformanceAdditionalInformation";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcurementProjectContractTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ContractTerm
+ ] ;
+# rr:predicateObjectMap
+# [
+# rr:predicate epo:definesSpecificPlaceOfPerformance ;
+# rr:objectMap
+# [
+# rr:parentTriplesMap tedm:MG-Location-definesSpecificPlaceOfPerformance-ContractTerm-foreseesContractSpecificTerm-Procedure_ND-ProcedurePlacePerformance;
+# rr:joinCondition [
+# rr:child "path(.)";
+# rr:parent "path(.)";
+# ];
+# ]
+# ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-728-Procedure";
+ rdfs:comment "Place Performance Additional Information of MG-ContractTerm under D-ProcedurePlacePerformanceAdditionalInformation";
+ rr:predicate epo:hasPlaceOfPerformanceAdditionalInformation ;
+ rr:objectMap
+ [
+ rml:reference "cbc:Description";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:Description/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+
+ ] ;
+ ] ;
+.
+
+tedm:MG-ExclusionGround-specifiesExclusionGround-Procedure_ND-ExclusionGrounds a rr:TriplesMap ;
+ rdfs:label "MG-ExclusionGround";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:TendererQualificationRequest/cac:SpecificTendererRequirement";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ExclusionGrounds";
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ExtensionGroup_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ExclusionGround
+
+ ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-67(a)-Procedure";
+# rdfs:comment "Exclusion Grounds of MG-ExclusionGround under ND-ExclusionGrounds";
+# rr:predicate dct:type ;
+# rr:objectMap
+# [
+# rml:reference "cbc:TendererRequirementTypeCode[@listName='exclusion-ground']";
+# ] ;
+# ] ;
+# rr:predicateObjectMap
+# [
+# rdfs:label "BT-67(b)-Procedure";
+# rdfs:comment "Exclusion Grounds of MG-ExclusionGround under ND-ExclusionGrounds";
+# rr:predicate dct:descrition ;
+# rr:objectMap
+# [
+# rml:reference "cbc:Description";
+# ] ;
+# ]
+.
+
+tedm:MG-ProcedureTerm-isSubjectToProcedureSpecificTerm-Procedure_ND-CrossBorderLaw a rr:TriplesMap ;
+ rdfs:label "MG-ProcedureTerm";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingTerms/cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-CrossBorderLaw";
+ rdfs:comment "Primary type declaration of MG-ProcedureTerm under ND-CrossBorderLaw";
+ # rml:reference "if (exists(cac:ProcurementLegislationDocumentReference[cbc:ID/text()='CrossBorderLaw']/cbc:ID[text()='CrossBorderLaw'])) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcedureTerm_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcedureTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ProcedureTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-09(b)-Procedure";
+ rdfs:comment "Cross Border Law Description of MG-ProcedureTerm under ND-CrossBorderLaw";
+ rr:predicate epo:hasCrossBorderLaw ;
+ rr:objectMap
+ [
+ rml:reference "cbc:DocumentDescription";
+ rml:languageMap [
+ fnml:functionValue [
+ rr:predicateObjectMap [
+ rr:predicate idlab-fn:str ;
+ rr:objectMap [ rml:reference "'http://publications.europa.eu/resource/authority/language/' || cbc:DocumentDescription/@languageID" ]
+ ] ,
+ tedm:idlab-fn_executes_lookup ,
+ tedm:idlab-fn_inputFile_language ,
+ tedm:idlab-fn_fromColumn_0 ,
+ tedm:idlab-fn_toColumn_1
+ ]
+ ] ;
+ ] ;
+ ]
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcedureTerm.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcedureTerm.ttl
new file mode 100644
index 000000000..5041e4853
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcedureTerm.ttl
@@ -0,0 +1,56 @@
+#--- MG-ProcedureTerm ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+# this is an example of a TMap with the same iterator as another (tedm:MG-Procedure_ND-ProcedureTenderingProcess) but different subject type/IRI
+tedm:MG-ProcedureTerm_ND-ProcedureTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-ProcedureTerm" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingProcess";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedureTenderingProcess" ;
+ rdfs:comment "Primary type declaration for MG-Procedure under ND-ProcedureTenderingProcess" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcedureTerm_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path(..)) || '?response_type=raw')}" ;
+ rr:class epo:ProcedureTerm
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.3 max SDK 1.8
+ rdfs:label "BT-763-Procedure" ;
+ rdfs:comment "Lots All Required of MG-ProcedureTerm under ND-ProcedureProcurementScope" ;
+ rr:predicate epo:isSubmissionForAllLotsRequired ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.9.1" ;
+ rml:reference "if(cbc:PartPresentationCode/text()='all') then 'true' else null" ;
+ rr:datatype xsd:boolean ;
+ ]
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementProcessInformation.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementProcessInformation.ttl
new file mode 100644
index 000000000..5107ec753
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementProcessInformation.ttl
@@ -0,0 +1,115 @@
+#--- MG-ProcurementProcesInformation ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+# this is an example of a type declaration on a field with secondary assertions
+tedm:MG-ProcurementProcessInformation_ND-ProcedureTenderingProcess a rr:TriplesMap ;
+ rdfs:label "MG-ProcurementProcessInformation" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:TenderingProcess/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ProcedureTenderingProcess" ;
+ rdfs:comment "Primary type declaration for MG-ProcurementProcessInformation under ND-ProcedureTenderingProcess" ;
+ rml:reference "if(exists(efbc:ProcedureRelaunchIndicator)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcurementProcessInformation_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class epo:ProcurementProcessInformation
+
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-634-Procedure" ;
+ rdfs:comment "Procurement Relaunch of MG-ProcurementProcessInformation under ND-ProcedureTenderingProcess" ;
+ rr:predicate epo:isToBeRelaunched ;
+ rr:objectMap
+ [
+ rml:reference "efbc:ProcedureRelaunchIndicator" ;
+ rr:datatype xsd:boolean
+ ] ;
+ ] ;
+ # this is an example of a predicate that can link to one of multiple TMaps with the same subject IRI
+ rr:predicateObjectMap
+ [
+ rr:predicate epo:concernsProcedure ;
+ rr:objectMap
+ [
+ # TODO how do we decide whether to link at ProcedureTenderingProcess or ProcedureProcurementScope?
+ rr:parentTriplesMap tedm:MG-Procedure_ND-ProcedureProcurementScope ;
+ # rr:parentTriplesMap tedm:ND-ProcedureTenderingProcess ;
+ # rr:joinCondition [
+ # rr:child "path(/*/cac:TenderingProcess)" ;
+ # rr:parent "path(.)" ;
+ # ] ;
+ ]
+ ]
+.
+
+tedm:MG-ProcurementProcessInformation_ND-LotTenderingProcessExtension a rr:TriplesMap ;
+ rdfs:label "MG-ProcurementProcessInformation";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ProcurementProjectLot[cbc:ID/@schemeName='Lot']/cac:TenderingProcess/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-LotTenderingProcessExtension";
+ rml:reference "if(exists(efbc:ProcedureRelaunchIndicator)) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_ProcurementProcessInformation_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ rr:class epo:ProcurementProcessInformation
+
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-634-Lot";
+ rdfs:comment "Procurement Relaunch of MG-ProcurementProcessInformation under ND-LotTenderingProcessExtension ";
+ rr:predicate epo:isToBeRelaunched ;
+ rr:objectMap
+ [
+ rml:reference "efbc:ProcedureRelaunchIndicator";
+ rr:datatype xsd:boolean
+ ] ;
+ ];
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-634-Lot";
+ rdfs:comment "this is for MG-Lot-concernsLot-ProcurementProcessInformation";
+ rr:predicate epo:concernsLot ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Lot_ND-Lot;
+ rr:joinCondition [
+ rr:child "path(../../../../..)";
+ rr:parent "path(.)";
+ ];
+# rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Lot_{../../../../../cbc:ID}" ;
+# rr:termType rr:IRI;
+
+ ];
+ ]
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementServiceProvider.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementServiceProvider.ttl
new file mode 100644
index 000000000..d74de28fb
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/ProcurementServiceProvider.ttl
@@ -0,0 +1,85 @@
+#--- MG-ProcurementServiceProvider ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:MG-ProcurementServiceProvider_ND-ServiceProviderParty a rr:TriplesMap ;
+ rdfs:label "MG-ProcurementServiceProvider";
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cac:ContractingParty/cac:Party/cac:ServiceProviderParty";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-ServiceProviderParty" ;
+ rdfs:comment "Primary type declaration for MG-ProcurementServiceProvider under ND-ServiceProviderParty" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_ProcurementServiceProvider_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class epo:ProcurementServiceProvider
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-300-Procedure-SProvider" ;
+ rdfs:comment "Service Provider Technical Identifier Reference of MG-Organization-playedBy-ProcurementServiceProvider under ND-ServiceProviderParty" ;
+ rr:predicate epo:playedBy ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Organization_ND-Company ;
+ rr:joinCondition [
+ rr:child "cac:Party/cac:PartyIdentification/cbc:ID" ;
+ rr:parent "cac:PartyIdentification/cbc:ID" ;
+ ] ;
+ # alternative: associated object linked through explicit template with deterministic IRI
+ # rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Organization_{cac:Party/cac:PartyIdentification/cbc:ID}" ;
+ # rr:termType rr:IRI ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.10
+ rr:predicate epo:actsOnBehalfOf ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.3" ;
+ tedm:maxSDKVersion "1.9.1" ;
+ rr:parentTriplesMap tedm:MG-Buyer_ND-ContractingParty ;
+ # TODO: Check if a join is actually needed and whether absolute or relative child should be used
+ # rr:joinCondition [
+ # rr:child "path(/*/cac:ContractingParty)" ;
+ # rr:parent "path(.)" ;
+ # ];
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPT-030-Procedure-SProvider (ted-esen)" ;
+ rdfs:comment "Provided Service Type of MG-ProcurementServiceProvider under ND-ServiceProviderParty, only for eSender" ;
+ rr:predicate dct:description ;
+ rr:objectMap
+ [
+ rml:reference "if(cbc:ServiceTypeCode[@listName='organisation-role']/text()='ted-esen') then cbc:ServiceTypeCode else null" ;
+ ] ;
+ ] ;
+.
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/controlled-lists.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/controlled-lists.ttl
new file mode 100644
index 000000000..a09ffaa2b
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/controlled-lists.ttl
@@ -0,0 +1,254 @@
+#--- Authority table vocabularies (at-voc) ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+tedm:buyerLegalType a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/buyer_legal_type.csv" ;
+ rml:referenceFormulation ql:CSV
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI" ;
+ ]
+.
+
+tedm:nuts a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/nuts.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:country a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/country.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:procurement-procedure-type a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/procurement-procedure-type.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:main-activity a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/main_activity.csv" ;
+ rml:referenceFormulation ql:CSV
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI" ;
+ ]
+.
+
+tedm:contract-nature a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/contract_nature.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:notice-type a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/notice-type.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:form-type a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/form-type.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:language a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/language.csv" ;
+ rml:referenceFormulation ql:CSV
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI" ;
+ ]
+.
+
+tedm:legal-basis a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/legal_basis.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:usage a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/usage.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+
+tedm:framework-agreement a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/framework-agreement.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:fdps-usage a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/dps-usage.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:permission a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/permission.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:communication-justification a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/communication-justification.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:cpv a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/cpv.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
+tedm:other-place-service a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "transformation/resources/other-place-service.json" ;
+ rml:iterator "$.results.bindings[*]" ;
+ rml:referenceFormulation ql:JSONPath
+ ] ;
+ rr:subjectMap
+ [
+ rml:reference
+ "conceptURI.value" ;
+ ]
+.
\ No newline at end of file
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_cn_v1.9.rml.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_cn_v1.9.rml.ttl
new file mode 100644
index 000000000..87cb745cb
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_cn_v1.9.rml.ttl
@@ -0,0 +1,328 @@
+#--- Root ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epd: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix cv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix adms: .
+@prefix skos: .
+@prefix fnml: .
+@prefix fno: .
+@prefix idlab-fn: .
+
+# to be copied in the appropriate mapping suite, together with all related imports, if it is the case.
+tedm:technical_mapping_cn_v19
+ a owl:Ontology ;
+ #owl:imports tedm:contracting_authority, tedm:object, tedm:procedure, tedm:award_of_contract, tedm:complementary_information, tedm:annexe_d1, tedm:notice;
+ dct:description "This module provides the mapping definitions for the eForm subtypes 10-24 for SDK v1.9 against ePO 4.0.0"@en ;
+ rdfs:label "TED-SWS mapping of eForm subtypes 10-24 SDK v1.9 ePO 4.0.0"@en ;
+ dct:date "2024-02-15"^^xsd:date
+.
+
+# this is an example of an MG with the same template of another (MG-Notice) required for conditional assertions
+tedm:MG-CompetitionNotice_ND-Root
+ a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ # this is an example of a complex multi-element condition for instantiation of a subject not suitable as a condition below the iterator
+ rml:iterator "if(/*/cbc:NoticeTypeCode/@listName='competition' or /*/ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NoticeSubType/cbc:SubTypeCode=('10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24') or exists(/ContractNotice)) then /* else null" ;
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Root" ;
+ rdfs:comment "Primary type declaration for MG-Notice under ND-Root" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Notice" ;
+ rr:class epo-not:CompetitionNotice
+ ] ;
+ # this is an example of a (backpropagated) association that is not represented by a BT/field
+ rr:predicateObjectMap
+ [
+ rdfs:label "MG-Buyer-announcesRole-CompetitionNotice" ;
+ rdfs:comment "MG-Buyer-announcesRole-CompetitionNotice under ND-ContractingParty" ;
+ rr:predicate epo-not:announcesRole ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Buyer_ND-ContractingParty
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO min SDK 1.10
+ rdfs:label "MG-ProcurementServiceProvider-announcesRole-CompetitionNotice" ;
+ rdfs:comment "MG-ProcurementServiceProvider-announcesRole-CompetitionNotice under ND-ServiceProviderParty" ;
+ rr:predicate epo-not:announcesRole ;
+ rr:objectMap
+ [
+ tedm:minSDKVersion "1.3" ;
+ tedm:maxSDKVersion "1.9.1" ;
+ rr:parentTriplesMap tedm:MG-ProcurementServiceProvider_ND-ServiceProviderParty
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "MG-LeadBuyer-announcesRole-CompetitionNotice" ;
+ rdfs:comment "MG-LeadBuyer-announcesRole-CompetitionNotice under ND-Organization" ;
+ rr:predicate epo-not:announcesRole ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-LeadBuyer_ND-Organization
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "MG-AwardingCentralPurchasingBody-announcesRole-CompetitionNotice" ;
+ rdfs:comment "MG-AwardingCentralPurchasingBody-announcesRole-CompetitionNotice under ND-Organization" ;
+ rr:predicate epo-not:announcesRole ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-AwardingCentralPurchasingBody_ND-Organization
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "MG-AcquiringCentralPurchasingBody-announcesRole-CompetitionNotice" ;
+ rdfs:comment "MG-AcquiringCentralPurchasingBody-announcesRole-CompetitionNotice under ND-Organization" ;
+ rr:predicate epo-not:announcesRole ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-AcquiringCentralPurchasingBody_ND-Organization
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "MG-Lot-announcesLot-CompetitionNotice" ;
+ rdfs:comment "MG-Lot-announcesLot-CompetitionNotice under ND-Lot" ;
+ rr:predicate epo:announcesLot ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Lot_ND-Lot
+ ] ;
+ ] ;
+.
+
+tedm:MG-Notice_ND-Root
+ a rr:TriplesMap ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "ND-Root" ;
+ rdfs:comment "Primary type declaration for MG-Notice under ND-Root" ;
+ rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_Notice" ;
+ rr:class epo:Notice
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-02-notice" ;
+ rdfs:comment "Notice Type of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasNoticeType ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:notice-type" ;
+ rr:parentTriplesMap tedm:notice-type ;
+ rr:joinCondition [
+ rr:child "cbc:NoticeTypeCode" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-03-notice" ;
+ rdfs:comment "Form Type of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasFormType ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:form-type" ;
+ rr:parentTriplesMap tedm:form-type ;
+ rr:joinCondition [
+ rr:child "cbc:NoticeTypeCode/@listName" ;
+ rr:parent "code.value" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-04-notice" ;
+ rdfs:comment "Procedure Identifier of MG-Procedure-refersToProcedure-Notice under ND-Root" ;
+ rr:predicate epo:refersToProcedure ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Procedure_ND-ProcedureProcurementScope
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:comment "The identifier of MG-Notice under ND-Root" ;
+ rr:predicate adms:identifier ;
+ rr:objectMap
+ [
+ rr:parentTriplesMap tedm:MG-Identifier-identifier-Notice_ND-Root
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ # TODO: we may have to concatenate this with ID, confirm with OP with example
+ rdfs:label "BT-757-notice" ;
+ rdfs:comment "Notice Version of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasVersion ;
+ rr:objectMap
+ [
+ rml:reference "cbc:VersionID" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-702(a)-notice" ;
+ rdfs:comment "Notice Official Language of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasOfficialLanguage ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:language" ;
+ rr:parentTriplesMap tedm:language ;
+ # we look up as complete IRI for full coverage -- if we don't find one we don't map
+ rr:joinCondition [
+ rr:child "'http://publications.europa.eu/resource/authority/language/' || cbc:NoticeLanguageCode" ;
+ rr:parent "conceptURI" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-702(b)-notice" ;
+ rdfs:comment "Notice Official Language of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasOfficialLanguage ;
+ rr:objectMap
+ [
+ rdfs:label "at-voc:language" ;
+ rr:parentTriplesMap tedm:language ;
+ rr:joinCondition [
+ rr:child "'http://publications.europa.eu/resource/authority/language/' || cac:AdditionalNoticeLanguage/cbc:ID" ;
+ rr:parent "conceptURI" ;
+ ] ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-05(a)-notice and BT-05(b)-notice" ;
+ rdfs:comment "Notice Dispatch Date and Notice Dispatch Time of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasEsenderDispatchDate ;
+ rr:objectMap
+ [
+ # here we combine values across (relative) XPaths/fields stripping out the time zone from the first
+ # it handles the case where there is no time zone indicated in the date time, just in case validation failed on a notice
+ # however, it won't handle the case if there are other malformations
+ rml:reference "if(exists(cbc:IssueDate) and exists(cbc:IssueTime) and contains(cbc:IssueDate, '+')) then substring-before(cbc:IssueDate, '+') || 'T' || cbc:IssueTime else if(exists(cbc:IssueDate) and exists(cbc:IssueTime)) then cbc:IssueDate || 'T' || cbc:IssueTime else if(exists(cbc:IssueDate)) then cbc:IssueDate else null" ;
+ rr:datatype xsd:dateTime ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPP-070-notice" ;
+ rdfs:comment "Notice Subtype of MG-Notice under ND-Root" ;
+ rr:predicate rdf:type ;
+ rr:objectMap
+ [
+ rml:reference "'http://data.europa.eu/a4g/ontology#Notice' || ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:NoticeSubType/cbc:SubTypeCode" ;
+ rr:termType rr:IRI ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPP-010-notice" ;
+ rdfs:comment "Notice Publication Number of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasNoticePublicationNumber ;
+ rr:objectMap
+ [
+ rml:reference "ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Publication/efbc:NoticePublicationID[@schemeName='ojs-notice-id']" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPP-011-notice" ;
+ rdfs:comment "OJEU Identifier of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasOJSIssueNumber ;
+ rr:objectMap
+ [
+ rml:reference "ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Publication/efbc:GazetteID[@schemeName='ojs-id']" ;
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "OPP-012-notice" ;
+ rdfs:comment "OJEU Publication Date of MG-Notice under ND-Root" ;
+ rr:predicate epo:hasPublicationDate ;
+ rr:objectMap
+ [
+ rml:reference "ext:UBLExtensions/ext:UBLExtension/ext:ExtensionContent/efext:EformsExtension/efac:Publication/efbc:PublicationDate" ;
+ rr:datatype xsd:date ;
+ ] ;
+ ] ;
+.
+
+# this is an example of a composition instance
+# (subject is a child dependent on its parent,
+# i.e. Identifier dependent on Notice)
+tedm:MG-Identifier-identifier-Notice_ND-Root a rr:TriplesMap ;
+ rdfs:comment "The identifier of a notice" ;
+ rml:logicalSource
+ [
+ rml:source "data/source.xml" ;
+ rml:iterator "/*/cbc:ID[@schemeName='notice-id']";
+ rml:referenceFormulation ql:XPath
+ ] ;
+ rr:subjectMap
+ [
+ rdfs:label "BT-701-notice" ;
+ # TODO can this become a template since the iterator is already on the required element?
+ rml:reference "if (exists(/*/cbc:ID[@schemeName='notice-id'])) then 'http://data.europa.eu/a4g/resource/id_' || replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-') || '_NoticeIdentifier_' || unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw') else null" ;
+ # rr:template "http://data.europa.eu/a4g/resource/id_{replace(replace(/*/cbc:ID[@schemeName='notice-id'], ' ', '-' ), '/' , '-')}_NoticeIdentifier_{unparsed-text('https://digest-api.ted-data.eu/api/v1/hashing/fn/uuid/' || encode-for-uri(path()) || '?response_type=raw')}" ;
+ rr:class adms:Identifier
+ ] ;
+ rr:predicateObjectMap
+ [
+
+ rr:predicate skos:notation ;
+ rr:objectMap
+ [
+ rml:reference ".";
+ ] ;
+ ] ;
+ rr:predicateObjectMap
+ [
+ rdfs:label "BT-701-notice-Scheme" ;
+ rdfs:comment "Scheme of MG-Identifier for MG-Notice under ND-Root" ;
+ rr:predicate epo:hasScheme ;
+ rr:objectMap
+ [
+ rml:reference "./@schemeName";
+ ] ;
+ ] ;
+.
+
+##--- Function Parameters ---
+
+tedm:idlab-fn_executes_lookup rr:predicate fno:executes ; rr:objectMap [ rr:constant idlab-fn:lookup ] .
+tedm:idlab-fn_inputFile_language rr:predicate idlab-fn:inputFile ; rr:objectMap [ rr:constant "transformation/resources/language.csv" ] .
+tedm:idlab-fn_fromColumn_0 rr:predicate idlab-fn:fromColumn ; rr:objectMap [ rr:constant "0" ] .
+tedm:idlab-fn_toColumn_1 rr:predicate idlab-fn:toColumn ; rr:objectMap [ rr:constant "1" ] .
diff --git a/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_es16.rml.ttl b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_es16.rml.ttl
new file mode 100644
index 000000000..15d4f9218
--- /dev/null
+++ b/tests/test_data/mapping_suite_processor/mappings/package_eforms/transformation/mappings/technical_mapping_es16.rml.ttl
@@ -0,0 +1,5164 @@
+#--- technical_mapping_F03.rml.ttl ---
+@prefix owl: .
+@prefix rdf: .
+@prefix rdfs: .
+@prefix xsd: .
+@prefix skos: .
+@prefix rr: .
+@prefix rml: .
+@prefix ql: .
+@prefix locn: .
+@prefix dct: .
+@prefix tedm: .
+@prefix epo: .
+@prefix epo-not: .
+@prefix epd: .
+@prefix cv: .
+@prefix cpv: .
+@prefix cccev: .
+@prefix org: .
+@prefix cpov: .
+@prefix foaf: .
+@prefix time: .
+@prefix ext: .
+@prefix cbc: