From fcac6d0b405415df079c087a81eb6bc29359162c Mon Sep 17 00:00:00 2001 From: Anna Halii Date: Fri, 8 Nov 2024 14:25:10 +0200 Subject: [PATCH] Init requestForProposal tender --- .../tender_procurement_method_type.json | 8 + .../TenderConfig/requestForProposal.json | 160 ++++++++++++++++++ index.html | 4 + 3 files changed, 172 insertions(+) create mode 100644 data_model/schema/TenderConfig/requestForProposal.json diff --git a/codelists/tender/tender_procurement_method_type.json b/codelists/tender/tender_procurement_method_type.json index 018b9d3..3839933 100644 --- a/codelists/tender/tender_procurement_method_type.json +++ b/codelists/tender/tender_procurement_method_type.json @@ -7,6 +7,14 @@ "description_uk": "Закупівля, що регулює придбання товарів, робіт і послуг в межах сум, встановлених Законом (від 50,000 гривень до 200,000 гривень для товарів і послуг, або 1,500,000 гривень для робіт).", "name_uk": "Спрощена закупівля" }, + "requestForProposal": { + "autoInitiated": false, + "procurementMethod": "open", + "description_en": "A procedure conducted under specific rules that may be applied by contracting authorities when funded by international organizations.", + "name_en": "Procurement according to organizer's rules", + "description_uk": "Процедура, яка проводиться за окремими правилами та може застосовуватись замовниками при фінансуванні міжнародними організаціями.", + "name_uk": "Торги за правилами організатора" + }, "aboveThreshold": { "autoInitiated": false, "procurementMethod": "open", diff --git a/data_model/schema/TenderConfig/requestForProposal.json b/data_model/schema/TenderConfig/requestForProposal.json new file mode 100644 index 0000000..ec7320b --- /dev/null +++ b/data_model/schema/TenderConfig/requestForProposal.json @@ -0,0 +1,160 @@ +{ + "type": "object", + "properties": { + "hasAuction": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": true + }, + "hasAwardingOrder": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": true + }, + "hasValueRestriction": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": true + }, + "valueCurrencyEquality": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": true + }, + "hasPrequalification": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": false + }, + "minBidsNumber": { + "type": "integer", + "minimum": 1, + "maximum": 9, + "default": 1 + }, + "hasPreSelectionAgreement": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": false + }, + "hasTenderComplaints": { + "type": "boolean", + "enum": [ + false + ], + "default": false + }, + "hasAwardComplaints": { + "type": "boolean", + "enum": [ + false + ], + "default": false + }, + "hasCancellationComplaints": { + "type": "boolean", + "enum": [ + false + ], + "default": false + }, + "hasValueEstimation": { + "type": "boolean", + "enum": [ + true, + false + ], + "default": true + }, + "hasQualificationComplaints": { + "type": "boolean", + "enum": [ + false + ], + "default": false + }, + "tenderComplainRegulation": { + "type": "integer", + "minimum": 0, + "maximum": 0, + "default": 0 + }, + "qualificationComplainDuration": { + "type": "integer", + "minimum": 0, + "maximum": 0, + "default": 0 + }, + "awardComplainDuration": { + "type": "integer", + "minimum": 2, + "maximum": 2, + "default": 2 + }, + "cancellationComplainDuration": { + "type": "integer", + "minimum": 0, + "maximum": 0, + "default": 0 + }, + "clarificationUntilDuration": { + "type": "integer", + "minimum": 1, + "maximum": 1, + "default": 1 + }, + "qualificationDuration": { + "type": "integer", + "minimum": 20, + "maximum": 20, + "default": 20 + }, + "restricted": { + "type": "boolean", + "enum": [ + false + ], + "default": false + } + }, + "required": [ + "hasAuction", + "hasAwardingOrder", + "hasValueRestriction", + "valueCurrencyEquality", + "hasPrequalification", + "minBidsNumber", + "hasPreSelectionAgreement", + "hasTenderComplaints", + "hasAwardComplaints", + "hasCancellationComplaints", + "hasValueEstimation", + "hasQualificationComplaints", + "tenderComplainRegulation", + "qualificationComplainDuration", + "awardComplainDuration", + "cancellationComplainDuration", + "clarificationUntilDuration", + "qualificationDuration", + "restricted" + ], + "additionalProperties": false +} diff --git a/index.html b/index.html index 0815950..57f674a 100644 --- a/index.html +++ b/index.html @@ -487,6 +487,10 @@ json ] +
  • requestForProposal [ + json + ] +
  • closeFrameworkAgreementSelectionUA [ json ]