Documentation
Adds an award criteria array to the lot object, to break down award criteria by price, cost and quality.
Legal context
In the European Union, this extension's fields correspond to eForms BG-707 (Award Criteria). See OCDS for the European Union for the correspondences to Tenders Electronic Daily (TED).
Directive 2014/24/EU Article 67(5) describes weightings and orders of importance.
Examples
Weight
These award criteria are 50% service quality and 50% price.
{
"tender": {
"lots": [
{
"id": "1",
"awardCriteria": {
"criteria": [
{
"type": "quality",
"name": "Service quality",
"numbers": [
{
"number": 50,
"weight": "percentageExact"
}
]
},
{
"type": "price",
"name": "Price",
"numbers": [
{
"number": 50,
"weight": "percentageExact"
}
]
}
]
}
}
]
}
}
Fixed
The price is fixed at $100,000, such that tenderers compete on quality only.
{
"tender": {
"lots": [
{
"id": "1",
"awardCriteria": {
"criteria": [
{
"type": "price",
"name": "Fixed price",
"numbers": [
{
"number": 100000,
"fixed": "total"
},
{
"number": 0,
"weight": "decimalExact"
}
]
},
{
"type": "quality",
"name": "Service quality",
"numbers": [
{
"number": 1,
"weight": "decimalExact"
}
]
}
]
}
}
]
}
}
Issues
Report issues for this extension in the ocds-extensions repository, putting the extension's name in the issue's title.
Changelog
2020-04-24
- Add
minProperties
,minItems
and/orminLength
properties.
This model was discussed in https://github.com/eForms/eForms/issues/119, https://github.com/eprocurementontology/eprocurementontology/issues/157 and https://github.com/eprocurementontology/eprocurementontology/issues/203. This extension was originally discussed as part of the OCDS for EU profile, in pull requests and in https://github.com/open-contracting/standard/issues/443.