Documentation
Adds an award criteria array to the Lot and LotGroup objects, to break down award criteria by price, cost and quality.
Contexto legal
In the European Union, this extension's fields correspond to eForms BG-707 (Award Criteria).For correspondences to eForms fields, see OCDS for eForms. For correspondences to Tenders Electronic Daily (TED), see OCDS for the European Union.
Directiva 2014/24/EU Artículo 67(5) describe ponderaciones y órdenes de importancia.
Ejemplos
Lotes
Peso
The award criteria for the lot 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"
                }
              ]
            }
          ]
        }
      }
    ]
  }
}
Fijado
The price of the lot 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"
                }
              ]
            }
          ]
        }
      }
    ]
  }
}
Grupo del lote
The award criteria for the lot group is 100% price.
{
  "tender": {
    "lotGroups": [
      {
        "id": "1",
        "awardCriteria": {
          "criteria": [
            {
              "type": "price",
              "name": "Price",
              "numbers": [
                {
                  "number": 100,
                  "weight": "percentageExact"
                }
              ]
            }
          ]
        }
      }
    ]
  }
}
Issues
Reporte issues para esta extensión en el repositorio de extensiones ocds, poniendo el nombre de la extensión en el título del issue.
Registro de cambios
2022-04-25
- Add expressions of interest to the 
criterionThreshold.csvcode descriptions. - Generalize AwardCriterionNumber to 
CriterionNumberfor reuse in other extensions. 
2022-02-27
- Add 
LotGroup.awardCriteriafield. 
2020-04-24
- Agregar las propiedades 
minProperties,minItemsy/ominLength. 
Este modelo fue discutido en https://github.com/eForms/eForms/issues/119, https://github.com/eprocurementontology/eprocurementontology/issues/157 y https://github.com/eprocurementontology/eprocurementontology/issues/203. Esta extensión fue discutida originalmente como parte de OCDS para el perfil de la UE, en pull requests y en https://github.com/open-contracting/standard/issues/443.