From cf79c9751717f650f03926375a16f245c2be0abe Mon Sep 17 00:00:00 2001 From: Tim Davies Date: Mon, 29 Jan 2018 15:42:37 +0000 Subject: [PATCH 1/3] Adding missing descriptions. Addresses https://github.com/open-contracting/ocds-extensions/issues/40. --- release-schema.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/release-schema.json b/release-schema.json index 3bf2029..a7425be 100644 --- a/release-schema.json +++ b/release-schema.json @@ -2,6 +2,7 @@ "definitions": { "ParticipationFee": { "title": "Participation fee", + "description": "A fee applicable to bidders wishing to participate in the tender process. Fees may apply for access to bidding documents, for the submission of bids or there may be a win fee payable by the successful bidder.", "type": "object", "properties": { "id": { @@ -29,6 +30,8 @@ "openCodelist": false }, "value": { + "title": "Value", + "description": "The monetary value of this fee.", "$ref": "#/definitions/Value" }, "description": { From 4499e1317e0ea98f4154ecb693cba6af9a50990b Mon Sep 17 00:00:00 2001 From: Tim Davies Date: Mon, 29 Jan 2018 15:45:17 +0000 Subject: [PATCH 2/3] Adding changelog. --- README.md | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index b9c8091..05b0cb2 100644 --- a/README.md +++ b/README.md @@ -67,11 +67,15 @@ In some cases, a fee may be levied for 'official copies' of procurement document In this case, the fee should be modelled as a **submission** fee, as submission is only possible when this document access fee has been paid. -## To do - -* participation / submission terminology -* finalize codelist - ## Issues Report issues for this extension in the [ocds-extensions repository](https://github.com/open-contracting/ocds-extensions/issues), putting the extension's name in the issue's title. + +## Changelog + +* Disallow `ParticipationFee.type` from having null in its array of strings +* Allow `ParticipationFee.description` to be null +* Add description to `ParticipationFee` +* Add title and description to `ParticipationFee.value` +* Add participationFeeType.csv codelist for `ParticipationFee.type` +* Add tests and tidy code \ No newline at end of file From 42f3b816d0cb4ed15a4458f73253f18d0faf6a61 Mon Sep 17 00:00:00 2001 From: James McKinney Date: Mon, 29 Jan 2018 14:49:41 -0500 Subject: [PATCH 3/3] Add "Add `ParticipationFee.id` field" to changelog --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 05b0cb2..24a8b36 100644 --- a/README.md +++ b/README.md @@ -73,9 +73,12 @@ Report issues for this extension in the [ocds-extensions repository](https://git ## Changelog +### v1.1.3 + * Disallow `ParticipationFee.type` from having null in its array of strings * Allow `ParticipationFee.description` to be null +* Add `ParticipationFee.id` field * Add description to `ParticipationFee` * Add title and description to `ParticipationFee.value` * Add participationFeeType.csv codelist for `ParticipationFee.type` -* Add tests and tidy code \ No newline at end of file +* Add tests and tidy code