Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tender.standstillPeriod field #1421

Merged
merged 6 commits into from
Dec 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/history/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ Per the [normative and non-normative content and changes policy](https://docs.go
* Add new fields:
* [#1335](https://github.com/open-contracting/standard/pull/1335) `planning.id`
* [#1324](https://github.com/open-contracting/standard/pull/1324) `tender.datePublished`
* [#1421](https://github.com/open-contracting/standard/pull/1421) `tender.standstillPeriod`
* [#1165](https://github.com/open-contracting/standard/pull/1165) `statusDetails` to `Tender`, `Award` and `Contract`
* [#1125](https://github.com/open-contracting/standard/pull/1125) `Item.unit.weight`
* [#1326](https://github.com/open-contracting/standard/pull/1326) `links`
Expand Down
84 changes: 84 additions & 0 deletions schema/dereferenced-release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4422,6 +4422,48 @@
}
}
},
"standstillPeriod": {
"title": "Standstill period",
"description": "The period before the contract signature during which the award decision can be challenged. This period typically starts on the date on which the tenderers are informed about the award decision.",
"type": "object",
"properties": {
"startDate": {
"title": "Start date",
"description": "The start date for the period. When known, a precise start date must be provided.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"endDate": {
"title": "End date",
"description": "The end date for the period. When known, a precise end date must be provided.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"maxExtentDate": {
"description": "The period cannot be extended beyond this date. This field can be used to express the maximum available date for extension or renewal of this period.",
"format": "date-time",
"title": "Maximum extent",
"type": [
"string",
"null"
]
},
"durationInDays": {
"description": "The maximum duration of this period in days. A user interface can collect or display this data in months or years as appropriate, and then convert it into days when storing this field. This field can be used when exact dates are not known. If a startDate and endDate are set, this field, if used, must be equal to the difference between startDate and endDate. Otherwise, if a startDate and maxExtentDate are set, this field, if used, must be equal to the difference between startDate and maxExtentDate.",
"title": "Duration (days)",
"type": [
"integer",
"null"
]
}
}
},
"contractPeriod": {
"title": "Contract period",
"description": "The period over which the contract is estimated or required to be active. If the tender does not specify explicit dates, the duration field may be used.",
Expand Down Expand Up @@ -16170,6 +16212,48 @@
}
}
},
"standstillPeriod": {
"title": "Standstill period",
"description": "The period before the contract signature during which the award decision can be challenged. This period typically starts on the date on which the tenderers are informed about the award decision.",
"type": "object",
"properties": {
"startDate": {
"title": "Start date",
"description": "The start date for the period. When known, a precise start date must be provided.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"endDate": {
"title": "End date",
"description": "The end date for the period. When known, a precise end date must be provided.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"maxExtentDate": {
"description": "The period cannot be extended beyond this date. This field can be used to express the maximum available date for extension or renewal of this period.",
"format": "date-time",
"title": "Maximum extent",
"type": [
"string",
"null"
]
},
"durationInDays": {
"description": "The maximum duration of this period in days. A user interface can collect or display this data in months or years as appropriate, and then convert it into days when storing this field. This field can be used when exact dates are not known. If a startDate and endDate are set, this field, if used, must be equal to the difference between startDate and endDate. Otherwise, if a startDate and maxExtentDate are set, this field, if used, must be equal to the difference between startDate and maxExtentDate.",
"title": "Duration (days)",
"type": [
"integer",
"null"
]
}
}
},
"contractPeriod": {
"title": "Contract period",
"description": "The period over which the contract is estimated or required to be active. If the tender does not specify explicit dates, the duration field may be used.",
Expand Down
5 changes: 5 additions & 0 deletions schema/release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,11 @@
"description": "The period for decision making regarding the contract award. The end date should be the date on which an award decision is due to be finalized. The start date may be used to indicate the start of an evaluation period.",
"$ref": "#/definitions/Period"
},
"standstillPeriod": {
"title": "Standstill period",
"description": "The period before the contract signature during which the award decision can be challenged. This period typically starts on the date on which the tenderers are informed about the award decision.",
"$ref": "#/definitions/Period"
},
"contractPeriod": {
"description": "The period over which the contract is estimated or required to be active. If the tender does not specify explicit dates, the duration field may be used.",
"title": "Contract period",
Expand Down
3 changes: 3 additions & 0 deletions schema/versioned-release-validation-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,9 @@
"awardPeriod": {
"$ref": "#/definitions/Period"
},
"standstillPeriod": {
"$ref": "#/definitions/Period"
},
"contractPeriod": {
"$ref": "#/definitions/Period"
},
Expand Down