Skip to content

add verificationMethod field #8

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

Merged
merged 3 commits into from
Feb 16, 2024
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
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Potential suppliers and subcontractors must demonstrate a minimum of 10 years ex

### Lot

A tender with a single lot where the selection criterion only applies for selecting candidates to be invited to the second stage of the procedure. The candidates will be selected only if the rate of their turnover over the value of the contract is at least 2.
A tender with a single lot where the selection criterion only applies for selecting candidates to be invited to the second stage of the procedure. The candidates will be selected only if the rate of their turnover over the value of the contract is at least 2. The procuring entity will use annual accounts from the previous two financial years to verify the candidates' turnover.

```json
{
Expand All @@ -61,7 +61,8 @@ A tender with a single lot where the selection criterion only applies for select
"number": 2,
"threshold": "minimumScore"
}
]
],
"verificationMethod": "Annual accounts from previous 2 financial years."
}
]
}
Expand All @@ -77,6 +78,10 @@ Report issues for this extension in the [ocds-extensions repository](https://git

## Changelog

### 2024-01-25

* Add `verificationMethod` field to the `SelectionCriterion` object.

### 2023-04-05

* Add `forReduction` and `numbers` fields to the `SelectionCriterion` object. The `numbers` field reuses the `CriterionNumber` definition from the [Award criteria breakdown](https://extensions.open-contracting.org/en/extensions/awardCriteria/master/) extension.
Expand Down
13 changes: 11 additions & 2 deletions release-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"properties": {
"selectionCriteria": {
"title": "Selection criteria",
"description": "Information about the conditions for participation in a procedure.",
"description": "The minimum requirements for potential suppliers to participate in the contracting process. Selection criteria ensure that a potential supplier has the legal and financial capacities and the technical and professional abilities to perform the contract.",
"$ref": "#/definitions/SelectionCriteria"
}
}
Expand Down Expand Up @@ -36,7 +36,7 @@
},
"description": {
"title": "Description",
"description": "The description of the criteria used to select the economic operators who will be allowed to bid.",
"description": "The description of the criteria.",
"type": [
"string",
"null"
Expand Down Expand Up @@ -123,6 +123,15 @@
"wholeListMerge": true,
"uniqueItems": true,
"minItems": 1
},
"verificationMethod": {
"title": "Verification method",
"description": "The methods the buyer or procuring entity uses to verify the potential supplier satisfies the criterion.",
"type": [
"string",
"null"
],
"minLength": 1
}
},
"minProperties": 1
Expand Down