Skip to content

Commit

Permalink
[EPAM-40] Framework clarificationUntilDuration
Browse files Browse the repository at this point in the history
Add frameworks clarificationUntilDuration config.
  • Loading branch information
zhtnk committed Jun 24, 2024
1 parent 9ed57fb commit b43eccd
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
6 changes: 6 additions & 0 deletions codelists/frameworks/framework_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,11 @@
"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": "Кількість днів для надання пояснень на звернення ≧ 0 (календарні дні)",
"description_uk": "Параметр, який встановлює кількість днів для надання відповіді замовником на звернення",
"name_en": "The number of days to provide explanations for the request ≧ 0 (calendar days)",
"description_en": "The parameter that sets the number of days for the customer to respond to the request"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,17 @@
false
],
"default": false
},
"clarificationUntilDuration": {
"type": "integer",
"minimum": 3,
"maximum": 3,
"default": 3
}
},
"required": [
"restrictedDerivatives"
"restrictedDerivatives",
"clarificationUntilDuration"
],
"additionalProperties": false
}
9 changes: 8 additions & 1 deletion data_model/schema/FrameworkConfig/electronicCatalogue.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,17 @@
false
],
"default": false
},
"clarificationUntilDuration": {
"type": "integer",
"minimum": 3,
"maximum": 3,
"default": 3
}
},
"required": [
"restrictedDerivatives"
"restrictedDerivatives",
"clarificationUntilDuration"
],
"additionalProperties": false
}

0 comments on commit b43eccd

Please sign in to comment.