TED Search API

Abstract
<h1>Introduction</h1> This API provides multiple read-only operations on the TED website data. The endpoint 'Notice Search API' can be used to search notices both TED schema notices and eForms notices. More information is available on the help pages of the TED website: <ul> <li><a href=\"https://ted.europa.eu\">TED - Website</a></li> <li><a href=\"https://ted.europa.eu/en/search/expert-search\">Expert Search</a></li> <li><a href=\"https://ted.europa.eu/en/contact\">Contact</a></li> <li><a href=\"https://ted.europa.eu/en/legal-notice\">Legal notice</a></li> </ul> The API is accessible to the general public and can be utilized by anyone in accordance with the <a href=\"#terms-of-usage\">term of usage</a>. <h1 id=\"change-log\">Change logs</h1> <table style=\"border: 1px solid;\"> <thead> <tr> <th style=\"border: 1px solid;\">Version</th> <th style=\"border: 1px solid;\">Date</th> <th style=\"border: 1px solid;\">Changes</th> </tr> </thead> <tr> <td style=\"border: 1px solid;\">N/A</td> <td style=\"border: 1px solid;\">N/A</td> <td style=\"border: 1px solid;\">N/A</td> </tr> </table> <h1>Public API search modes</h1> This section describes the different search modes provided by the public search API. Each parameter of the search API is detailed in the OpenAPI documentation of the API. <h2>Pagination mode</h2> The pagination mode is the default mode of the public search API. This mode is stateless: the user can retrieve any result page, and not necessary in order. It also means that there is no mechanism to ensure consistency between two retrieved pages: if the user retrieves multiple pages and an OJS is released between two retrieved pages, then the user might miss some notices or have duplicated notices. Also, due to how Elasticsearch works internally, a limit on the number of retrievable notices for a given query has been put in place. This limit is described in the <i>Definition of limits</i> section. The user must provide the following parameters to the API to paginate results: <ul> <li>limit: the number of notices returned per page. For example, limit=10 means that 10 notices will be returned. </li> <li>page: the page number to retrieve. For example, page=1 means that the first result page will be retrieved.</li> </ul> <h2>Scroll mode</h2> The scroll mode allows user to retrieve all notices for a given query, without limitations defined in section <i>Definition of limits</i>. With this mode, the user calls the search API to retrieve the first result page and a token. This token can then be included in the next query sent to the search API to retrieve the next result page. The user knows all notices have been retrieved once there is no more notice returned. The Elasticsearch point in time feature is used to ensure a consistency between all returned pages, which means that the user cannot miss notices or have duplicated notices. An Elasticsearch point in time is a freeze of the Elasticsearch instance at a specific time. If notices are added or removed during the lifetime of a point in time, the notices registered in the point in time don’t change. The point in time has an expiration time. This expiration time is defined as the date of the next OJS release plus 24 hours. It means that the user has always at least 24 hours to retrieve all the notices for a given query. The user must provide the following parameters to the API to retrieve results in scroll mode: <ul> <li>paginationMode should be set to “ITERATION”.</li> <li>limit: the number of notices to return for the next page.</li> <li>iterationNextToken: the token returned by the previous call to the search API. If this is the first call (i.e., to retrieve the first page), this parameter shouldn’t be provided. </li> </ul> <h1>Definition of limits</h1> Here is a definition of the different limits defined for the SEM (Search Engine Module) endpoints in the next sections: <ul> <li>Maximum number of retrievable notices: this corresponds to the number of notices that can be retrieved once the user has queried all pages. For example, if the user retrieves all notices for a given query with page size 250, and the limit of retrievable notices is 10k, it means the SEM will return no more notice after page 10k / 250 = 40, even if the query matches more than 10k notices. </li> <li>Maximum number of notices per page: if this limit is X, then it means the user can retrieve X or less notices per page, but not more than X notices per page. </li> <li>Maximum number of fields per page: the number of fields per page is defined as the number of notices per page multiplied by the number of fields retrieved for each notice. For example, with a limit of 250, the user is allowed to retrieve 50 notices per page and 4 fields per notice (50 * 4 < 250). However, they are not allowed to retrieve 100 notices per page and 4 fields per notice (100 * 4 > 250). </li> </ul> <h2>Search using pagination mode of public API</h2> The pagination mode of the public search API has the following limits: <ul> <li>Maximum number of retrievable notices: 15k.</li> <li>Maximum number of notices per page: 250.</li> <li>Maximum number of fields per page: 10k.</li> </ul> In case a limit is reached, the search API will return an error to the user. <h2>Search using scroll mode of public API</h2> The scroll mode of the public search API has the following limits: <ul> <li>Maximum number of notices per page: 250.</li> <li>Maximum number of fields per page: 10k.</li> </ul> In case a limit is reached, the search API will return an error to the user. There is no limit on the number of retrievable notices. <h1>Versioning</h1> The versioning of the TED Public API is managed by including the major version in the URL (eg. v1). An upgrade of the major version will denote a breaking changes of the API whereas minor and maintenance will be transparent to the client. The <a href=\"#change-log\">change logs</a> will contain the details of any modifications made to the API, serving as a means to notify clients about newly added features or bug fixes. The list of <i>fields</i> by their variable nature are excluded from the versioning, addition, removal or update of a fields will not change the versioning. <h1>Frequently Asked Questions</h1> <h3>How can I create, test or validate an expert query?</h3> <h3>The API returns an error regarding an invalid field, format or value, how can I debug?</h3> The <a href=\"https://ted.europa.eu/en/search/expert-search\">TED Expert Search</a> page can be used for that purpose. It includes the capabilities to write a query, check the syntax, list all the fields and execute the query. The query once tailored can be reused in the query field parameter. <h1 id=\"terms-of-usage\">Terms of Usage</h1> <li><a href=\"https://ted.europa.eu/en/legal-notice\">Legal notice</a></li>

Endpoints

NoticeSearchV3

Models

ErrorResponse

Response body in case of bad request

Field Name Required Type Description Format

message

String

Error message

error

Object

ErrorResponseObject

Response body in case of bad request

Field Name Required Type Description Format

message

String

Error message

error

Object

ExpertSearchResponse

Response body of the notice search endpoint

Field Name Required Type Description Format

notices

List of NoticeResponse

Found notices

totalNoticeCount

Long

Total number of notices matching the search query

int64

iterationNextToken

String

Generated token use to store the position inside of the search. Optional if PAGE_NUMBER pagination mode, mandatory if ITERATION mode

ExpiredIterationTokenError

Error when provided iteration token is expired

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: EXPIRED_ITERATION_TOKEN,

InvalidIterationTokenError

Error when provided iteration token is invalid

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: INVALID_ITERATION_TOKEN,

NoticeResponse

Detailed list of search fields that can be retrieved

Field Name Required Type Description Format

BT-09(b)-Procedure

NoticeResponse_BT_09_b__Procedure

organisation-name-mediator-part

NoticeResponse_organisation_name_mediator_part

touchpoint-post-code-environ-legis-lot

List of [string]

sme-part

List of [boolean]

touchpoint-gateway-ted-esen

List of [string]

BT-135-Procedure

NoticeResponse_organisation_name_mediator_part

touchpoint-fax-tender-receip-part

List of [string]

submission-url-lot

List of [string]

organisation-person-addinfo-part

List of [boolean]

buyer-country-sub

List of [string]

organisation-tel-revieworg-part

List of [string]

no-negocaition-necessary-lot

List of [boolean]

organisation-tel-mediator-lot

List of [string]

BT-13(t)-Part

List of [string]

organisation-city-serv-prov

List of [string]

touchpoint-partname-tenderer

List of [string]

touchpoint-internet-address-paying

List of [string]

BT-538-Lot

List of [string]

touchpoint-post-code-addinfo-lot

List of [string]

option-description-lot

NoticeResponse_organisation_name_mediator_part

BT-24-Procedure

NoticeResponse_BT_09_b__Procedure

organisation-person-employ-legis-part

List of [boolean]

touchpoint-post-code-employ-legis-part

List of [string]

AA

List of [string]

touchpoint-internet-address-fiscal-legis-lot

List of [string]

AC

String

organisation-email-tenderer

List of [string]

organisation-country-buyer

List of [string]

BT-1501(c)-Contract

List of [string]

organisation-post-code-docprovider-part

List of [string]

award-criterion-name-lot

NoticeResponse_organisation_name_mediator_part

organisation-post-code-financing

List of [string]

touchpoint-contact-point-addinfo-lot

List of [string]

BT-137-Part

List of [string]

organisation-person-mediator-lot

List of [boolean]

organisation-gateway-revieworg-lot

List of [string]

AU

NoticeResponse_organisation_name_mediator_part

organisation-person-signatory

List of [boolean]

minimum-candidate-lot

List of [long]

int64

OPP-130-Business

NoticeResponse_BT_09_b__Procedure

organisation-street-ted-esen

List of [string]

organisation-name-employ-legis-part

NoticeResponse_organisation_name_mediator_part

touchpoint-city-fiscal-legis-lot

List of [string]

touchpoint-street-employ-legis-part

List of [string]

touchpoint-email-revieworg-lot

List of [string]

business-fax

String

OPP-021-Contract

NoticeResponse_organisation_name_mediator_part

future-notice

String

touchpoint-gateway-environ-legis-part

List of [string]

BI

List of [string]

BT-33-Procedure

Long

int64

touchpoint-tel-subcontractor

List of [string]

ubo-email

List of [string]

touchpoint-internet-address-tender-receip-part

List of [string]

touchpoint-internet-address-tender-eval-part

List of [string]

organisation-person-environ-legis-lot

List of [boolean]

touchpoint-partname-tender-eval-part

List of [string]

BT-5131-Part

List of [string]

organisation-tel-addinfo-part

List of [string]

BT-1501(n)-Contract

List of [string]

touchpoint-contact-point-fiscal-legis-part

List of [string]

organisation-contact-point-serv-prov

List of [string]

BT-712(b)-LotResult

List of [float]

float

touchpoint-country-serv-prov

List of [string]

touchpoint-contact-point-tender-eval-part

List of [string]

touchpoint-contact-point-reviewinfo-part

List of [string]

electronic-auction-lot-url

List of [string]

touchpoint-fax-buyer

List of [string]

subcontracting-value-cur

List of [string]

deadline-date-lot

List of [string]

organisation-name-environ-legis-lot

NoticeResponse_organisation_name_mediator_part

description-glo

NoticeResponse_organisation_name_mediator_part

organisation-person-employ-legis-lot

List of [boolean]

organisation-country-docprovider-lot

List of [string]

winner-owner-nationality

List of [string]

tender-value-cur

List of [string]

touchpoint-city-revieworg-lot

List of [string]

award-criterion-number-fixed-glo

List of [string]

organisation-partname-docprovider-part

List of [string]

BT-732-Lot

NoticeResponse_organisation_name_mediator_part

touchpoint-name-docprovider-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-internet-address-subcontractor

List of [string]

BT-727-Part

List of [string]

place-of-performance-post-code-part

List of [string]

CY

List of [string]

BT-651-Lot

List of [string]

BT-150-Contract

List of [string]

BT-45-Lot

NoticeResponse_organisation_name_mediator_part

BT-710-LotResult

List of [float]

float

DD

List of [string]

organisation-internet-address-addinfo-lot

List of [string]

deadline-receipt-tender-date-lot

List of [string]

organisation-email-mediator-lot

List of [string]

identifier-part

List of [string]

DI

List of [string]

BT-1311(t)-Lot

List of [string]

touchpoint-city-reviewinfo-lot

List of [string]

BT-46-Lot

List of [string]

modification-justification

List of [string]

tender-variant

List of [boolean]

touchpoint-country-revieworg-lot

List of [string]

BT-70-Lot

NoticeResponse_organisation_name_mediator_part

touchpoint-country-employ-legis-lot

List of [string]

DS

String

DT

List of [string]

BT-707-Lot

List of [string]

touchpoint-name-subcontractor

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-financing

List of [string]

BT-52-Lot

List of [boolean]

touchpoint-country-reviewinfo-lot

List of [string]

buyer-reviewrequests-irregularity-type

List of [string]

contract-nature-add-part

List of [string]

organisation-person-tender-eval-lot

List of [boolean]

lots-max-allowed-proc

Long

int64

touchpoint-partname-fiscal-legis-lot

List of [string]

organisation-city-signatory

List of [string]

internal-identifier-glo

List of [string]

BT-99-Lot

NoticeResponse_organisation_name_mediator_part

organisation-country-sub-subcontractor

List of [string]

contract-identifier

List of [string]

BT-539-Lot

List of [string]

organisation-post-code-fiscal-legis-lot

List of [string]

organisation-country-sub-docprovider-part

List of [string]

touchpoint-street-tender-eval-part

List of [string]

organisation-internet-address-ted-esen

List of [string]

BT-733-LotsGroup

NoticeResponse_organisation_name_mediator_part

BT-36-Lot

List of [NoticeResponse_BT_36_Lot_inner]

touchpoint-country-sub-financing

List of [string]

organisation-email-subcontractor

List of [string]

BT-134-Lot

NoticeResponse_organisation_name_mediator_part

BT-118-NoticeResult

Float

float

organisation-tel-employ-legis-part

List of [string]

touchpoint-street-subcontractor

List of [string]

corporate-body

List of [string]

touchpoint-country-reviewinfo-part

List of [string]

touchpoint-city-docprovider-part

List of [string]

buyer-touchpoint-gateway

List of [string]

BT-709-LotResult

List of [float]

float

procurement-relaunch

List of [boolean]

maximum-candidates-lot

List of [long]

int64

touchpoint-name-fiscal-legis-part

NoticeResponse_organisation_name_mediator_part

place-of-performance-city-lot

List of [string]

BT-22-LotsGroup

List of [string]

FT

String

organisation-internet-address-docprovider-part

List of [string]

BT-5141-Lot

List of [string]

touchpoint-tel-tender-receip-lot

List of [string]

organisation-tel-buyer

List of [string]

previous-planning-identifier-part-lot

List of [string]

BT-5121-Procedure

List of [string]

touchpoint-fax-environ-legis-part

List of [string]

organisation-email-fiscal-legis-part

List of [string]

BT-13713-LotResult

List of [string]

contract-nature-main-proc

String

organisation-country-tenderer

List of [string]

tool-url-part

List of [string]

touchpoint-street-revieworg-part

List of [string]

organisation-email-addinfo-part

List of [string]

organisation-tel-signatory

List of [string]

touchpoint-street-tender-receip-part

List of [string]

touchpoint-street-environ-legis-lot

List of [string]

organisation-country-sub-docprovider-lot

List of [string]

organisation-contact-point-signatory

List of [string]

missing-info-submission-description-lot

NoticeResponse_organisation_name_mediator_part

organisation-identifier-signatory

List of [string]

touchpoint-fax-environ-legis-lot

List of [string]

touchpoint-city-tender-eval-part

List of [string]

organisation-post-code-tender-eval-lot

List of [string]

BT-708-Lot

List of [string]

organisation-name-tender-receip-lot

NoticeResponse_organisation_name_mediator_part

change-previous-notice-section-identifier

List of [string]

jury-member-name-lot

List of [string]

organisation-contact-point-tenderer

List of [string]

organisation-internet-address-fiscal-legis-lot

List of [string]

ubo-fax

List of [string]

quality-target-description-lot

NoticeResponse_organisation_name_mediator_part

HA

String

OPT-150-LOT

List of [string]

touchpoint-internet-address-reviewinfo-part

List of [string]

touchpoint-country-mediator-part

List of [string]

touchpoint-country-signatory

List of [string]

reserved-execution-lot

List of [string]

predominance-lot

List of [string]

BT-636-LotResult

List of [string]

touchpoint-tel-employ-legis-lot

List of [string]

buyer-review-compainants-code

List of [string]

organisation-contact-point-fiscal-legis-part

List of [string]

selection-criterion-description-lot

NoticeResponse_organisation_name_mediator_part

contract-framework-agreement

List of [boolean]

touchpoint-city-buyer

List of [string]

variant-allowed-lot

List of [string]

additional-classification-proc

List of [string]

place-of-performance-country-proc

List of [string]

BT-768-Contract

List of [boolean]

touchpoint-fax-paying

List of [string]

framework-agreement-part

List of [string]

place-of-performance-post-code-proc

List of [string]

touchpoint-fax-addinfo-part

List of [string]

touchpoint-internet-address-ted-esen

List of [string]

IA

List of [string]

buyer-gateway

List of [string]

BT-47-Lot

List of [string]

organisation-fax-tender-eval-part

List of [string]

contract-duration-end-date-lot

List of [string]

ubo-street

List of [string]

jury-decision-binding-lot

List of [boolean]

BT-5423-LotsGroup

List of [string]

BT-635-LotResult

List of [float]

float

OPP-123-Business

String

BT-777-Lot

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-fiscal-legis-part

List of [string]

framework-agreement-lot

List of [string]

BT-734-Lot

NoticeResponse_organisation_name_mediator_part

organisation-street-mediator-part

List of [string]

touchpoint-email-ted-esen

List of [string]

document-restricted-part

List of [string]

selection-criteria-second-stage-invite-lot

List of [boolean]

touchpoint-email-tender-receip-lot

List of [string]

touchpoint-city-addinfo-part

List of [string]

BT-98-Lot

List of [NoticeResponse_BT_36_Lot_inner]

BT-19-Lot

List of [string]

BT-726-Part

List of [boolean]

BT-1252-Procedure

List of [string]

direct-award-justification-previous-procedure-identifier-proct

List of [string]

organisation-email-reviewinfo-part

List of [string]

BT-127-notice

String

organisation-person-tender-eval-part

List of [boolean]

touchpoint-tel-financing

List of [string]

organisation-city-addinfo-part

List of [string]

BT-610-Procedure-Buyer

List of [string]

BT-01(c)-procedure

List of [string]

organisation-country-tender-eval-part

List of [string]

BT-132(d)-Lot

List of [string]

winner-post-code

List of [string]

organisation-country-reviewinfo-lot

List of [string]

organisation-partname-docprovider-lot

List of [string]

change-procurement-documents

List of [boolean]

touchpoint-street-fiscal-legis-lot

List of [string]

touchpoint-email-docprovider-lot

List of [string]

buyer-touchpoint-partname

List of [string]

BT-5422-LotsGroup

List of [string]

registration-date

String

organisation-person-tender-receip-part

List of [boolean]

touchpoint-gateway-mediator-lot

List of [string]

BT-01-notice

String

BT-27-Part

List of [float]

float

touchpoint-street-serv-prov

List of [string]

framework-estimated-value-glo

List of [float]

float

organisation-post-code-mediator-lot

List of [string]

organisation-name-addinfo-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-internet-address-docprovider-part

List of [string]

touchpoint-name-environ-legis-lot

NoticeResponse_organisation_name_mediator_part

organisation-partname-revieworg-part

List of [string]

touchpoint-internet-address-addinfo-lot

List of [string]

organisation-identifier-docprovider-lot

List of [string]

publication-date

List of [string]

selection-criterion-name-lot

NoticeResponse_organisation_name_mediator_part

BT-736-Part

List of [string]

BT-554-Tender

NoticeResponse_organisation_name_mediator_part

business-email

String

buyer-email

List of [string]

legal-basis-text

NoticeResponse_organisation_name_mediator_part

OPP-011-notice

String

subcontracting-percentage

List of [float]

float

subcontracting-allowed-lot

List of [string]

BT-05(a)-notice

String

organisation-email-paying

List of [string]

touchpoint-street-tender-receip-lot

List of [string]

BT-5131-Lot

List of [string]

modification-previous-notice-identifier

List of [string]

BT-769-Lot

List of [string]

touchpoint-country-tender-eval-lot

List of [string]

significance-lot

List of [string]

organisation-partname-addinfo-lot

List of [string]

touchpoint-street-docprovider-part

List of [string]

organisation-identifier-tenderer

List of [string]

BT-726-Lot

List of [boolean]

touchpoint-city-tenderer

List of [string]

touchpoint-street-environ-legis-part

List of [string]

touchpoint-tel-reviewinfo-part

List of [string]

award-criterion-number-weight-glo

List of [string]

touchpoint-contact-point-buyer

List of [string]

touchpoint-post-code-reviewinfo-lot

List of [string]

vehicle-type

List of [string]

contract-nature-add-proc

List of [string]

touchpoint-country-sub-docprovider-lot

List of [string]

estimated-value-glo

List of [float]

float

buyer-touchpoint-post-code

List of [string]

tender-rank

List of [long]

int64

organisation-post-code-tenderer

List of [string]

BT-634-Lot

List of [boolean]

tool-name-part

List of [string]

buyer-profile

List of [string]

winner-country

List of [string]

organisation-name-reviewinfo-part

NoticeResponse_organisation_name_mediator_part

touchpoint-city-mediator-part

List of [string]

touchpoint-partname-addinfo-lot

List of [string]

winner-country-sub

List of [string]

requirement-stage-lot

List of [string]

deadline-time-part

List of [string]

MA

List of [string]

organisation-country-sub-mediator-lot

List of [string]

organisation-fax-fiscal-legis-lot

List of [string]

touchpoint-contact-point-revieworg-lot

List of [string]

BT-88-Procedure

NoticeResponse_BT_09_b__Procedure

touchpoint-email-tender-eval-lot

List of [string]

BT-632-Lot

List of [string]

ojs-number

String

BT-733-Lot

NoticeResponse_organisation_name_mediator_part

links

NoticeResponse_links

organisation-person-financing

List of [boolean]

organisation-post-code-revieworg-part

List of [string]

business-city

String

BT-54-lot

NoticeResponse_organisation_name_mediator_part

organisation-person-environ-legis-part

List of [boolean]

organisation-tel-docprovider-lot

List of [string]

touchpoint-tel-buyer

List of [string]

organisation-fax-revieworg-part

List of [string]

organisation-tel-mediator-part

List of [string]

place-of-performance-country-part

List of [string]

BT-728-Part

NoticeResponse_organisation_name_mediator_part

organisation-person-serv-prov

List of [boolean]

organisation-name-serv-prov

NoticeResponse_organisation_name_mediator_part

organisation-post-code-signatory

List of [string]

touchpoint-fax-docprovider-part

List of [string]

touchpoint-street-reviewinfo-part

List of [string]

BT-60-Lot

List of [string]

renewal-maximum-lot

List of [long]

int64

touchpoint-internet-address-revieworg-part

List of [string]

BT-13716-notice

List of [string]

organisation-name-revieworg-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-tender-eval-part

List of [string]

BT-21-Procedure

NoticeResponse_BT_09_b__Procedure

deadline-receipt-request-time-lot

List of [string]

identifier-glo

List of [string]

ubo-country

List of [string]

gpa-lot

List of [boolean]

organisation-street-revieworg-lot

List of [string]

touchpoint-fax-employ-legis-part

List of [string]

NC

List of [string]

organisation-name-financing

NoticeResponse_organisation_name_mediator_part

ND

String

touchpoint-internet-address-tender-eval-lot

List of [string]

touchpoint-country-sub-employ-legis-part

List of [string]

BT-97-Lot

List of [string]

NL

Integer

int32

accessibility-justification-lot

NoticeResponse_organisation_name_mediator_part

security-clearence-deadline-lot

List of [string]

title-part

NoticeResponse_organisation_name_mediator_part

touchpoint-street-addinfo-part

List of [string]

touchpoint-tel-employ-legis-part

List of [string]

deadline-receipt-expressions-time-lot

List of [string]

touchpoint-fax-fiscal-legis-lot

List of [string]

BT-05(b)-notice

String

organisation-person-tender-receip-lot

List of [boolean]

organisation-fax-mediator-lot

List of [string]

organisation-partname-tender-eval-lot

List of [string]

touchpoint-tel-paying

List of [string]

winner-touchpoint-gateway

List of [string]

organisation-country-sub-employ-legis-part

List of [string]

touchpoint-gateway-subcontractor

List of [string]

OJ

String

OPP-105-Business

List of [string]

eu-funds-name

List of [string]

OL

List of [string]

organisation-fax-fiscal-legis-part

List of [string]

organisation-fax-tenderer

List of [string]

business-identifier

List of [string]

place-of-performance

List of [string]

public-opening-place-lot

NoticeResponse_organisation_name_mediator_part

organisation-email-signatory

List of [string]

organisation-contact-point-financing

List of [string]

tender-value-cur-highest

List of [string]

organisation-fax-addinfo-lot

List of [string]

touchpoint-country-ted-esen

List of [string]

BT-776-Lot

List of [string]

touchpoint-contact-point-docprovider-part

List of [string]

buyer-legal-type

List of [string]

organisation-city-tender-receip-part

List of [string]

BT-27-Lot

List of [float]

float

touchpoint-contact-point-fiscal-legis-lot

List of [string]

additional-classification-part

List of [string]

touchpoint-city-docprovider-lot

List of [string]

PC

List of [string]

organisation-fax-serv-prov

List of [string]

organisation-fax-buyer

List of [string]

PD

List of [string]

organisation-country-revieworg-lot

List of [string]

organisation-country-fiscal-legis-lot

List of [string]

organisation-tel-environ-legis-lot

List of [string]

touchpoint-gateway-fiscal-legis-lot

List of [string]

BT-615-Part

List of [string]

organisation-country-docprovider-part

List of [string]

touchpoint-gateway-docprovider-part

List of [string]

organisation-tel-tender-eval-lot

List of [string]

BT-727-Lot

List of [string]

BT-11-Procedure-Buyer

List of [string]

touchpoint-street-buyer

List of [string]

change-reason-code

String

organisation-gateway-ted-esen

List of [string]

recurrence-lot

List of [boolean]

BT-727-Procedure

List of [string]

PR

String

contract-conclusion-date

List of [string]

subcontracting-percentage-ind

List of [boolean]

place-of-performance-city-part

List of [string]

change-description

NoticeResponse_organisation_name_mediator_part

touchpoint-street-paying

List of [string]

organisation-country-addinfo-part

List of [string]

strategic-procurement-description-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-fiscal-legis-part

List of [string]

organisation-identifier-mediator-lot

List of [string]

BT-24-Part

NoticeResponse_organisation_name_mediator_part

BT-543-LotsGroup

NoticeResponse_organisation_name_mediator_part

BT-767-Lot

List of [boolean]

electronic-signature-lot

List of [string]

organisation-email-employ-legis-part

List of [string]

OPP-023-Contract

List of [string]

organisation-fax-employ-legis-part

List of [string]

subcontracting-obligation-lot

List of [string]

organisation-person-reviewinfo-part

List of [boolean]

subcontracting-description

NoticeResponse_organisation_name_mediator_part

touchpoint-country-sub-revieworg-lot

List of [string]

submission-nonelectronic-lot

List of [string]

touchpoint-country-sub-tender-eval-part

List of [string]

touchpoint-partname-reviewinfo-part

List of [string]

organisation-fax-environ-legis-lot

List of [string]

organisation-email-environ-legis-lot

List of [string]

title-proc

NoticeResponse_BT_09_b__Procedure

organisation-contact-point-employ-legis-lot

List of [string]

organisation-identifier-financing

List of [string]

touchpoint-contact-point-tenderer

List of [string]

award-criterion-number-weight-lot

List of [string]

BT-737-Part

List of [string]

eu-registration-number

String

RC

List of [string]

organisation-tel-docprovider-part

List of [string]

touchpoint-contact-point-paying

List of [string]

public-opening-date-lot

List of [string]

touchpoint-internet-address-mediator-lot

List of [string]

touchpoint-city-employ-legis-lot

List of [string]

touchpoint-internet-address-reviewinfo-lot

List of [string]

RN

String

RP

String

organisation-country-sub-addinfo-lot

List of [string]

touchpoint-partname-docprovider-lot

List of [string]

contract-duration-period-oth-part

List of [string]

organisation-city-docprovider-part

List of [string]

organisation-country-mediator-part

List of [string]

organisation-contact-point-mediator-lot

List of [string]

organisation-fax-reviewinfo-part

List of [string]

registration-place-postcode

String

touchpoint-email-serv-prov

List of [string]

BT-630(t)-Lot

List of [string]

touchpoint-country-paying

List of [string]

touchpoint-post-code-tender-eval-part

List of [string]

concession-revenue-buyer

List of [float]

float

touchpoint-fax-tender-eval-part

List of [string]

renewal-description-lot

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-tender-receip-lot

List of [string]

BT-124-Lot

List of [string]

BT-751-Lot

List of [string]

touchpoint-tel-addinfo-part

List of [string]

registration-place-town

String

BT-13(d)-Part

List of [string]

organisation-name-docprovider-part

NoticeResponse_organisation_name_mediator_part

organisation-contact-point-reviewinfo-part

List of [string]

organisation-post-code-mediator-part

List of [string]

deadline-receipt-request

List of [string]

BT-136-Procedure

List of [string]

BT-140-notice

String

touchpoint-country-sub-subcontractor

List of [string]

organisation-street-tender-receip-part

List of [string]

organisation-country-serv-prov

List of [string]

touchpoint-partname-tender-receip-part

List of [string]

touchpoint-tel-signatory

List of [string]

organisation-street-revieworg-part

List of [string]

BT-64-Lot

List of [float]

float

organisation-post-code-addinfo-lot

List of [string]

BT-708-Part

List of [string]

revenues-allocation-lot

List of [float]

float

organisation-country-sub-tender-eval-lot

List of [string]

touchpoint-street-tender-eval-lot

List of [string]

touchpoint-street-addinfo-lot

List of [string]

TD

String

document-restricted-url-lot

List of [string]

place-of-performance-country-lot

List of [string]

contract-duration-start-date-part

List of [string]

organisation-internet-address-revieworg-part

List of [string]

classification-cpv

List of [string]

TI

NoticeResponse_BT_09_b__Procedure

touchpoint-street-fiscal-legis-part

List of [string]

BT-23-Procedure

String

ecatalog-allowed-lot

List of [string]

organisation-city-environ-legis-part

List of [string]

organisation-gateway-addinfo-lot

List of [string]

BT-508-Procedure-Buyer

List of [string]

BT-632-Part

List of [string]

TV

Float

float

TW

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-reviewinfo-part

List of [string]

TY

String

csecurity-clearance-description-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-contact-point-tender-receip-part

List of [string]

organisation-person-fiscal-legis-lot

List of [boolean]

multiple-tender-lot

List of [string]

organisation-tel-ted-esen

List of [string]

BT-5421-Lot

List of [string]

organisation-tel-tender-receip-lot

List of [string]

organisation-partname-employ-legis-lot

List of [string]

change-reason-description

NoticeResponse_BT_09_b__Procedure

organisation-fax-paying

List of [string]

BT-141(a)-notice

NoticeResponse_organisation_name_mediator_part

additional-info-proc

NoticeResponse_BT_09_b__Procedure

touchpoint-name-employ-legis-part

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-addinfo-part

List of [string]

BT-95-Lot

NoticeResponse_organisation_name_mediator_part

dps-usage-lot

List of [string]

place-of-performance-other-lot

List of [string]

BT-202-Contract

NoticeResponse_organisation_name_mediator_part

touchpoint-country-sub-paying

List of [string]

BT-21-LotsGroup

NoticeResponse_organisation_name_mediator_part

OPT-155-LotResult

List of [string]

organisation-country-sub-environ-legis-part

List of [string]

BT-79-Lot

List of [string]

direct-award-justification-proc

List of [string]

touchpoint-city-tender-receip-lot

List of [string]

touchpoint-country-sub-serv-prov

List of [string]

organisation-internet-address-tender-eval-lot

List of [string]

organisation-person-docprovider-lot

List of [boolean]

organisation-post-code-ted-esen

List of [string]

competition-termination-proc

Boolean

contract-conditions-code-lot

List of [string]

touchpoint-country-sub-reviewinfo-lot

List of [string]

BT-15-Part

List of [string]

BT-758-notice

String

cross-border-law-identifier-proc

String

organisation-person-fiscal-legis-part

List of [boolean]

touchpoint-country-tender-eval-part

List of [string]

result-value-notice

Float

float

BT-736-Lot

List of [string]

ubo-city

List of [string]

organisation-contact-point-revieworg-part

List of [string]

BT-752-Lot

List of [float]

float

framework-value-cur-notice

String

touchpoint-country-tenderer

List of [string]

organisation-post-code-revieworg-lot

List of [string]

BT-133-Lot

NoticeResponse_organisation_name_mediator_part

organisation-country-signatory

List of [string]

touchpoint-post-code-revieworg-part

List of [string]

organisation-country-paying

List of [string]

organisation-partname-signatory

List of [string]

touchpoint-internet-address-addinfo-part

List of [string]

procedure-justification

NoticeResponse_BT_09_b__Procedure

official-language

List of [string]

BT-756-Procedure

Boolean

eu-fund-lot

List of [string]

BT-03-notice

String

touchpoint-name-signatory

NoticeResponse_organisation_name_mediator_part

winner-touchpoint-post-code

List of [string]

contract-duration-end-date-part

List of [string]

BT-123-Lot

List of [string]

touchpoint-post-code-fiscal-legis-lot

List of [string]

TV_CUR

List of [string]

touchpoint-post-code-tenderer

List of [string]

innovative-acquisition-lot

List of [string]

organisation-identifier-revieworg-lot

List of [string]

organisation-country-environ-legis-part

List of [string]

BT-67(b)-Procedure

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-mediator-lot

List of [string]

deadline-receipt-expressions-date-lot

List of [string]

touchpoint-internet-address-buyer

List of [string]

BT-145-Contract

List of [string]

touchpoint-email-buyer

List of [string]

organisation-gateway-employ-legis-lot

List of [string]

touchpoint-country-fiscal-legis-lot

List of [string]

document-restricted-lot

List of [string]

touchpoint-street-financing

List of [string]

BT-27-LotsGroup

List of [float]

float

framework-maximum-participants-number-lot

List of [long]

int64

award-criteria-order-justification

NoticeResponse_organisation_name_mediator_part

tool-atypical-url-lot

List of [string]

organisation-street-mediator-lot

List of [string]

organisation-internet-address-employ-legis-lot

List of [string]

BT-5141-Procedure

List of [string]

organisation-contact-point-docprovider-lot

List of [string]

BT-63-Lot

List of [string]

touchpoint-email-reviewinfo-lot

List of [string]

touchpoint-partname-revieworg-part

List of [string]

organisation-fax-docprovider-lot

List of [string]

touchpoint-tel-mediator-lot

List of [string]

OPP-032-Tender

List of [float]

float

organisation-post-code-subcontractor

List of [string]

BT-707-Part

List of [string]

procedure-features

NoticeResponse_BT_09_b__Procedure

touchpoint-country-mediator-lot

List of [string]

BT-538-Part

List of [string]

touchpoint-post-code-tender-receip-lot

List of [string]

BT-105-Procedure

String

BT-765-Lot

List of [string]

organisation-city-reviewinfo-lot

List of [string]

organisation-gateway-environ-legis-part

List of [string]

organisation-identifier-paying

List of [string]

organisation-street-addinfo-lot

List of [string]

assets-related-contract-extension-indicator-lot

List of [boolean]

BT-137-Lot

List of [string]

business-country-sub

String

security-clearance-lot

List of [string]

organisation-identifier-addinfo-lot

List of [string]

touchpoint-name-paying

NoticeResponse_organisation_name_mediator_part

organisation-post-code-tender-eval-part

List of [string]

touchpoint-country-sub-tender-receip-part

List of [string]

organisation-name-signatory

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-addinfo-part

List of [string]

touchpoint-name-tender-eval-part

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-employ-legis-lot

List of [string]

BT-660-LotResult

List of [float]

float

organisation-country-sub-fiscal-legis-part

List of [string]

touchpoint-partname-reviewinfo-lot

List of [string]

touchpoint-contact-point-tender-eval-lot

List of [string]

touchpoint-fax-addinfo-lot

List of [string]

organisation-city-fiscal-legis-part

List of [string]

BT-122-Lot

NoticeResponse_organisation_name_mediator_part

touchpoint-country-tender-receip-lot

List of [string]

organisation-contact-point-employ-legis-part

List of [string]

organisation-email-environ-legis-part

List of [string]

touchpoint-gateway-docprovider-lot

List of [string]

BT-501-Business-European

String

organisation-fax-subcontractor

List of [string]

BT-262-Lot

List of [string]

OPP-040-Procedure

List of [string]

BT-5422-Lot

List of [string]

organisation-person-tenderer

List of [boolean]

touchpoint-city-signatory

List of [string]

organisation-country-sub-buyer

List of [string]

buyer-touchpoint-city

List of [string]

BT-24-Lot

NoticeResponse_organisation_name_mediator_part

main-classification-lot

List of [string]

touchpoint-city-financing

List of [string]

touchpoint-contact-point-addinfo-part

List of [string]

organisation-partname-fiscal-legis-part

List of [string]

BT-109-Lot

NoticeResponse_organisation_name_mediator_part

organisation-gateway-employ-legis-part

List of [string]

organisation-street-tender-eval-lot

List of [string]

touchpoint-partname-serv-prov

List of [string]

BT-21-Part

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-mediator-lot

List of [string]

organisation-tel-paying

List of [string]

organisation-identifier-mediator-part

List of [string]

organisation-partname-ted-esen

List of [string]

buyer-touchpoint-contact-point

List of [string]

organisation-street-reviewinfo-part

List of [string]

dispatch-time

String

organisation-internet-address-mediator-part

List of [string]

organisation-partname-reviewinfo-part

List of [string]

organisation-street-fiscal-legis-part

List of [string]

BT-701-notice

String

organisation-identifier-environ-legis-lot

List of [string]

organisation-identifier-serv-prov

List of [string]

BT-157-LotsGroup

List of [float]

float

BT-737-Lot

List of [string]

organisation-email-mediator-part

List of [string]

touchpoint-city-addinfo-lot

List of [string]

touchpoint-city-mediator-lot

List of [string]

business-tel

String

organisation-fax-tender-eval-lot

List of [string]

organisation-city-buyer

List of [string]

organisation-gateway-environ-legis-lot

List of [string]

organisation-name-revieworg-part

NoticeResponse_organisation_name_mediator_part

organisation-gateway-paying

List of [string]

funding

List of [string]

issue-date

String

BT-51-Lot

List of [long]

int64

touchpoint-tel-fiscal-legis-lot

List of [string]

business-contact-point

String

touchpoint-street-employ-legis-lot

List of [string]

contract-nature-add-lot

List of [string]

BT-106-Procedure

String

estimated-value-cur-proc

String

BT-94-Lot

List of [boolean]

buyer-person

List of [boolean]

quality-target-code-lot

List of [string]

organisation-fax-revieworg-lot

List of [string]

OPP-121-Business

String

BT-536-Lot

List of [string]

touchpoint-country-sub-tenderer

List of [string]

touchpoint-fax-tender-receip-lot

List of [string]

organisation-internet-address-tender-receip-part

List of [string]

OPP-030-Tender

List of [string]

BT-163-Tender

NoticeResponse_organisation_name_mediator_part

submission-nonelectronic-description-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-internet-address-employ-legis-lot

List of [string]

BT-27-Procedure

Float

float

additional-information-lot

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-subcontractor

List of [string]

BT-766-Lot

List of [string]

BT-537-Lot

List of [string]

winner-gateway

List of [string]

organisation-city-revieworg-part

List of [string]

BT-722-Contract

List of [string]

touchpoint-city-reviewinfo-part

List of [string]

result-value-lot

List of [float]

float

touchpoint-country-sub-fiscal-legis-lot

List of [string]

organisation-contact-point-addinfo-part

List of [string]

organisation-tel-environ-legis-part

List of [string]

kilometer-public-transport

List of [long]

int64

authority-main-activity

List of [string]

title-glo

NoticeResponse_organisation_name_mediator_part

OPP-080-Tender

List of [long]

int64

winner-person

List of [boolean]

organisation-country-sub-signatory

List of [string]

organisation-country-ted-esen

List of [string]

touchpoint-street-ted-esen

List of [string]

BT-263-Lot

List of [string]

touchpoint-name-environ-legis-part

NoticeResponse_organisation_name_mediator_part

organisation-gateway-mediator-part

List of [string]

selection-criterion-used-lot

List of [string]

BT-5071-Part

List of [string]

estimated-value-cur-lot

List of [string]

touchpoint-street-signatory

List of [string]

organisation-country-employ-legis-part

List of [string]

organisation-post-code-reviewinfo-part

List of [string]

organisation-internet-address-docprovider-lot

List of [string]

BT-191-Tender

List of [string]

concession-value-description

NoticeResponse_organisation_name_mediator_part

BT-5423-Lot

List of [string]

organisation-identifier-environ-legis-part

List of [string]

subcontracting-obligation-minimum-lot

List of [float]

float

touchpoint-fax-mediator-lot

List of [string]

organisation-fax-environ-legis-part

List of [string]

accessibility-lot

List of [string]

BT-23-Lot

List of [string]

organisation-post-code-serv-prov

List of [string]

BT-531-Part

List of [string]

BT-5121-Lot

List of [string]

subcontracting-indication-lot

List of [string]

electronic-submission-lot

List of [string]

notice-version

Integer

int32

touchpoint-internet-address-environ-legis-lot

List of [string]

organisation-identifier-revieworg-part

List of [string]

award-criterion-number-threshold-lot

List of [string]

document-restricted-justification

List of [string]

touchpoint-name-mediator-part

NoticeResponse_organisation_name_mediator_part

organisation-fax-mediator-part

List of [string]

touchpoint-name-ted-esen

NoticeResponse_organisation_name_mediator_part

touchpoint-fax-ted-esen

List of [string]

touchpoint-tel-tenderer

List of [string]

touchpoint-email-tender-eval-part

List of [string]

organisation-post-code-fiscal-legis-part

List of [string]

organisation-post-code-environ-legis-part

List of [string]

award-criterion-type-glo

List of [string]

winner-email

List of [string]

organisation-street-paying

List of [string]

place-of-performance-post-code-lot

List of [string]

ubo-name

List of [string]

BT-22-Lot

List of [string]

estimated-value-cur-part

List of [string]

BT-1351-Procedure

NoticeResponse_BT_09_b__Procedure

organisation-fax-employ-legis-lot

List of [string]

organisation-identifier-docprovider-part

List of [string]

buyer-post-code

List of [string]

BT-65-Lot

List of [string]

touchpoint-email-fiscal-legis-lot

List of [string]

framework-estimated-value-cur-glo

List of [string]

OPP-111-Business

String

touchpoint-tel-tender-eval-part

List of [string]

organisation-city-financing

List of [string]

BT-750-Lot

NoticeResponse_organisation_name_mediator_part

winner-touchpoint-partname

List of [string]

organisation-city-tenderer

List of [string]

organisation-country-sub-paying

List of [string]

touchpoint-tel-fiscal-legis-part

List of [string]

organisation-name-tender-receip-part

NoticeResponse_organisation_name_mediator_part

lots-all-required-proc

String

organisation-internet-address-revieworg-lot

List of [string]

touchpoint-email-paying

List of [string]

touchpoint-name-fiscal-legis-lot

NoticeResponse_organisation_name_mediator_part

tender-value

List of [float]

float

BT-50-Lot

List of [long]

int64

organisation-partname-financing

List of [string]

BT-93-Lot

List of [boolean]

organisation-country-financing

List of [string]

document-official-language-lot

List of [string]

touchpoint-street-docprovider-lot

List of [string]

organisation-name-reviewinfo-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-email-signatory

List of [string]

organisation-gateway-financing

List of [string]

organisation-identifier-addinfo-part

List of [string]

submission-language

List of [string]

BT-762-notice

NoticeResponse_BT_09_b__Procedure

organisation-identifier-buyer

List of [string]

touchpoint-gateway-paying

List of [string]

additional-info-part

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-employ-legis-lot

List of [string]

BT-132(t)-Lot

List of [string]

BT-31-Procedure

Long

int64

winner-touchpoint-internet-address

List of [string]

organisation-city-tender-receip-lot

List of [string]

touchpoint-gateway-tender-eval-lot

List of [string]

BT-10-Procedure-Buyer

List of [string]

BT-1501(p)-Contract

List of [string]

OPP-122-Business

String

modification-description

NoticeResponse_organisation_name_mediator_part

BT-120-Lot

List of [boolean]

BT-759-LotResult

List of [float]

float

touchpoint-contact-point-docprovider-lot

List of [string]

touchpoint-partname-environ-legis-lot

List of [string]

organisation-street-reviewinfo-lot

List of [string]

organisation-gateway-subcontractor

List of [string]

touchpoint-city-serv-prov

List of [string]

organisation-contact-point-tender-receip-lot

List of [string]

touchpoint-country-sub-revieworg-part

List of [string]

dispatch-invitation-tender-lot

List of [string]

touchpoint-name-revieworg-part

NoticeResponse_organisation_name_mediator_part

organisation-post-code-tender-receip-part

List of [string]

organisation-name-buyer

NoticeResponse_organisation_name_mediator_part

organisation-street-financing

List of [string]

BT-24-LotsGroup

NoticeResponse_organisation_name_mediator_part

BT-13(d)-Lot

List of [string]

organisation-contact-point-environ-legis-part

List of [string]

touchpoint-email-addinfo-lot

List of [string]

organisation-contact-point-buyer

List of [string]

organisation-contact-point-tender-eval-lot

List of [string]

BT-171-Tender

List of [long]

int64

organisation-internet-address-paying

List of [string]

BT-747-Lot

List of [string]

touchpoint-country-environ-legis-part

List of [string]

business-post-code

String

touchpoint-city-subcontractor

List of [string]

touchpoint-tel-tender-receip-part

List of [string]

touchpoint-country-environ-legis-lot

List of [string]

BT-771-Lot

List of [string]

BT-537-Part

List of [string]

lots-max-awarded-proc

Long

int64

organisation-city-employ-legis-lot

List of [string]

announcement-title

String

organisation-country-sub-serv-prov

List of [string]

BT-06-Lot

List of [string]

touchpoint-post-code-tender-receip-part

List of [string]

organisation-person-revieworg-part

List of [boolean]

organisation-country-sub-mediator-part

List of [string]

additional-information

NoticeResponse_BT_09_b__Procedure

modification-part-reference

List of [string]

winner-touchpoint-country

List of [string]

organisation-identifier-tender-receip-lot

List of [string]

organisation-identifier-tender-receip-part

List of [string]

touchpoint-email-fiscal-legis-part

List of [string]

BT-160-Tender

List of [float]

float

BT-92-Lot

List of [boolean]

winner-touchpoint-country-sub

List of [string]

organisation-tel-employ-legis-lot

List of [string]

BT-161-NoticeResult

Float

float

BT-02-notice

String

organisation-gateway-tender-eval-part

List of [string]

touchpoint-gateway-tender-receip-lot

List of [string]

touchpoint-internet-address-revieworg-lot

List of [string]

framework-estimated-value

List of [float]

float

BT-531-Lot

List of [string]

internal-identifier-part

List of [string]

exclusion-grounds

List of [string]

organisation-email-reviewinfo-lot

List of [string]

winner-contact-point

List of [string]

organisation-partname-tender-receip-lot

List of [string]

estimated-value-proc

Float

float

touchpoint-email-environ-legis-part

List of [string]

deadline

List of [string]

description-part

NoticeResponse_organisation_name_mediator_part

touchpoint-country-subcontractor

List of [string]

touchpoint-tel-revieworg-lot

List of [string]

touchpoint-country-sub-fiscal-legis-part

List of [string]

BT-21-Lot

NoticeResponse_organisation_name_mediator_part

place-of-performance-other-part

List of [string]

touchpoint-city-paying

List of [string]

touchpoint-name-revieworg-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-email-subcontractor

List of [string]

BT-14-Part

List of [string]

notice-purpose

String

winner-size

List of [string]

buyer-touchpoint-country-sub

List of [string]

organisation-gateway-revieworg-part

List of [string]

organisation-gateway-serv-prov

List of [string]

organisation-street-tender-receip-lot

List of [string]

result-value-cur-notice

String

organisation-internet-address-tenderer

List of [string]

reserved-execution-part

List of [string]

BT-757-notice

Integer

int32

place-of-performance-additional-part

NoticeResponse_organisation_name_mediator_part

BT-539-LotsGroup

List of [string]

organisation-name-addinfo-part

NoticeResponse_organisation_name_mediator_part

touchpoint-internet-address-tender-receip-lot

List of [string]

organisation-person-buyer

List of [boolean]

organisation-partname-serv-prov

List of [string]

touchpoint-name-serv-prov

NoticeResponse_organisation_name_mediator_part

BT-263-Part

List of [string]

non-award-justification

List of [string]

award-criterion-number-fixed-lot

List of [string]

procedure-identifier

String

touchpoint-internet-address-docprovider-lot

List of [string]

touchpoint-email-tender-receip-part

List of [string]

organisation-contact-point-fiscal-legis-lot

List of [string]

gpa-part

List of [boolean]

organisation-name-paying

NoticeResponse_organisation_name_mediator_part

tool-name-lot

List of [string]

touchpoint-partname-tender-eval-lot

List of [string]

touchpoint-post-code-employ-legis-lot

List of [string]

BT-111-Lot

NoticeResponse_organisation_name_mediator_part

organisation-country-sub-revieworg-lot

List of [string]

organisation-country-sub-ted-esen

List of [string]

BT-578-Lot

List of [string]

organisation-street-docprovider-lot

List of [string]

BT-764-Lot

List of [string]

group-framework-value-cur-notice

List of [string]

touchpoint-contact-point-signatory

List of [string]

ubo-country-sub

List of [string]

identifier-lot

List of [string]

organisation-name-employ-legis-lot

NoticeResponse_organisation_name_mediator_part

BT-540-LotsGroup

NoticeResponse_organisation_name_mediator_part

touchpoint-country-sub-mediator-lot

List of [string]

OPP-012-notice

List of [string]

place-of-performance-subdiv-lot

List of [string]

subcontracting

List of [string]

winner-touchpoint-contact-point

List of [string]

estimated-value-lot

List of [float]

float

procedure-accelerated

String

award-criterion-type-lot

List of [string]

touchpoint-country-sub-addinfo-part

List of [string]

touchpoint-city-environ-legis-lot

List of [string]

touchpoint-country-tender-receip-part

List of [string]

BT-193-Tender

List of [boolean]

description-lot

NoticeResponse_organisation_name_mediator_part

organisation-country-sub-reviewinfo-part

List of [string]

tender-value-highest

List of [float]

float

organisation-email-employ-legis-lot

List of [string]

organisation-city-mediator-part

List of [string]

organisation-contact-point-mediator-part

List of [string]

touchpoint-fax-tenderer

List of [string]

touchpoint-name-buyer

NoticeResponse_organisation_name_mediator_part

organisation-gateway-signatory

List of [string]

guarantee-required-description-lot

NoticeResponse_organisation_name_mediator_part

organisation-street-fiscal-legis-lot

List of [string]

additional-classification-lot

List of [string]

BT-5071-Procedure

List of [string]

organisation-partname-addinfo-part

List of [string]

organisation-name-tender-eval-part

NoticeResponse_organisation_name_mediator_part

organisation-contact-point-docprovider-part

List of [string]

organisation-identifier-reviewinfo-lot

List of [string]

organisation-name-mediator-lot

NoticeResponse_organisation_name_mediator_part

organisation-country-reviewinfo-part

List of [string]

award-criterion-description-glo

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-reviewinfo-lot

List of [string]

sme-lot

List of [boolean]

organisation-partname-tender-receip-part

List of [string]

touchpoint-name-tender-eval-lot

NoticeResponse_organisation_name_mediator_part

BT-1375-Procedure

List of [string]

organisation-street-tender-eval-part

List of [string]

BT-728-Procedure

NoticeResponse_organisation_name_mediator_part

touchpoint-post-code-serv-prov

List of [string]

organisation-country-sub-reviewinfo-lot

List of [string]

touchpoint-internet-address-mediator-part

List of [string]

legal-basis

List of [string]

OPP-113-Business-European

String

touchpoint-country-docprovider-lot

List of [string]

BT-719-notice

List of [string]

organisation-gateway-docprovider-part

List of [string]

electronic-invoicing-lot

List of [string]

buyer-country

List of [string]

BT-5421-LotsGroup

List of [string]

BT-14-Lot

List of [string]

OPP-020-Contract

List of [boolean]

buyer-contracting-entity

List of [string]

electronic-auction-description-lot

NoticeResponse_organisation_name_mediator_part

award-criterion-order-justification-lot

NoticeResponse_organisation_name_mediator_part

organisation-email-revieworg-lot

List of [string]

organisation-street-tenderer

List of [string]

procedure-type

String

organisation-internet-address-addinfo-part

List of [string]

organisation-internet-address-environ-legis-lot

List of [string]

organisation-gateway-fiscal-legis-lot

List of [string]

place-of-performance-other-proc

List of [string]

recurrence-description-lot

NoticeResponse_organisation_name_mediator_part

organisation-email-tender-eval-part

List of [string]

touchpoint-gateway-employ-legis-part

List of [string]

BT-749-Lot

NoticeResponse_organisation_name_mediator_part

organisation-country-sub-financing

List of [string]

touchpoint-contact-point-mediator-lot

List of [string]

award-criterion-name-glo

NoticeResponse_organisation_name_mediator_part

selection-criteria-second-stage-invite-number-lot

List of [float]

float

organisation-identifier-employ-legis-lot

List of [string]

BT-5131-Procedure

List of [string]

touchpoint-internet-address-signatory

List of [string]

touchpoint-gateway-buyer

List of [string]

organisation-city-docprovider-lot

List of [string]

contract-duration-period-lot

List of [NoticeResponse_BT_36_Lot_inner]

organisation-identifier-subcontractor

List of [string]

organisation-country-sub-employ-legis-lot

List of [string]

winner-identifier

List of [string]

organisation-internet-address-buyer

List of [string]

used-assetlot

NoticeResponse_organisation_name_mediator_part

touchpoint-email-financing

List of [string]

organisation-email-ted-esen

List of [string]

organisation-contact-point-paying

List of [string]

touchpoint-city-tender-eval-lot

List of [string]

organisation-contact-point-tender-eval-part

List of [string]

organisation-city-employ-legis-part

List of [string]

touchpoint-contact-point-tender-receip-lot

List of [string]

BT-01(d)-procedure

NoticeResponse_organisation_name_mediator_part

concession-revenue-cur-buyer

List of [string]

BT-78-Lot

List of [string]

organisation-partname-employ-legis-part

List of [string]

dps-termination-lot

List of [boolean]

organisation-street-employ-legis-part

List of [string]

touchpoint-city-tender-receip-part

List of [string]

touchpoint-gateway-environ-legis-lot

List of [string]

organisation-email-fiscal-legis-lot

List of [string]

reserved-procurement-lot

List of [string]

estimated-value-part

List of [float]

float

touchpoint-tel-environ-legis-part

List of [string]

touchpoint-contact-point-financing

List of [string]

internal-identifier-proc

String

organisation-contact-point-reviewinfo-lot

List of [string]

organisation-internet-address-employ-legis-part

List of [string]

organisation-partname-paying

List of [string]

BT-540-Lot

NoticeResponse_organisation_name_mediator_part

BT-75-Lot

NoticeResponse_organisation_name_mediator_part

contract-nature-main-lot

List of [string]

subcontracting-obligation-maximum-lot

List of [float]

float

organisation-city-addinfo-lot

List of [string]

buyer-touchpoint-country

List of [string]

BT-40-Lot

List of [boolean]

document-official-language-part

List of [string]

OPP-070-notice

String

touchpoint-street-revieworg-lot

List of [string]

touchpoint-post-code-paying

List of [string]

touchpoint-post-code-ted-esen

List of [string]

framework-duration-justification-lot

NoticeResponse_organisation_name_mediator_part

organisation-country-environ-legis-lot

List of [string]

organisation-post-code-docprovider-lot

List of [string]

touchpoint-post-code-signatory

List of [string]

touchpoint-fax-tender-eval-lot

List of [string]

following-contract-lot

List of [boolean]

organisation-city-tender-eval-part

List of [string]

organisation-name-fiscal-legis-lot

NoticeResponse_organisation_name_mediator_part

organisation-partname-environ-legis-part

List of [string]

organisation-contact-point-tender-receip-part

List of [string]

change-notice-version-identifier

String

guarantee-required-lot

List of [string]

touchpoint-post-code-financing

List of [string]

activity-sector

List of [string]

document-restricted-url-part

List of [string]

organisation-country-sub-revieworg-part

List of [string]

organisation-partname-mediator-lot

List of [string]

touchpoint-country-addinfo-part

List of [string]

BT-130-Lot

List of [string]

announcement-url

String

notice-type

String

OPP-110-Business

String

organisation-gateway-mediator-lot

List of [string]

touchpoint-contact-point-subcontractor

List of [string]

touchpoint-tel-mediator-part

List of [string]

organisation-street-subcontractor

List of [string]

touchpoint-internet-address-employ-legis-part

List of [string]

touchpoint-country-sub-mediator-part

List of [string]

organisation-person-reviewinfo-lot

List of [boolean]

touchpoint-email-revieworg-part

List of [string]

SUB_LG

List of [string]

organisation-person-addinfo-lot

List of [boolean]

place-of-performance-add-proc

NoticeResponse_organisation_name_mediator_part

touchpoint-street-mediator-part

List of [string]

buyer-city

NoticeResponse_organisation_name_mediator_part

participant-name-lot

List of [string]

buyer-touchpoint-name

NoticeResponse_organisation_name_mediator_part

BT-1501(s)-Contract

List of [string]

organisation-country-revieworg-part

List of [string]

public-opening-description-lot

NoticeResponse_organisation_name_mediator_part

OPP-010-notice

String

missing-info-submission-lot

List of [string]

organisation-street-signatory

List of [string]

touchpoint-city-fiscal-legis-part

List of [string]

BT-09(a)-Procedure

String

BT-754-Lot

List of [string]

BT-748-Lot

List of [string]

organisation-name-ted-esen

NoticeResponse_organisation_name_mediator_part

BT-746-Organization

List of [boolean]

organisation-post-code-buyer

List of [string]

BT-115-Part

List of [boolean]

social-objective-lot

List of [string]

organisation-identifier-tender-eval-lot

List of [string]

touchpoint-contact-point-serv-prov

List of [string]

touchpoint-fax-docprovider-lot

List of [string]

tender-identifier

List of [string]

place-of-performance-subdiv-proc

List of [string]

touchpoint-name-financing

NoticeResponse_organisation_name_mediator_part

BT-201-Contract

NoticeResponse_organisation_name_mediator_part

organisation-city-tender-eval-lot

List of [string]

tender-validity-deadline-lot

List of [NoticeResponse_BT_36_Lot_inner]

touchpoint-email-tenderer

List of [string]

publication-number

String

touchpoint-email-mediator-lot

List of [string]

touchpoint-name-reviewinfo-part

NoticeResponse_organisation_name_mediator_part

contract-nature-subtype

List of [string]

BT-119-LotResult

List of [boolean]

organisation-country-tender-eval-lot

List of [string]

organisation-country-fiscal-legis-part

List of [string]

touchpoint-country-sub-tender-eval-lot

List of [string]

tender-value-cur-lowest

List of [string]

touchpoint-name-employ-legis-lot

NoticeResponse_organisation_name_mediator_part

BT-22-Procedure

String

organisation-name-subcontractor

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-signatory

List of [string]

organisation-country-addinfo-lot

List of [string]

winner-decision-date

List of [string]

organisation-fax-docprovider-part

List of [string]

BT-553-Tender

List of [float]

float

OPP-120-Business

String

BT-755-Lot

NoticeResponse_organisation_name_mediator_part

buyer-review-compainants-val

List of [float]

float

change-procurement-documents-date

List of [string]

touchpoint-partname-employ-legis-part

List of [string]

touchpoint-country-sub-employ-legis-lot

List of [string]

prize-rank-lot

List of [long]

int64

organisation-email-tender-receip-lot

List of [string]

BT-22-Part

List of [string]

place-of-performance-city-proc

List of [string]

touchpoint-gateway-tenderer

List of [string]

dispatch-invitation-interest-lot

List of [string]

buyer-touchpoint-email

List of [string]

BT-706-UBO

List of [string]

organisation-contact-point-environ-legis-lot

List of [string]

organisation-name-fiscal-legis-part

NoticeResponse_organisation_name_mediator_part

ubo-tel

List of [string]

organisation-gateway-tender-receip-lot

List of [string]

BT-131(d)-Lot

List of [string]

organisation-identifier-employ-legis-part

List of [string]

touchpoint-post-code-reviewinfo-part

List of [string]

organisation-internet-address-reviewinfo-part

List of [string]

touchpoint-country-employ-legis-part

List of [string]

description-proc

NoticeResponse_BT_09_b__Procedure

touchpoint-post-code-addinfo-part

List of [string]

organisation-name-tender-eval-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-email-employ-legis-part

List of [string]

organisation-tel-addinfo-lot

List of [string]

TVH

List of [float]

float

organisation-tel-revieworg-lot

List of [string]

TVL

List of [float]

float

touchpoint-partname-signatory

List of [string]

touchpoint-contact-point-employ-legis-part

List of [string]

selection-criterion-lot

List of [string]

organisation-country-subcontractor

List of [string]

deadline-time-lot

List of [string]

touchpoint-post-code-fiscal-legis-part

List of [string]

touchpoint-email-employ-legis-lot

List of [string]

selection-criteria-second-stage-invite-number-threshold-lot

List of [string]

place-of-performance-subdiv-part

List of [string]

touchpoint-fax-signatory

List of [string]

BT-731-Tender

List of [boolean]

touchpoint-contact-point-environ-legis-lot

List of [string]

BT-1311(d)-Lot

List of [string]

organisation-post-code-employ-legis-part

List of [string]

organisation-tel-financing

List of [string]

touchpoint-city-environ-legis-part

List of [string]

BT-631-Lot

List of [string]

main-classification-part

List of [string]

dispatch-date

String

OPP-112-Business

String

electronic-auction-lot

List of [boolean]

contact-nature-main-part

List of [string]

strategic-procurement-lot

List of [string]

organisation-identifier-ted-esen

List of [string]

touchpoint-internet-address-tenderer

List of [string]

BT-712(a)-LotResult

List of [string]

received-submissions-type-val

List of [float]

float

eu-funds-identifier

List of [string]

contract-title

NoticeResponse_organisation_name_mediator_part

BT-5121-Part

List of [string]

business-street

List of [string]

touchpoint-country-sub-ted-esen

List of [string]

tender-value-lowest

List of [float]

float

touchpoint-contact-point-mediator-part

List of [string]

touchpoint-email-environ-legis-lot

List of [string]

organisation-street-addinfo-part

List of [string]

touchpoint-gateway-mediator-part

List of [string]

buyer-internet-address

List of [string]

winner-internet-address

List of [string]

OPP-031-Tender

NoticeResponse_organisation_name_mediator_part

notice-title

NoticeResponse_BT_09_b__Procedure

tender-lot-identifier

List of [string]

BT-41-Lot

List of [boolean]

touchpoint-tel-tender-eval-lot

List of [string]

BT-162-Tender

List of [float]

float

organisation-email-buyer

List of [string]

BT-300-LotsGroup

NoticeResponse_organisation_name_mediator_part

organisation-email-docprovider-part

List of [string]

organisation-country-mediator-lot

List of [string]

organisation-person-docprovider-part

List of [boolean]

touchpoint-country-sub-signatory

List of [string]

BT-728-Lot

NoticeResponse_organisation_name_mediator_part

organisation-post-code-environ-legis-lot

List of [string]

buyer-partname

List of [string]

organisation-country-sub-tender-receip-lot

List of [string]

concession-revenue-user

List of [float]

float

BT-743-Lot

List of [string]

BT-720-Tender

List of [float]

float

BT-734-LotsGroup

NoticeResponse_organisation_name_mediator_part

BT-555-Tender

List of [float]

float

touchpoint-country-addinfo-lot

List of [string]

touchpoint-gateway-revieworg-lot

List of [string]

previous-planning-identifier-part-part

List of [string]

deadline-date-part

List of [string]

organisation-street-buyer

List of [string]

contract-conditions-description-lot

NoticeResponse_organisation_name_mediator_part

award-criterion-number-threshold-glo

List of [string]

BT-36-Part

List of [NoticeResponse_BT_36_Lot_inner]

BT-115-Lot

List of [boolean]

organisation-country-sub-tender-receip-part

List of [string]

BT-702-notice

List of [string]

BT-17-Lot

List of [string]

BT-721-Contract

NoticeResponse_organisation_name_mediator_part

OPT-072-Lot

NoticeResponse_organisation_name_mediator_part

organisation-tel-fiscal-legis-part

List of [string]

organisation-post-code-reviewinfo-lot

List of [string]

BT-615-Lot

List of [string]

organisation-partname-tenderer

List of [string]

reward-other-lot

NoticeResponse_organisation_name_mediator_part

main-activity

List of [string]

touchpoint-gateway-serv-prov

List of [string]

contract-url

List of [string]

organisation-fax-financing

List of [string]

touchpoint-tel-ted-esen

List of [string]

publication-name

String

touchpoint-tel-environ-legis-lot

List of [string]

organisation-country-tender-receip-part

List of [string]

BT-775-Lot

List of [string]

organisation-tel-tenderer

List of [string]

organisation-email-serv-prov

List of [string]

place-of-performance-addtional-lot

NoticeResponse_organisation_name_mediator_part

organisation-gateway-tender-receip-part

List of [string]

contract-nature

List of [string]

touchpoint-tel-addinfo-lot

List of [string]

organisation-country-sub-tender-eval-part

List of [string]

organisation-name-environ-legis-part

NoticeResponse_organisation_name_mediator_part

lot-included-proc

List of [string]

buyer-identifier

List of [string]

organisation-tel-subcontractor

List of [string]

BT-774-Lot

List of [string]

legal-basis-notice

String

organisation-street-docprovider-part

List of [string]

BT-5141-Part

List of [string]

touchpoint-city-ted-esen

List of [string]

touchpoint-country-sub-environ-legis-lot

List of [string]

touchpoint-name-addinfo-part

NoticeResponse_organisation_name_mediator_part

notice-subtype

String

organisation-fax-ted-esen

List of [string]

modification-modified-contract-reference

List of [string]

touchpoint-post-code-subcontractor

List of [string]

notice-identifier

String

organisation-tel-fiscal-legis-lot

List of [string]

BT-18-Lot

List of [string]

touchpoint-name-reviewinfo-lot

NoticeResponse_organisation_name_mediator_part

OPP-100-Business

String

value-prize-cur-lot

List of [string]

BT-156-NoticeResult

List of [float]

float

touchpoint-post-code-tender-eval-lot

List of [string]

registration-place-country

String

organisation-internet-address-tender-eval-part

List of [string]

winner-city

List of [string]

BT-42-Lot

List of [boolean]

organisation-country-sub-fiscal-legis-lot

List of [string]

document-url-part

List of [string]

country-origin

List of [string]

touchpoint-country-buyer

List of [string]

organisation-internet-address-financing

List of [string]

business-name

String

BT-330-Procedure

List of [string]

organisation-email-revieworg-part

List of [string]

touchpoint-tel-serv-prov

List of [string]

organisation-gateway-reviewinfo-part

List of [string]

organisation-city-fiscal-legis-lot

List of [string]

touchpoint-partname-subcontractor

List of [string]

legal-basis-proc

List of [string]

buyer-name

NoticeResponse_organisation_name_mediator_part

modification-reason-description

NoticeResponse_organisation_name_mediator_part

BT-262-Part

List of [string]

BT-740-Procedure-Buyer

List of [string]

organisation-fax-tender-receip-part

List of [string]

touchpoint-gateway-addinfo-lot

List of [string]

BT-131(t)-Lot

List of [string]

touchpoint-contact-point-ted-esen

List of [string]

BT-763-Procedure

String

organisation-email-addinfo-lot

List of [string]

organisation-post-code-employ-legis-lot

List of [string]

award-criterion-complicated-lot

NoticeResponse_organisation_name_mediator_part

total-value

Float

float

touchpoint-name-mediator-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-partname-paying

List of [string]

touchpoint-country-sub-reviewinfo-part

List of [string]

document-url-lot

List of [string]

touchpoint-tel-reviewinfo-lot

List of [string]

touchpoint-partname-docprovider-part

List of [string]

BT-151-Contract

List of [string]

organisation-country-sub-environ-legis-lot

List of [string]

organisation-post-code-tender-receip-lot

List of [string]

organisation-gateway-reviewinfo-lot

List of [string]

received-submissions-type-code

List of [string]

BT-711-LotResult

List of [float]

float

subcontracting-value

List of [float]

float

touchpoint-street-tenderer

List of [string]

BT-729-Lot

List of [float]

float

winner-touchpoint-name

NoticeResponse_organisation_name_mediator_part

organisation-gateway-fiscal-legis-part

List of [string]

organisation-fax-tender-receip-lot

List of [string]

organisation-email-financing

List of [string]

OPT-071-Lot

List of [string]

BT-57-Lot

NoticeResponse_organisation_name_mediator_part

touchpoint-country-docprovider-part

List of [string]

touchpoint-gateway-signatory

List of [string]

successive-redution-lot

List of [boolean]

organisation-internet-address-environ-legis-part

List of [string]

touchpoint-partname-revieworg-lot

List of [string]

buyer-touchpoint-internet-address

List of [string]

organisation-name-tenderer

NoticeResponse_organisation_name_mediator_part

value-prize-lot

List of [float]

float

organisation-fax-reviewinfo-lot

List of [string]

organisation-partname-environ-legis-lot

List of [string]

organisation-country-tender-receip-lot

List of [string]

BT-541-Lot

List of [float]

float

title-lot

NoticeResponse_organisation_name_mediator_part

ubo-post-code

List of [string]

BT-144-LotResult

List of [string]

organisation-city-environ-legis-lot

List of [string]

contract-duration-period-oth-lot

List of [string]

additional-info-glo

NoticeResponse_organisation_name_mediator_part

BT-124-Part

List of [string]

organisation-identifier-reviewinfo-part

List of [string]

touchpoint-email-addinfo-part

List of [string]

touchpoint-fax-subcontractor

List of [string]

organisation-tel-tender-eval-part

List of [string]

touchpoint-internet-address-environ-legis-part

List of [string]

framework-buyer-categories-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-email-reviewinfo-part

List of [string]

BT-1251-Part

List of [string]

award-criterion-number-lot

List of [float]

float

organisation-fax-addinfo-part

List of [string]

touchpoint-fax-employ-legis-lot

List of [string]

BT-165-Organization-Company

List of [string]

organisation-gateway-tenderer

List of [string]

touchpoint-gateway-revieworg-part

List of [string]

touchpoint-country-financing

List of [string]

deadline-receipt-request-date-lot

List of [string]

touchpoint-fax-revieworg-lot

List of [string]

buyer-contact-point

List of [string]

term-performance-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-post-code-docprovider-part

List of [string]

touchpoint-tel-docprovider-lot

List of [string]

BT-300-Lot

NoticeResponse_organisation_name_mediator_part

organisation-internet-address-serv-prov

List of [string]

touchpoint-post-code-environ-legis-part

List of [string]

organisation-tel-reviewinfo-part

List of [string]

framework-estimated-value-cur

List of [string]

BT-773-Tender

List of [string]

exclusion-grounds-description

NoticeResponse_organisation_name_mediator_part

touchpoint-fax-reviewinfo-lot

List of [string]

BT-630(d)-Lot

List of [string]

touchpoint-post-code-docprovider-lot

List of [string]

organisation-street-employ-legis-lot

List of [string]

touchpoint-country-sub-buyer

List of [string]

BT-760-LotResult

List of [string]

cross-border-law-description-proc

NoticeResponse_BT_09_b__Procedure

touchpoint-city-revieworg-part

List of [string]

touchpoint-name-tender-receip-part

NoticeResponse_organisation_name_mediator_part

environmental-impact-lot

List of [string]

BT-23-Part

List of [string]

touchpoint-contact-point-reviewinfo-lot

List of [string]

touchpoint-partname-tender-receip-lot

List of [string]

organisation-partname-reviewinfo-lot

List of [string]

OPP-022-Contract

List of [string]

winner-touchpoint-city

List of [string]

BT-71-Lot

List of [string]

organisation-city-ted-esen

List of [string]

BT-1451-Contract

List of [string]

BT-300-procedure

NoticeResponse_BT_09_b__Procedure

organisation-tel-serv-prov

List of [string]

selection-criteria-second-stage-invite-number-weight-lot

List of [string]

contract-duration-start-date-lot

List of [string]

organisation-city-mediator-lot

List of [string]

organisation-tel-tender-receip-part

List of [string]

organisation-person-paying

List of [boolean]

organisation-city-reviewinfo-part

List of [string]

BT-200-Contract

List of [string]

organisation-email-tender-eval-lot

List of [string]

result-lot-identifier

List of [string]

BT-745-Lot

NoticeResponse_organisation_name_mediator_part

organisation-contact-point-revieworg-lot

List of [string]

BT-7531-Lot

List of [string]

estimated-value-cur-glo

List of [string]

entity-main-activity

List of [string]

organisation-post-code-paying

List of [string]

touchpoint-tel-docprovider-part

List of [string]

organisation-street-serv-prov

List of [string]

organisation-gateway-docprovider-lot

List of [string]

BT-13(t)-Lot

List of [string]

organisation-person-mediator-part

List of [boolean]

touchpoint-name-addinfo-lot

NoticeResponse_organisation_name_mediator_part

concession-revenue-cur-user

List of [string]

organisation-fax-signatory

List of [string]

electronic-ordering-lot

List of [boolean]

touchpoint-partname-mediator-part

List of [string]

touchpoint-partname-ted-esen

List of [string]

total-value-cur

List of [string]

organisation-internet-address-fiscal-legis-part

List of [string]

organisation-partname-fiscal-legis-lot

List of [string]

contract-duration-period-part

List of [NoticeResponse_BT_36_Lot_inner]

document-restricted-justification-part

List of [string]

touchpoint-name-tenderer

NoticeResponse_organisation_name_mediator_part

organisation-partname-buyer

List of [string]

touchpoint-fax-revieworg-part

List of [string]

winner-touchpoint-email

List of [string]

electronic-payment-lot

List of [boolean]

organisation-partname-mediator-part

List of [string]

organisation-contact-point-addinfo-lot

List of [string]

deadline-receipt-tender-time-lot

List of [string]

touchpoint-post-code-revieworg-lot

List of [string]

BT-113-Lot

List of [long]

int64

BT-5011-Contract

List of [string]

BT-58-Lot

List of [long]

int64

touchpoint-tel-revieworg-part

List of [string]

business-internet-address

String

touchpoint-fax-serv-prov

List of [string]

BT-765-Part

List of [string]

BT-15-Lot

List of [string]

document-unofficial-language-part

List of [string]

touchpoint-country-revieworg-part

List of [string]

touchpoint-street-mediator-lot

List of [string]

touchpoint-partname-buyer

List of [string]

award-criterion-description-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-city-employ-legis-part

List of [string]

touchpoint-country-sub-tender-receip-lot

List of [string]

main-classification-proc

List of [string]

internal-identifier-lot

List of [string]

buyer-reviewrequests-irregularity-type-val

List of [float]

float

BT-531-Procedure

List of [string]

touchpoint-fax-fiscal-legis-part

List of [string]

touchpoint-internet-address-financing

List of [string]

organisation-email-docprovider-lot

List of [string]

organisation-tel-reviewinfo-lot

List of [string]

organisation-country-sub-tenderer

List of [string]

BT-44-Lot

List of [long]

int64

document-unofficial-language-lot

List of [string]

touchpoint-contact-point-employ-legis-lot

List of [string]

organisation-post-code-addinfo-part

List of [string]

winner-listed

List of [boolean]

winner-selection-status

List of [string]

organisation-city-subcontractor

List of [string]

BT-1251-Lot

List of [string]

BT-543-Lot

NoticeResponse_organisation_name_mediator_part

winner-partname

List of [string]

organisation-city-paying

List of [string]

public-opening-time-lot

List of [string]

BT-772-Lot

NoticeResponse_organisation_name_mediator_part

BT-718-notice

List of [boolean]

touchpoint-internet-address-fiscal-legis-part

List of [string]

organisation-email-tender-receip-part

List of [string]

direct-award-justification-text-proc

NoticeResponse_organisation_name_mediator_part

BT-644-Lot

List of [float]

float

organisation-identifier-fiscal-legis-lot

List of [string]

touchpoint-gateway-tender-receip-part

List of [string]

touchpoint-fax-mediator-part

List of [string]

touchpoint-contact-point-revieworg-part

List of [string]

group-framework-value-notice

List of [float]

float

organisation-city-revieworg-lot

List of [string]

organisation-partname-tender-eval-part

List of [string]

touchpoint-street-reviewinfo-lot

List of [string]

BT-5071-Lot

List of [string]

organisation-contact-point-ted-esen

List of [string]

framework-value-notice

Float

float

BT-262-Procedure

List of [string]

form-type

String

organisation-person-subcontractor

List of [boolean]

review-deadline-description-lot

NoticeResponse_organisation_name_mediator_part

BT-7532-Lot

List of [string]

organisation-street-environ-legis-lot

List of [string]

organisation-country-sub-addinfo-part

List of [string]

touchpoint-country-fiscal-legis-part

List of [string]

touchpoint-post-code-mediator-lot

List of [string]

organisation-person-revieworg-lot

List of [boolean]

organisation-gateway-addinfo-part

List of [string]

organisation-identifier-fiscal-legis-part

List of [string]

touchpoint-gateway-financing

List of [string]

organisation-name-docprovider-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-name-tender-receip-lot

NoticeResponse_organisation_name_mediator_part

touchpoint-country-sub-environ-legis-part

List of [string]

BT-263-Procedure

List of [string]

BT-04-notice

String

organisation-gateway-buyer

List of [string]

touchpoint-country-sub-docprovider-part

List of [string]

organisation-street-environ-legis-part

List of [string]

touchpoint-email-mediator-part

List of [string]

BT-142-LotResult

List of [string]

organisation-partname-revieworg-lot

List of [string]

touchpoint-country-sub-addinfo-lot

List of [string]

touchpoint-fax-reviewinfo-part

List of [string]

touchpoint-email-docprovider-part

List of [string]

organisation-identifier-tender-eval-part

List of [string]

touchpoint-contact-point-environ-legis-part

List of [string]

BT-13714-Tender

List of [string]

BT-536-Part

List of [string]

organisation-contact-point-subcontractor

List of [string]

award-criteria-complicated-glo

NoticeResponse_organisation_name_mediator_part

touchpoint-gateway-reviewinfo-lot

List of [string]

organisation-partname-subcontractor

List of [string]

touchpoint-name-docprovider-part

NoticeResponse_organisation_name_mediator_part

touchpoint-post-code-buyer

List of [string]

touchpoint-partname-environ-legis-part

List of [string]

BT-300-Part

NoticeResponse_organisation_name_mediator_part

touchpoint-internet-address-serv-prov

List of [string]

result-value-cur-lot

List of [string]

BT-67(a)-Procedure

List of [string]

touchpoint-fax-financing

List of [string]

organisation-country-employ-legis-lot

List of [string]

organisation-person-ted-esen

List of [boolean]

touchpoint-post-code-mediator-part

List of [string]

organisation-gateway-tender-eval-lot

List of [string]

winner-name

NoticeResponse_organisation_name_mediator_part

business-country

String

BT-744-Lot

List of [string]

NoticeResponseBT09BProcedure

A i18n field mapping to any of the 24 official languages (ISO 639-2) a text

Field Name Required Type Description Format

lang

String

A text in language [lang], where lang is any of the 24 official languages (ISO 639-2), eg. eng, deu, fra

NoticeResponseBT36LotInner

Field Name Required Type Description Format

value

String

unit

String

NoticeResponseOrganisationNameMediatorPart

A i18n field mapping to any of the 24 official languages (ISO 639-2) a list of text

Field Name Required Type Description Format

lang

List of [string]

PublicExpertSearchRequestV1 PublicExpertSearchRequest

Request body of the notice search endpoint

Field Name Required Type Description Format

query

X

String

Expert search query to filter and sort notices

fields

X

Set of [string]

Fields to return for each notice

Enum: BT-09(b)-Procedure, organisation-name-mediator-part, touchpoint-post-code-environ-legis-lot, sme-part, touchpoint-gateway-ted-esen, BT-135-Procedure, touchpoint-fax-tender-receip-part, submission-url-lot, organisation-person-addinfo-part, buyer-country-sub, organisation-tel-revieworg-part, no-negocaition-necessary-lot, organisation-tel-mediator-lot, BT-13(t)-Part, organisation-city-serv-prov, touchpoint-partname-tenderer, touchpoint-internet-address-paying, BT-538-Lot, touchpoint-post-code-addinfo-lot, option-description-lot, BT-24-Procedure, organisation-person-employ-legis-part, touchpoint-post-code-employ-legis-part, AA, touchpoint-internet-address-fiscal-legis-lot, AC, organisation-email-tenderer, organisation-country-buyer, BT-1501(c)-Contract, organisation-post-code-docprovider-part, award-criterion-name-lot, organisation-post-code-financing, touchpoint-contact-point-addinfo-lot, BT-137-Part, organisation-person-mediator-lot, organisation-gateway-revieworg-lot, AU, organisation-person-signatory, minimum-candidate-lot, OPP-130-Business, organisation-street-ted-esen, organisation-name-employ-legis-part, touchpoint-city-fiscal-legis-lot, touchpoint-street-employ-legis-part, touchpoint-email-revieworg-lot, business-fax, OPP-021-Contract, future-notice, touchpoint-gateway-environ-legis-part, BI, BT-33-Procedure, touchpoint-tel-subcontractor, ubo-email, touchpoint-internet-address-tender-receip-part, touchpoint-internet-address-tender-eval-part, organisation-person-environ-legis-lot, touchpoint-partname-tender-eval-part, BT-5131-Part, organisation-tel-addinfo-part, BT-1501(n)-Contract, touchpoint-contact-point-fiscal-legis-part, organisation-contact-point-serv-prov, BT-712(b)-LotResult, touchpoint-country-serv-prov, touchpoint-contact-point-tender-eval-part, touchpoint-contact-point-reviewinfo-part, electronic-auction-lot-url, touchpoint-fax-buyer, subcontracting-value-cur, deadline-date-lot, organisation-name-environ-legis-lot, description-glo, organisation-person-employ-legis-lot, organisation-country-docprovider-lot, winner-owner-nationality, tender-value-cur, touchpoint-city-revieworg-lot, award-criterion-number-fixed-glo, organisation-partname-docprovider-part, BT-732-Lot, touchpoint-name-docprovider-lot, touchpoint-internet-address-subcontractor, BT-727-Part, place-of-performance-post-code-part, CY, BT-651-Lot, BT-150-Contract, BT-45-Lot, BT-710-LotResult, DD, organisation-internet-address-addinfo-lot, deadline-receipt-tender-date-lot, organisation-email-mediator-lot, identifier-part, DI, BT-1311(t)-Lot, touchpoint-city-reviewinfo-lot, BT-46-Lot, modification-justification, tender-variant, touchpoint-country-revieworg-lot, BT-70-Lot, touchpoint-country-employ-legis-lot, DS, DT, BT-707-Lot, touchpoint-name-subcontractor, touchpoint-partname-financing, BT-52-Lot, touchpoint-country-reviewinfo-lot, buyer-reviewrequests-irregularity-type, contract-nature-add-part, organisation-person-tender-eval-lot, lots-max-allowed-proc, touchpoint-partname-fiscal-legis-lot, organisation-city-signatory, internal-identifier-glo, BT-99-Lot, organisation-country-sub-subcontractor, contract-identifier, BT-539-Lot, organisation-post-code-fiscal-legis-lot, organisation-country-sub-docprovider-part, touchpoint-street-tender-eval-part, organisation-internet-address-ted-esen, BT-733-LotsGroup, BT-36-Lot, touchpoint-country-sub-financing, organisation-email-subcontractor, BT-134-Lot, BT-118-NoticeResult, organisation-tel-employ-legis-part, touchpoint-street-subcontractor, corporate-body, touchpoint-country-reviewinfo-part, touchpoint-city-docprovider-part, buyer-touchpoint-gateway, BT-709-LotResult, procurement-relaunch, maximum-candidates-lot, touchpoint-name-fiscal-legis-part, place-of-performance-city-lot, BT-22-LotsGroup, FT, organisation-internet-address-docprovider-part, BT-5141-Lot, touchpoint-tel-tender-receip-lot, organisation-tel-buyer, previous-planning-identifier-part-lot, BT-5121-Procedure, touchpoint-fax-environ-legis-part, organisation-email-fiscal-legis-part, BT-13713-LotResult, contract-nature-main-proc, organisation-country-tenderer, tool-url-part, touchpoint-street-revieworg-part, organisation-email-addinfo-part, organisation-tel-signatory, touchpoint-street-tender-receip-part, touchpoint-street-environ-legis-lot, organisation-country-sub-docprovider-lot, organisation-contact-point-signatory, missing-info-submission-description-lot, organisation-identifier-signatory, touchpoint-fax-environ-legis-lot, touchpoint-city-tender-eval-part, organisation-post-code-tender-eval-lot, BT-708-Lot, organisation-name-tender-receip-lot, change-previous-notice-section-identifier, jury-member-name-lot, organisation-contact-point-tenderer, organisation-internet-address-fiscal-legis-lot, ubo-fax, quality-target-description-lot, HA, OPT-150-LOT, touchpoint-internet-address-reviewinfo-part, touchpoint-country-mediator-part, touchpoint-country-signatory, reserved-execution-lot, predominance-lot, BT-636-LotResult, touchpoint-tel-employ-legis-lot, buyer-review-compainants-code, organisation-contact-point-fiscal-legis-part, selection-criterion-description-lot, contract-framework-agreement, touchpoint-city-buyer, variant-allowed-lot, additional-classification-proc, place-of-performance-country-proc, BT-768-Contract, touchpoint-fax-paying, framework-agreement-part, place-of-performance-post-code-proc, touchpoint-fax-addinfo-part, touchpoint-internet-address-ted-esen, IA, buyer-gateway, BT-47-Lot, organisation-fax-tender-eval-part, contract-duration-end-date-lot, ubo-street, jury-decision-binding-lot, BT-5423-LotsGroup, BT-635-LotResult, OPP-123-Business, BT-777-Lot, touchpoint-gateway-fiscal-legis-part, framework-agreement-lot, BT-734-Lot, organisation-street-mediator-part, touchpoint-email-ted-esen, document-restricted-part, selection-criteria-second-stage-invite-lot, touchpoint-email-tender-receip-lot, touchpoint-city-addinfo-part, BT-98-Lot, BT-19-Lot, BT-726-Part, BT-1252-Procedure, direct-award-justification-previous-procedure-identifier-proct, organisation-email-reviewinfo-part, BT-127-notice, organisation-person-tender-eval-part, touchpoint-tel-financing, organisation-city-addinfo-part, BT-610-Procedure-Buyer, BT-01(c)-procedure, organisation-country-tender-eval-part, BT-132(d)-Lot, winner-post-code, organisation-country-reviewinfo-lot, organisation-partname-docprovider-lot, change-procurement-documents, touchpoint-street-fiscal-legis-lot, touchpoint-email-docprovider-lot, buyer-touchpoint-partname, BT-5422-LotsGroup, registration-date, organisation-person-tender-receip-part, touchpoint-gateway-mediator-lot, BT-01-notice, BT-27-Part, touchpoint-street-serv-prov, framework-estimated-value-glo, organisation-post-code-mediator-lot, organisation-name-addinfo-lot, touchpoint-internet-address-docprovider-part, touchpoint-name-environ-legis-lot, organisation-partname-revieworg-part, touchpoint-internet-address-addinfo-lot, organisation-identifier-docprovider-lot, publication-date, selection-criterion-name-lot, BT-736-Part, BT-554-Tender, business-email, buyer-email, legal-basis-text, OPP-011-notice, subcontracting-percentage, subcontracting-allowed-lot, BT-05(a)-notice, organisation-email-paying, touchpoint-street-tender-receip-lot, BT-5131-Lot, modification-previous-notice-identifier, BT-769-Lot, touchpoint-country-tender-eval-lot, significance-lot, organisation-partname-addinfo-lot, touchpoint-street-docprovider-part, organisation-identifier-tenderer, BT-726-Lot, touchpoint-city-tenderer, touchpoint-street-environ-legis-part, touchpoint-tel-reviewinfo-part, award-criterion-number-weight-glo, touchpoint-contact-point-buyer, touchpoint-post-code-reviewinfo-lot, vehicle-type, contract-nature-add-proc, touchpoint-country-sub-docprovider-lot, estimated-value-glo, buyer-touchpoint-post-code, tender-rank, organisation-post-code-tenderer, BT-634-Lot, tool-name-part, buyer-profile, winner-country, organisation-name-reviewinfo-part, touchpoint-city-mediator-part, touchpoint-partname-addinfo-lot, winner-country-sub, requirement-stage-lot, deadline-time-part, MA, organisation-country-sub-mediator-lot, organisation-fax-fiscal-legis-lot, touchpoint-contact-point-revieworg-lot, BT-88-Procedure, touchpoint-email-tender-eval-lot, BT-632-Lot, ojs-number, BT-733-Lot, links, organisation-person-financing, organisation-post-code-revieworg-part, business-city, BT-54-lot, organisation-person-environ-legis-part, organisation-tel-docprovider-lot, touchpoint-tel-buyer, organisation-fax-revieworg-part, organisation-tel-mediator-part, place-of-performance-country-part, BT-728-Part, organisation-person-serv-prov, organisation-name-serv-prov, organisation-post-code-signatory, touchpoint-fax-docprovider-part, touchpoint-street-reviewinfo-part, BT-60-Lot, renewal-maximum-lot, touchpoint-internet-address-revieworg-part, BT-13716-notice, organisation-name-revieworg-lot, touchpoint-gateway-tender-eval-part, BT-21-Procedure, deadline-receipt-request-time-lot, identifier-glo, ubo-country, gpa-lot, organisation-street-revieworg-lot, touchpoint-fax-employ-legis-part, NC, organisation-name-financing, ND, touchpoint-internet-address-tender-eval-lot, touchpoint-country-sub-employ-legis-part, BT-97-Lot, NL, accessibility-justification-lot, security-clearence-deadline-lot, title-part, touchpoint-street-addinfo-part, touchpoint-tel-employ-legis-part, deadline-receipt-expressions-time-lot, touchpoint-fax-fiscal-legis-lot, BT-05(b)-notice, organisation-person-tender-receip-lot, organisation-fax-mediator-lot, organisation-partname-tender-eval-lot, touchpoint-tel-paying, winner-touchpoint-gateway, organisation-country-sub-employ-legis-part, touchpoint-gateway-subcontractor, OJ, OPP-105-Business, eu-funds-name, OL, organisation-fax-fiscal-legis-part, organisation-fax-tenderer, business-identifier, place-of-performance, public-opening-place-lot, organisation-email-signatory, organisation-contact-point-financing, tender-value-cur-highest, organisation-fax-addinfo-lot, touchpoint-country-ted-esen, BT-776-Lot, touchpoint-contact-point-docprovider-part, buyer-legal-type, organisation-city-tender-receip-part, BT-27-Lot, touchpoint-contact-point-fiscal-legis-lot, additional-classification-part, touchpoint-city-docprovider-lot, PC, organisation-fax-serv-prov, organisation-fax-buyer, PD, organisation-country-revieworg-lot, organisation-country-fiscal-legis-lot, organisation-tel-environ-legis-lot, touchpoint-gateway-fiscal-legis-lot, BT-615-Part, organisation-country-docprovider-part, touchpoint-gateway-docprovider-part, organisation-tel-tender-eval-lot, BT-727-Lot, BT-11-Procedure-Buyer, touchpoint-street-buyer, change-reason-code, organisation-gateway-ted-esen, recurrence-lot, BT-727-Procedure, PR, contract-conclusion-date, subcontracting-percentage-ind, place-of-performance-city-part, change-description, touchpoint-street-paying, organisation-country-addinfo-part, strategic-procurement-description-lot, touchpoint-partname-fiscal-legis-part, organisation-identifier-mediator-lot, BT-24-Part, BT-543-LotsGroup, BT-767-Lot, electronic-signature-lot, organisation-email-employ-legis-part, OPP-023-Contract, organisation-fax-employ-legis-part, subcontracting-obligation-lot, organisation-person-reviewinfo-part, subcontracting-description, touchpoint-country-sub-revieworg-lot, submission-nonelectronic-lot, touchpoint-country-sub-tender-eval-part, touchpoint-partname-reviewinfo-part, organisation-fax-environ-legis-lot, organisation-email-environ-legis-lot, title-proc, organisation-contact-point-employ-legis-lot, organisation-identifier-financing, touchpoint-contact-point-tenderer, award-criterion-number-weight-lot, BT-737-Part, eu-registration-number, RC, organisation-tel-docprovider-part, touchpoint-contact-point-paying, public-opening-date-lot, touchpoint-internet-address-mediator-lot, touchpoint-city-employ-legis-lot, touchpoint-internet-address-reviewinfo-lot, RN, RP, organisation-country-sub-addinfo-lot, touchpoint-partname-docprovider-lot, contract-duration-period-oth-part, organisation-city-docprovider-part, organisation-country-mediator-part, organisation-contact-point-mediator-lot, organisation-fax-reviewinfo-part, registration-place-postcode, touchpoint-email-serv-prov, BT-630(t)-Lot, touchpoint-country-paying, touchpoint-post-code-tender-eval-part, concession-revenue-buyer, touchpoint-fax-tender-eval-part, renewal-description-lot, organisation-internet-address-tender-receip-lot, BT-124-Lot, BT-751-Lot, touchpoint-tel-addinfo-part, registration-place-town, BT-13(d)-Part, organisation-name-docprovider-part, organisation-contact-point-reviewinfo-part, organisation-post-code-mediator-part, deadline-receipt-request, BT-136-Procedure, BT-140-notice, touchpoint-country-sub-subcontractor, organisation-street-tender-receip-part, organisation-country-serv-prov, touchpoint-partname-tender-receip-part, touchpoint-tel-signatory, organisation-street-revieworg-part, BT-64-Lot, organisation-post-code-addinfo-lot, BT-708-Part, revenues-allocation-lot, organisation-country-sub-tender-eval-lot, touchpoint-street-tender-eval-lot, touchpoint-street-addinfo-lot, TD, document-restricted-url-lot, place-of-performance-country-lot, contract-duration-start-date-part, organisation-internet-address-revieworg-part, classification-cpv, TI, touchpoint-street-fiscal-legis-part, BT-23-Procedure, ecatalog-allowed-lot, organisation-city-environ-legis-part, organisation-gateway-addinfo-lot, BT-508-Procedure-Buyer, BT-632-Part, TV, TW, touchpoint-gateway-reviewinfo-part, TY, csecurity-clearance-description-lot, touchpoint-contact-point-tender-receip-part, organisation-person-fiscal-legis-lot, multiple-tender-lot, organisation-tel-ted-esen, BT-5421-Lot, organisation-tel-tender-receip-lot, organisation-partname-employ-legis-lot, change-reason-description, organisation-fax-paying, BT-141(a)-notice, additional-info-proc, touchpoint-name-employ-legis-part, touchpoint-partname-addinfo-part, BT-95-Lot, dps-usage-lot, place-of-performance-other-lot, BT-202-Contract, touchpoint-country-sub-paying, BT-21-LotsGroup, OPT-155-LotResult, organisation-country-sub-environ-legis-part, BT-79-Lot, direct-award-justification-proc, touchpoint-city-tender-receip-lot, touchpoint-country-sub-serv-prov, organisation-internet-address-tender-eval-lot, organisation-person-docprovider-lot, organisation-post-code-ted-esen, competition-termination-proc, contract-conditions-code-lot, touchpoint-country-sub-reviewinfo-lot, BT-15-Part, BT-758-notice, cross-border-law-identifier-proc, organisation-person-fiscal-legis-part, touchpoint-country-tender-eval-part, result-value-notice, BT-736-Lot, ubo-city, organisation-contact-point-revieworg-part, BT-752-Lot, framework-value-cur-notice, touchpoint-country-tenderer, organisation-post-code-revieworg-lot, BT-133-Lot, organisation-country-signatory, touchpoint-post-code-revieworg-part, organisation-country-paying, organisation-partname-signatory, touchpoint-internet-address-addinfo-part, procedure-justification, official-language, BT-756-Procedure, eu-fund-lot, BT-03-notice, touchpoint-name-signatory, winner-touchpoint-post-code, contract-duration-end-date-part, BT-123-Lot, touchpoint-post-code-fiscal-legis-lot, TV_CUR, touchpoint-post-code-tenderer, innovative-acquisition-lot, organisation-identifier-revieworg-lot, organisation-country-environ-legis-part, BT-67(b)-Procedure, touchpoint-partname-mediator-lot, deadline-receipt-expressions-date-lot, touchpoint-internet-address-buyer, BT-145-Contract, touchpoint-email-buyer, organisation-gateway-employ-legis-lot, touchpoint-country-fiscal-legis-lot, document-restricted-lot, touchpoint-street-financing, BT-27-LotsGroup, framework-maximum-participants-number-lot, award-criteria-order-justification, tool-atypical-url-lot, organisation-street-mediator-lot, organisation-internet-address-employ-legis-lot, BT-5141-Procedure, organisation-contact-point-docprovider-lot, BT-63-Lot, touchpoint-email-reviewinfo-lot, touchpoint-partname-revieworg-part, organisation-fax-docprovider-lot, touchpoint-tel-mediator-lot, OPP-032-Tender, organisation-post-code-subcontractor, BT-707-Part, procedure-features, touchpoint-country-mediator-lot, BT-538-Part, touchpoint-post-code-tender-receip-lot, BT-105-Procedure, BT-765-Lot, organisation-city-reviewinfo-lot, organisation-gateway-environ-legis-part, organisation-identifier-paying, organisation-street-addinfo-lot, assets-related-contract-extension-indicator-lot, BT-137-Lot, business-country-sub, security-clearance-lot, organisation-identifier-addinfo-lot, touchpoint-name-paying, organisation-post-code-tender-eval-part, touchpoint-country-sub-tender-receip-part, organisation-name-signatory, touchpoint-gateway-addinfo-part, touchpoint-name-tender-eval-part, touchpoint-partname-employ-legis-lot, BT-660-LotResult, organisation-country-sub-fiscal-legis-part, touchpoint-partname-reviewinfo-lot, touchpoint-contact-point-tender-eval-lot, touchpoint-fax-addinfo-lot, organisation-city-fiscal-legis-part, BT-122-Lot, touchpoint-country-tender-receip-lot, organisation-contact-point-employ-legis-part, organisation-email-environ-legis-part, touchpoint-gateway-docprovider-lot, BT-501-Business-European, organisation-fax-subcontractor, BT-262-Lot, OPP-040-Procedure, BT-5422-Lot, organisation-person-tenderer, touchpoint-city-signatory, organisation-country-sub-buyer, buyer-touchpoint-city, BT-24-Lot, main-classification-lot, touchpoint-city-financing, touchpoint-contact-point-addinfo-part, organisation-partname-fiscal-legis-part, BT-109-Lot, organisation-gateway-employ-legis-part, organisation-street-tender-eval-lot, touchpoint-partname-serv-prov, BT-21-Part, organisation-internet-address-mediator-lot, organisation-tel-paying, organisation-identifier-mediator-part, organisation-partname-ted-esen, buyer-touchpoint-contact-point, organisation-street-reviewinfo-part, dispatch-time, organisation-internet-address-mediator-part, organisation-partname-reviewinfo-part, organisation-street-fiscal-legis-part, BT-701-notice, organisation-identifier-environ-legis-lot, organisation-identifier-serv-prov, BT-157-LotsGroup, BT-737-Lot, organisation-email-mediator-part, touchpoint-city-addinfo-lot, touchpoint-city-mediator-lot, business-tel, organisation-fax-tender-eval-lot, organisation-city-buyer, organisation-gateway-environ-legis-lot, organisation-name-revieworg-part, organisation-gateway-paying, funding, issue-date, BT-51-Lot, touchpoint-tel-fiscal-legis-lot, business-contact-point, touchpoint-street-employ-legis-lot, contract-nature-add-lot, BT-106-Procedure, estimated-value-cur-proc, BT-94-Lot, buyer-person, quality-target-code-lot, organisation-fax-revieworg-lot, OPP-121-Business, BT-536-Lot, touchpoint-country-sub-tenderer, touchpoint-fax-tender-receip-lot, organisation-internet-address-tender-receip-part, OPP-030-Tender, BT-163-Tender, submission-nonelectronic-description-lot, touchpoint-internet-address-employ-legis-lot, BT-27-Procedure, additional-information-lot, organisation-internet-address-subcontractor, BT-766-Lot, BT-537-Lot, winner-gateway, organisation-city-revieworg-part, BT-722-Contract, touchpoint-city-reviewinfo-part, result-value-lot, touchpoint-country-sub-fiscal-legis-lot, organisation-contact-point-addinfo-part, organisation-tel-environ-legis-part, kilometer-public-transport, authority-main-activity, title-glo, OPP-080-Tender, winner-person, organisation-country-sub-signatory, organisation-country-ted-esen, touchpoint-street-ted-esen, BT-263-Lot, touchpoint-name-environ-legis-part, organisation-gateway-mediator-part, selection-criterion-used-lot, BT-5071-Part, estimated-value-cur-lot, touchpoint-street-signatory, organisation-country-employ-legis-part, organisation-post-code-reviewinfo-part, organisation-internet-address-docprovider-lot, BT-191-Tender, concession-value-description, BT-5423-Lot, organisation-identifier-environ-legis-part, subcontracting-obligation-minimum-lot, touchpoint-fax-mediator-lot, organisation-fax-environ-legis-part, accessibility-lot, BT-23-Lot, organisation-post-code-serv-prov, BT-531-Part, BT-5121-Lot, subcontracting-indication-lot, electronic-submission-lot, notice-version, touchpoint-internet-address-environ-legis-lot, organisation-identifier-revieworg-part, award-criterion-number-threshold-lot, document-restricted-justification, touchpoint-name-mediator-part, organisation-fax-mediator-part, touchpoint-name-ted-esen, touchpoint-fax-ted-esen, touchpoint-tel-tenderer, touchpoint-email-tender-eval-part, organisation-post-code-fiscal-legis-part, organisation-post-code-environ-legis-part, award-criterion-type-glo, winner-email, organisation-street-paying, place-of-performance-post-code-lot, ubo-name, BT-22-Lot, estimated-value-cur-part, BT-1351-Procedure, organisation-fax-employ-legis-lot, organisation-identifier-docprovider-part, buyer-post-code, BT-65-Lot, touchpoint-email-fiscal-legis-lot, framework-estimated-value-cur-glo, OPP-111-Business, touchpoint-tel-tender-eval-part, organisation-city-financing, BT-750-Lot, winner-touchpoint-partname, organisation-city-tenderer, organisation-country-sub-paying, touchpoint-tel-fiscal-legis-part, organisation-name-tender-receip-part, lots-all-required-proc, organisation-internet-address-revieworg-lot, touchpoint-email-paying, touchpoint-name-fiscal-legis-lot, tender-value, BT-50-Lot, organisation-partname-financing, BT-93-Lot, organisation-country-financing, document-official-language-lot, touchpoint-street-docprovider-lot, organisation-name-reviewinfo-lot, touchpoint-email-signatory, organisation-gateway-financing, organisation-identifier-addinfo-part, submission-language, BT-762-notice, organisation-identifier-buyer, touchpoint-gateway-paying, additional-info-part, touchpoint-gateway-employ-legis-lot, BT-132(t)-Lot, BT-31-Procedure, winner-touchpoint-internet-address, organisation-city-tender-receip-lot, touchpoint-gateway-tender-eval-lot, BT-10-Procedure-Buyer, BT-1501(p)-Contract, OPP-122-Business, modification-description, BT-120-Lot, BT-759-LotResult, touchpoint-contact-point-docprovider-lot, touchpoint-partname-environ-legis-lot, organisation-street-reviewinfo-lot, organisation-gateway-subcontractor, touchpoint-city-serv-prov, organisation-contact-point-tender-receip-lot, touchpoint-country-sub-revieworg-part, dispatch-invitation-tender-lot, touchpoint-name-revieworg-part, organisation-post-code-tender-receip-part, organisation-name-buyer, organisation-street-financing, BT-24-LotsGroup, BT-13(d)-Lot, organisation-contact-point-environ-legis-part, touchpoint-email-addinfo-lot, organisation-contact-point-buyer, organisation-contact-point-tender-eval-lot, BT-171-Tender, organisation-internet-address-paying, BT-747-Lot, touchpoint-country-environ-legis-part, business-post-code, touchpoint-city-subcontractor, touchpoint-tel-tender-receip-part, touchpoint-country-environ-legis-lot, BT-771-Lot, BT-537-Part, lots-max-awarded-proc, organisation-city-employ-legis-lot, announcement-title, organisation-country-sub-serv-prov, BT-06-Lot, touchpoint-post-code-tender-receip-part, organisation-person-revieworg-part, organisation-country-sub-mediator-part, additional-information, modification-part-reference, winner-touchpoint-country, organisation-identifier-tender-receip-lot, organisation-identifier-tender-receip-part, touchpoint-email-fiscal-legis-part, BT-160-Tender, BT-92-Lot, winner-touchpoint-country-sub, organisation-tel-employ-legis-lot, BT-161-NoticeResult, BT-02-notice, organisation-gateway-tender-eval-part, touchpoint-gateway-tender-receip-lot, touchpoint-internet-address-revieworg-lot, framework-estimated-value, BT-531-Lot, internal-identifier-part, exclusion-grounds, organisation-email-reviewinfo-lot, winner-contact-point, organisation-partname-tender-receip-lot, estimated-value-proc, touchpoint-email-environ-legis-part, deadline, description-part, touchpoint-country-subcontractor, touchpoint-tel-revieworg-lot, touchpoint-country-sub-fiscal-legis-part, BT-21-Lot, place-of-performance-other-part, touchpoint-city-paying, touchpoint-name-revieworg-lot, touchpoint-email-subcontractor, BT-14-Part, notice-purpose, winner-size, buyer-touchpoint-country-sub, organisation-gateway-revieworg-part, organisation-gateway-serv-prov, organisation-street-tender-receip-lot, result-value-cur-notice, organisation-internet-address-tenderer, reserved-execution-part, BT-757-notice, place-of-performance-additional-part, BT-539-LotsGroup, organisation-name-addinfo-part, touchpoint-internet-address-tender-receip-lot, organisation-person-buyer, organisation-partname-serv-prov, touchpoint-name-serv-prov, BT-263-Part, non-award-justification, award-criterion-number-fixed-lot, procedure-identifier, touchpoint-internet-address-docprovider-lot, touchpoint-email-tender-receip-part, organisation-contact-point-fiscal-legis-lot, gpa-part, organisation-name-paying, tool-name-lot, touchpoint-partname-tender-eval-lot, touchpoint-post-code-employ-legis-lot, BT-111-Lot, organisation-country-sub-revieworg-lot, organisation-country-sub-ted-esen, BT-578-Lot, organisation-street-docprovider-lot, BT-764-Lot, group-framework-value-cur-notice, touchpoint-contact-point-signatory, ubo-country-sub, identifier-lot, organisation-name-employ-legis-lot, BT-540-LotsGroup, touchpoint-country-sub-mediator-lot, OPP-012-notice, place-of-performance-subdiv-lot, subcontracting, winner-touchpoint-contact-point, estimated-value-lot, procedure-accelerated, award-criterion-type-lot, touchpoint-country-sub-addinfo-part, touchpoint-city-environ-legis-lot, touchpoint-country-tender-receip-part, BT-193-Tender, description-lot, organisation-country-sub-reviewinfo-part, tender-value-highest, organisation-email-employ-legis-lot, organisation-city-mediator-part, organisation-contact-point-mediator-part, touchpoint-fax-tenderer, touchpoint-name-buyer, organisation-gateway-signatory, guarantee-required-description-lot, organisation-street-fiscal-legis-lot, additional-classification-lot, BT-5071-Procedure, organisation-partname-addinfo-part, organisation-name-tender-eval-part, organisation-contact-point-docprovider-part, organisation-identifier-reviewinfo-lot, organisation-name-mediator-lot, organisation-country-reviewinfo-part, award-criterion-description-glo, organisation-internet-address-reviewinfo-lot, sme-lot, organisation-partname-tender-receip-part, touchpoint-name-tender-eval-lot, BT-1375-Procedure, organisation-street-tender-eval-part, BT-728-Procedure, touchpoint-post-code-serv-prov, organisation-country-sub-reviewinfo-lot, touchpoint-internet-address-mediator-part, legal-basis, OPP-113-Business-European, touchpoint-country-docprovider-lot, BT-719-notice, organisation-gateway-docprovider-part, electronic-invoicing-lot, buyer-country, BT-5421-LotsGroup, BT-14-Lot, OPP-020-Contract, buyer-contracting-entity, electronic-auction-description-lot, award-criterion-order-justification-lot, organisation-email-revieworg-lot, organisation-street-tenderer, procedure-type, organisation-internet-address-addinfo-part, organisation-internet-address-environ-legis-lot, organisation-gateway-fiscal-legis-lot, place-of-performance-other-proc, recurrence-description-lot, organisation-email-tender-eval-part, touchpoint-gateway-employ-legis-part, BT-749-Lot, organisation-country-sub-financing, touchpoint-contact-point-mediator-lot, award-criterion-name-glo, selection-criteria-second-stage-invite-number-lot, organisation-identifier-employ-legis-lot, BT-5131-Procedure, touchpoint-internet-address-signatory, touchpoint-gateway-buyer, organisation-city-docprovider-lot, contract-duration-period-lot, organisation-identifier-subcontractor, organisation-country-sub-employ-legis-lot, winner-identifier, organisation-internet-address-buyer, used-assetlot, touchpoint-email-financing, organisation-email-ted-esen, organisation-contact-point-paying, touchpoint-city-tender-eval-lot, organisation-contact-point-tender-eval-part, organisation-city-employ-legis-part, touchpoint-contact-point-tender-receip-lot, BT-01(d)-procedure, concession-revenue-cur-buyer, BT-78-Lot, organisation-partname-employ-legis-part, dps-termination-lot, organisation-street-employ-legis-part, touchpoint-city-tender-receip-part, touchpoint-gateway-environ-legis-lot, organisation-email-fiscal-legis-lot, reserved-procurement-lot, estimated-value-part, touchpoint-tel-environ-legis-part, touchpoint-contact-point-financing, internal-identifier-proc, organisation-contact-point-reviewinfo-lot, organisation-internet-address-employ-legis-part, organisation-partname-paying, BT-540-Lot, BT-75-Lot, contract-nature-main-lot, subcontracting-obligation-maximum-lot, organisation-city-addinfo-lot, buyer-touchpoint-country, BT-40-Lot, document-official-language-part, OPP-070-notice, touchpoint-street-revieworg-lot, touchpoint-post-code-paying, touchpoint-post-code-ted-esen, framework-duration-justification-lot, organisation-country-environ-legis-lot, organisation-post-code-docprovider-lot, touchpoint-post-code-signatory, touchpoint-fax-tender-eval-lot, following-contract-lot, organisation-city-tender-eval-part, organisation-name-fiscal-legis-lot, organisation-partname-environ-legis-part, organisation-contact-point-tender-receip-part, change-notice-version-identifier, guarantee-required-lot, touchpoint-post-code-financing, activity-sector, document-restricted-url-part, organisation-country-sub-revieworg-part, organisation-partname-mediator-lot, touchpoint-country-addinfo-part, BT-130-Lot, announcement-url, notice-type, OPP-110-Business, organisation-gateway-mediator-lot, touchpoint-contact-point-subcontractor, touchpoint-tel-mediator-part, organisation-street-subcontractor, touchpoint-internet-address-employ-legis-part, touchpoint-country-sub-mediator-part, organisation-person-reviewinfo-lot, touchpoint-email-revieworg-part, SUB_LG, organisation-person-addinfo-lot, place-of-performance-add-proc, touchpoint-street-mediator-part, buyer-city, participant-name-lot, buyer-touchpoint-name, BT-1501(s)-Contract, organisation-country-revieworg-part, public-opening-description-lot, OPP-010-notice, missing-info-submission-lot, organisation-street-signatory, touchpoint-city-fiscal-legis-part, BT-09(a)-Procedure, BT-754-Lot, BT-748-Lot, organisation-name-ted-esen, BT-746-Organization, organisation-post-code-buyer, BT-115-Part, social-objective-lot, organisation-identifier-tender-eval-lot, touchpoint-contact-point-serv-prov, touchpoint-fax-docprovider-lot, tender-identifier, place-of-performance-subdiv-proc, touchpoint-name-financing, BT-201-Contract, organisation-city-tender-eval-lot, tender-validity-deadline-lot, touchpoint-email-tenderer, publication-number, touchpoint-email-mediator-lot, touchpoint-name-reviewinfo-part, contract-nature-subtype, BT-119-LotResult, organisation-country-tender-eval-lot, organisation-country-fiscal-legis-part, touchpoint-country-sub-tender-eval-lot, tender-value-cur-lowest, touchpoint-name-employ-legis-lot, BT-22-Procedure, organisation-name-subcontractor, organisation-internet-address-signatory, organisation-country-addinfo-lot, winner-decision-date, organisation-fax-docprovider-part, BT-553-Tender, OPP-120-Business, BT-755-Lot, buyer-review-compainants-val, change-procurement-documents-date, touchpoint-partname-employ-legis-part, touchpoint-country-sub-employ-legis-lot, prize-rank-lot, organisation-email-tender-receip-lot, BT-22-Part, place-of-performance-city-proc, touchpoint-gateway-tenderer, dispatch-invitation-interest-lot, buyer-touchpoint-email, BT-706-UBO, organisation-contact-point-environ-legis-lot, organisation-name-fiscal-legis-part, ubo-tel, organisation-gateway-tender-receip-lot, BT-131(d)-Lot, organisation-identifier-employ-legis-part, touchpoint-post-code-reviewinfo-part, organisation-internet-address-reviewinfo-part, touchpoint-country-employ-legis-part, description-proc, touchpoint-post-code-addinfo-part, organisation-name-tender-eval-lot, touchpoint-email-employ-legis-part, organisation-tel-addinfo-lot, TVH, organisation-tel-revieworg-lot, TVL, touchpoint-partname-signatory, touchpoint-contact-point-employ-legis-part, selection-criterion-lot, organisation-country-subcontractor, deadline-time-lot, touchpoint-post-code-fiscal-legis-part, touchpoint-email-employ-legis-lot, selection-criteria-second-stage-invite-number-threshold-lot, place-of-performance-subdiv-part, touchpoint-fax-signatory, BT-731-Tender, touchpoint-contact-point-environ-legis-lot, BT-1311(d)-Lot, organisation-post-code-employ-legis-part, organisation-tel-financing, touchpoint-city-environ-legis-part, BT-631-Lot, main-classification-part, dispatch-date, OPP-112-Business, electronic-auction-lot, contact-nature-main-part, strategic-procurement-lot, organisation-identifier-ted-esen, touchpoint-internet-address-tenderer, BT-712(a)-LotResult, received-submissions-type-val, eu-funds-identifier, contract-title, BT-5121-Part, business-street, touchpoint-country-sub-ted-esen, tender-value-lowest, touchpoint-contact-point-mediator-part, touchpoint-email-environ-legis-lot, organisation-street-addinfo-part, touchpoint-gateway-mediator-part, buyer-internet-address, winner-internet-address, OPP-031-Tender, notice-title, tender-lot-identifier, BT-41-Lot, touchpoint-tel-tender-eval-lot, BT-162-Tender, organisation-email-buyer, BT-300-LotsGroup, organisation-email-docprovider-part, organisation-country-mediator-lot, organisation-person-docprovider-part, touchpoint-country-sub-signatory, BT-728-Lot, organisation-post-code-environ-legis-lot, buyer-partname, organisation-country-sub-tender-receip-lot, concession-revenue-user, BT-743-Lot, BT-720-Tender, BT-734-LotsGroup, BT-555-Tender, touchpoint-country-addinfo-lot, touchpoint-gateway-revieworg-lot, previous-planning-identifier-part-part, deadline-date-part, organisation-street-buyer, contract-conditions-description-lot, award-criterion-number-threshold-glo, BT-36-Part, BT-115-Lot, organisation-country-sub-tender-receip-part, BT-702-notice, BT-17-Lot, BT-721-Contract, OPT-072-Lot, organisation-tel-fiscal-legis-part, organisation-post-code-reviewinfo-lot, BT-615-Lot, organisation-partname-tenderer, reward-other-lot, main-activity, touchpoint-gateway-serv-prov, contract-url, organisation-fax-financing, touchpoint-tel-ted-esen, publication-name, touchpoint-tel-environ-legis-lot, organisation-country-tender-receip-part, BT-775-Lot, organisation-tel-tenderer, organisation-email-serv-prov, place-of-performance-addtional-lot, organisation-gateway-tender-receip-part, contract-nature, touchpoint-tel-addinfo-lot, organisation-country-sub-tender-eval-part, organisation-name-environ-legis-part, lot-included-proc, buyer-identifier, organisation-tel-subcontractor, BT-774-Lot, legal-basis-notice, organisation-street-docprovider-part, BT-5141-Part, touchpoint-city-ted-esen, touchpoint-country-sub-environ-legis-lot, touchpoint-name-addinfo-part, notice-subtype, organisation-fax-ted-esen, modification-modified-contract-reference, touchpoint-post-code-subcontractor, notice-identifier, organisation-tel-fiscal-legis-lot, BT-18-Lot, touchpoint-name-reviewinfo-lot, OPP-100-Business, value-prize-cur-lot, BT-156-NoticeResult, touchpoint-post-code-tender-eval-lot, registration-place-country, organisation-internet-address-tender-eval-part, winner-city, BT-42-Lot, organisation-country-sub-fiscal-legis-lot, document-url-part, country-origin, touchpoint-country-buyer, organisation-internet-address-financing, business-name, BT-330-Procedure, organisation-email-revieworg-part, touchpoint-tel-serv-prov, organisation-gateway-reviewinfo-part, organisation-city-fiscal-legis-lot, touchpoint-partname-subcontractor, legal-basis-proc, buyer-name, modification-reason-description, BT-262-Part, BT-740-Procedure-Buyer, organisation-fax-tender-receip-part, touchpoint-gateway-addinfo-lot, BT-131(t)-Lot, touchpoint-contact-point-ted-esen, BT-763-Procedure, organisation-email-addinfo-lot, organisation-post-code-employ-legis-lot, award-criterion-complicated-lot, total-value, touchpoint-name-mediator-lot, touchpoint-partname-paying, touchpoint-country-sub-reviewinfo-part, document-url-lot, touchpoint-tel-reviewinfo-lot, touchpoint-partname-docprovider-part, BT-151-Contract, organisation-country-sub-environ-legis-lot, organisation-post-code-tender-receip-lot, organisation-gateway-reviewinfo-lot, received-submissions-type-code, BT-711-LotResult, subcontracting-value, touchpoint-street-tenderer, BT-729-Lot, winner-touchpoint-name, organisation-gateway-fiscal-legis-part, organisation-fax-tender-receip-lot, organisation-email-financing, OPT-071-Lot, BT-57-Lot, touchpoint-country-docprovider-part, touchpoint-gateway-signatory, successive-redution-lot, organisation-internet-address-environ-legis-part, touchpoint-partname-revieworg-lot, buyer-touchpoint-internet-address, organisation-name-tenderer, value-prize-lot, organisation-fax-reviewinfo-lot, organisation-partname-environ-legis-lot, organisation-country-tender-receip-lot, BT-541-Lot, title-lot, ubo-post-code, BT-144-LotResult, organisation-city-environ-legis-lot, contract-duration-period-oth-lot, additional-info-glo, BT-124-Part, organisation-identifier-reviewinfo-part, touchpoint-email-addinfo-part, touchpoint-fax-subcontractor, organisation-tel-tender-eval-part, touchpoint-internet-address-environ-legis-part, framework-buyer-categories-lot, touchpoint-email-reviewinfo-part, BT-1251-Part, award-criterion-number-lot, organisation-fax-addinfo-part, touchpoint-fax-employ-legis-lot, BT-165-Organization-Company, organisation-gateway-tenderer, touchpoint-gateway-revieworg-part, touchpoint-country-financing, deadline-receipt-request-date-lot, touchpoint-fax-revieworg-lot, buyer-contact-point, term-performance-lot, touchpoint-post-code-docprovider-part, touchpoint-tel-docprovider-lot, BT-300-Lot, organisation-internet-address-serv-prov, touchpoint-post-code-environ-legis-part, organisation-tel-reviewinfo-part, framework-estimated-value-cur, BT-773-Tender, exclusion-grounds-description, touchpoint-fax-reviewinfo-lot, BT-630(d)-Lot, touchpoint-post-code-docprovider-lot, organisation-street-employ-legis-lot, touchpoint-country-sub-buyer, BT-760-LotResult, cross-border-law-description-proc, touchpoint-city-revieworg-part, touchpoint-name-tender-receip-part, environmental-impact-lot, BT-23-Part, touchpoint-contact-point-reviewinfo-lot, touchpoint-partname-tender-receip-lot, organisation-partname-reviewinfo-lot, OPP-022-Contract, winner-touchpoint-city, BT-71-Lot, organisation-city-ted-esen, BT-1451-Contract, BT-300-procedure, organisation-tel-serv-prov, selection-criteria-second-stage-invite-number-weight-lot, contract-duration-start-date-lot, organisation-city-mediator-lot, organisation-tel-tender-receip-part, organisation-person-paying, organisation-city-reviewinfo-part, BT-200-Contract, organisation-email-tender-eval-lot, result-lot-identifier, BT-745-Lot, organisation-contact-point-revieworg-lot, BT-7531-Lot, estimated-value-cur-glo, entity-main-activity, organisation-post-code-paying, touchpoint-tel-docprovider-part, organisation-street-serv-prov, organisation-gateway-docprovider-lot, BT-13(t)-Lot, organisation-person-mediator-part, touchpoint-name-addinfo-lot, concession-revenue-cur-user, organisation-fax-signatory, electronic-ordering-lot, touchpoint-partname-mediator-part, touchpoint-partname-ted-esen, total-value-cur, organisation-internet-address-fiscal-legis-part, organisation-partname-fiscal-legis-lot, contract-duration-period-part, document-restricted-justification-part, touchpoint-name-tenderer, organisation-partname-buyer, touchpoint-fax-revieworg-part, winner-touchpoint-email, electronic-payment-lot, organisation-partname-mediator-part, organisation-contact-point-addinfo-lot, deadline-receipt-tender-time-lot, touchpoint-post-code-revieworg-lot, BT-113-Lot, BT-5011-Contract, BT-58-Lot, touchpoint-tel-revieworg-part, business-internet-address, touchpoint-fax-serv-prov, BT-765-Part, BT-15-Lot, document-unofficial-language-part, touchpoint-country-revieworg-part, touchpoint-street-mediator-lot, touchpoint-partname-buyer, award-criterion-description-lot, touchpoint-city-employ-legis-part, touchpoint-country-sub-tender-receip-lot, main-classification-proc, internal-identifier-lot, buyer-reviewrequests-irregularity-type-val, BT-531-Procedure, touchpoint-fax-fiscal-legis-part, touchpoint-internet-address-financing, organisation-email-docprovider-lot, organisation-tel-reviewinfo-lot, organisation-country-sub-tenderer, BT-44-Lot, document-unofficial-language-lot, touchpoint-contact-point-employ-legis-lot, organisation-post-code-addinfo-part, winner-listed, winner-selection-status, organisation-city-subcontractor, BT-1251-Lot, BT-543-Lot, winner-partname, organisation-city-paying, public-opening-time-lot, BT-772-Lot, BT-718-notice, touchpoint-internet-address-fiscal-legis-part, organisation-email-tender-receip-part, direct-award-justification-text-proc, BT-644-Lot, organisation-identifier-fiscal-legis-lot, touchpoint-gateway-tender-receip-part, touchpoint-fax-mediator-part, touchpoint-contact-point-revieworg-part, group-framework-value-notice, organisation-city-revieworg-lot, organisation-partname-tender-eval-part, touchpoint-street-reviewinfo-lot, BT-5071-Lot, organisation-contact-point-ted-esen, framework-value-notice, BT-262-Procedure, form-type, organisation-person-subcontractor, review-deadline-description-lot, BT-7532-Lot, organisation-street-environ-legis-lot, organisation-country-sub-addinfo-part, touchpoint-country-fiscal-legis-part, touchpoint-post-code-mediator-lot, organisation-person-revieworg-lot, organisation-gateway-addinfo-part, organisation-identifier-fiscal-legis-part, touchpoint-gateway-financing, organisation-name-docprovider-lot, touchpoint-name-tender-receip-lot, touchpoint-country-sub-environ-legis-part, BT-263-Procedure, BT-04-notice, organisation-gateway-buyer, touchpoint-country-sub-docprovider-part, organisation-street-environ-legis-part, touchpoint-email-mediator-part, BT-142-LotResult, organisation-partname-revieworg-lot, touchpoint-country-sub-addinfo-lot, touchpoint-fax-reviewinfo-part, touchpoint-email-docprovider-part, organisation-identifier-tender-eval-part, touchpoint-contact-point-environ-legis-part, BT-13714-Tender, BT-536-Part, organisation-contact-point-subcontractor, award-criteria-complicated-glo, touchpoint-gateway-reviewinfo-lot, organisation-partname-subcontractor, touchpoint-name-docprovider-part, touchpoint-post-code-buyer, touchpoint-partname-environ-legis-part, BT-300-Part, touchpoint-internet-address-serv-prov, result-value-cur-lot, BT-67(a)-Procedure, touchpoint-fax-financing, organisation-country-employ-legis-lot, organisation-person-ted-esen, touchpoint-post-code-mediator-part, organisation-gateway-tender-eval-lot, winner-name, business-country, BT-744-Lot,

page

Integer

Result page number, used to paginate results

int32

limit

Integer

Maximum number of returned notices, used to paginate results. You can retrieve up to 250 notices per page, and 10000 fields per page (the number of fields per page corresponds to the size of the &quot;fields&quot; array multiplied by the value of &quot;limit&quot;).

int32

scope

String

Search scope (LATEST: only notices of the current OJ S release, ACTIVE: only active notices, ALL: all notices)

Enum: LATEST, ACTIVE, ALL,

checkQuerySyntax

Boolean

To check the syntax of the query. When the parameter is set to 'true', the syntax of the query is checked, but the search query is not executed.

paginationMode

String

The PAGE_NUMBER mode allows you to retrieve up to 15000 notices for a given query, using pagination. To retrieve more notices, you can use the ITERATION mode. ITERATION mode does not have limitation on the number of retrievable notices, but you can't choose the page you want to retrieve. The first request will return an iterationNextToken that should be provided to the next call of the search endpoint in order to retrieve the next result page.

Enum: PAGE_NUMBER, ITERATION,

onlyLatestVersions

Boolean

Include only the latest versions

iterationNextToken

String

Opaque token returned by the previous call to the search endpoint to retrieve the next result page. It shouldn't be provided in PAGE_NUMBER mode or if this is the first request in ITERATION mode.

QueryInvalidFieldFormatDetails

Error details when expert query contains a field with an invalid format (eg. invalid date)

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: QUERY_INVALID_FIELD_FORMAT,

location

QueryLocation

fieldName

String

Invalid field name

allowedPattern

String

Allowed pattern for the values of the invalid field

QueryLocation

Error location in the query

Field Name Required Type Description Format

beginColumn

Integer

int32

beginLine

Integer

int32

endColumn

Integer

int32

endLine

Integer

int32

QuerySyntaxErrorError

Error details when expert query has a syntax error

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: QUERY_SYNTAX_ERROR,

location

QueryLocation

QueryUnknownFieldError

Error details when expert query contains an unknown field

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: QUERY_UNKNOWN_FIELD,

location

QueryLocation

fieldName

String

Unknown field name

QueryUnsupportedFieldOperationError

Error details when expert query uses an unsupported operation for a field

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: QUERY_UNSUPPORTED_FIELD_OPERATION,

location

QueryLocation

operation

String

Unsupported operation

Enum: TERM, EXACT_TERM, PHRASE, EXACT_PHRASE, WILDCARD, PREFIX, EXIST, COMPARISON, SORT,

fieldName

String

Name of the field with the unsupported operation

QueryUnsupportedFieldValueError

Error details when expert query uses an unsupported value for a field

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: QUERY_UNSUPPORTED_FIELD_VALUE,

location

QueryLocation

fieldName

String

Name of the field with the unsupported operation

fieldValue

String

Unsupported value

Search200Response

Field Name Required Type Description Format

notices

List of NoticeResponse

Found notices

totalNoticeCount

Long

Total number of notices matching the search query

int64

iterationNextToken

String

Generated token use to store the position inside of the search. Optional if PAGE_NUMBER pagination mode, mandatory if ITERATION mode

Search400Response

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: INVALID_ITERATION_TOKEN,

location

QueryLocation

fieldName

String

Name of the field with the unsupported operation

allowedPattern

String

Allowed pattern for the values of the invalid field

operation

String

Unsupported operation

Enum: TERM, EXACT_TERM, PHRASE, EXACT_PHRASE, WILDCARD, PREFIX, EXIST, COMPARISON, SORT,

fieldValue

String

Unsupported value

cause

UnsupportedValueException_cause

stackTrace

List of [UnsupportedValueException_cause_stackTrace_inner]

error

UnsupportedValueError

message

String

suppressed

List of [UnsupportedValueException_cause]

localizedMessage

String

UnsupportedValueError

Error details when a parameter contains an unsupported value

Field Name Required Type Description Format

type

String

Code to identify the error type

Enum: UNSUPPORTED_VALUE,

parameterName

String

Name of the parameter with the unsupported value

unsupportedValue

String

Unsupported value

UnsupportedValueException

Field Name Required Type Description Format

cause

UnsupportedValueException_cause

stackTrace

List of [UnsupportedValueException_cause_stackTrace_inner]

error

UnsupportedValueError

message

String

suppressed

List of [UnsupportedValueException_cause]

localizedMessage

String

UnsupportedValueExceptionCause

Field Name Required Type Description Format

stackTrace

List of [UnsupportedValueException_cause_stackTrace_inner]

message

String

localizedMessage

String

UnsupportedValueExceptionCauseStackTraceInner

Field Name Required Type Description Format

classLoaderName

String

moduleName

String

moduleVersion

String

methodName

String

fileName

String

lineNumber

Integer

int32

className

String

nativeMethod

Boolean