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 hasRenewal and renewal to award and contract #6

Merged
merged 2 commits into from
May 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Renewal

Adds fields to the Tender and Lot objects to describe the options for the renewal of contracts.
Adds fields to the Tender, Lot, Award and Contract objects to describe the options for the renewal of contracts.

## Legal context

Expand Down Expand Up @@ -88,6 +88,15 @@ Report issues for this extension in the [ocds-extensions repository](https://git

## Changelog

### 2024-05-02

* Add fields:
* `Award.hasRenewal`
* `Award.renewal`
* `Contract.hasRenewal`
* `Contract.renewal`
* Clarify description of `Tender.hasRenewal` and `Lot.hasRenewal`.

### 2021-01-19

* Add fields:
Expand Down
42 changes: 38 additions & 4 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,49 @@
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the contracts can be renewed.",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s).",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contracts.",
"description": "The options for the renewal of the contract(s).",
"$ref": "#/definitions/Renewal"
}
}
},
"Award": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s).",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract(s).",
"$ref": "#/definitions/Renewal"
}
}
},
"Contract": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer reserves the right to renew the contract.",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract.",
"$ref": "#/definitions/Renewal"
}
}
Expand All @@ -21,15 +55,15 @@
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the contract related to the lot can be renewed.",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s) related to the lot.",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract related to the lot.",
"description": "The options for the renewal of the contract(s) related to the lot.",
"$ref": "#/definitions/Renewal"
}
}
Expand Down