Skip to content

Commit

Permalink
add hasRenewal and renewal to award and contract
Browse files Browse the repository at this point in the history
  • Loading branch information
odscjen committed May 3, 2024
1 parent 4f2ecdf commit d7c0b47
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 5 deletions.
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

0 comments on commit d7c0b47

Please sign in to comment.