Skip to content

Commit

Permalink
Init requestForProposal tender
Browse files Browse the repository at this point in the history
  • Loading branch information
Anna Halii authored and Anna Halii committed Nov 8, 2024
1 parent e89fcf5 commit fcac6d0
Show file tree
Hide file tree
Showing 3 changed files with 172 additions and 0 deletions.
8 changes: 8 additions & 0 deletions codelists/tender/tender_procurement_method_type.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
160 changes: 160 additions & 0 deletions data_model/schema/TenderConfig/requestForProposal.json
Original file line number Diff line number Diff line change
@@ -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
}
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,10 @@
<a href="./data_model/schema/TenderConfig/belowThreshold.json" target="_blank">json
</a> ]
</li>
<li>requestForProposal [
<a href="./data_model/schema/TenderConfig/requestForProposal.json" target="_blank">json
</a> ]
</li>
<li>closeFrameworkAgreementSelectionUA [
<a href="./data_model/schema/TenderConfig/closeFrameworkAgreementSelectionUA.json" target="_blank">json
</a> ]
Expand Down

0 comments on commit fcac6d0

Please sign in to comment.