Skip to content

Commit

Permalink
Merge pull request #268 from ProzorroUKR/epam-framework-config
Browse files Browse the repository at this point in the history
[EPAM] Framework config
  • Loading branch information
smithumble committed Aug 28, 2024
2 parents a8e5a87 + 0f8bc04 commit dacb9c0
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 2 deletions.
12 changes: 12 additions & 0 deletions codelists/frameworks/framework_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,17 @@
"description_uk": "Параметр, що визначає наявність або відсутність обмеження публічного доступу до структур даних, що є похідними доступного в публічному АРІ обʼєкту",
"name_en": "Partially restricted access",
"description_en": "A parameter that determines the presence or absence of a restriction on public access to data structures that are derivatives of an object available in the public API"
},
"clarificationUntilDuration": {
"name_uk": "Кількість днів для надання пояснень на звернення",
"description_uk": "Параметр, який встановлює кількість днів для надання відповіді замовником на звернення",
"name_en": "The number of days to provide explanations for the request",
"description_en": "The parameter that sets the number of days for the customer to respond to the request"
},
"qualificationComplainDuration": {
"name_uk": "Тривалість оскарження результатів кваліфікації",
"description_uk": "Параметр, що визначає тривалість періоду оскарження результатів проведення кваліфікації учасників",
"name_en": "The duration of appealing the qualification results",
"description_en": "The parameter that determines the duration of the period for appealing the results of participant qualification"
}
}
16 changes: 15 additions & 1 deletion data_model/schema/FrameworkConfig/dynamicPurchasingSystem.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,24 @@
false
],
"default": false
},
"clarificationUntilDuration": {
"type": "integer",
"minimum": 3,
"maximum": 3,
"default": 3
},
"qualificationComplainDuration": {
"type": "integer",
"minimum": 0,
"maximum": 0,
"default": 0
}
},
"required": [
"restrictedDerivatives"
"restrictedDerivatives",
"clarificationUntilDuration",
"qualificationComplainDuration"
],
"additionalProperties": false
}
16 changes: 15 additions & 1 deletion data_model/schema/FrameworkConfig/electronicCatalogue.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,24 @@
false
],
"default": false
},
"clarificationUntilDuration": {
"type": "integer",
"minimum": 3,
"maximum": 3,
"default": 3
},
"qualificationComplainDuration": {
"type": "integer",
"minimum": 0,
"maximum": 0,
"default": 0
}
},
"required": [
"restrictedDerivatives"
"restrictedDerivatives",
"clarificationUntilDuration",
"qualificationComplainDuration"
],
"additionalProperties": false
}

0 comments on commit dacb9c0

Please sign in to comment.