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

Replace Award.relatedBid with Award.relatedBids #46

Merged
merged 3 commits into from
Feb 8, 2022
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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@ Below is an example of a bids extension:
"description": "Award of Example PPP contract to Mega Consortium",
"status": "active",
"date": "2016-12-17T10:00:00-06:00",
"relatedBid": "1"
"relatedBids": [
"1"
]
}
]
}
Expand All @@ -122,6 +124,7 @@ Report issues for this extension in the [ocds-extensions repository](https://git

### Unreleased

* Add `Award.relatedBids` field, and deprecate `Award.relatedBid` field
* Add `BidsStatistic.valueGross` field
* Add `Bid.validityPeriod` field
* Add `Bid.description` field
Expand Down
17 changes: 16 additions & 1 deletion release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,22 @@
"type": [
"string",
"null"
]
],
"deprecated": {
"description": "This field is deprecated in favor of `relatedBids`, to allow an award to combine multiple bids.",
"deprecatedVersion": "1.2"
}
},
"relatedBids": {
"title": "Related bids",
"description": "Where bid details are used, a cross reference to the entries in the bids array to which this award relates. Provide the bid identifiers here.",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
}
},
Expand Down