Documentation
Agregar campos a los objetos de la licitación y del lote, para describir las opciones de los términos de renovación de los contratos.
Contexto legal
En la Unión Europea, los campos de esta extensión corresponden a eForms BT-57 (Renewal Description). Ver OCDS para la Unión Europea para las correspondencias a Tenders Electronic Daily (TED).
Guía
Si el número de veces que se puede renovar un contrato es un número exacto y no un rango, establecer minimumRenewals
y maximumRenewals
al mismo número.
Ejemplo
{
"tender": {
"lots": [
{
"id": "lot-1",
"title": "Architectural services",
"description": "For architectural services delivered in the project",
"status": "active",
"value": {
"currency": "GBP",
"amount": 200000
},
"contractPeriod": {
"startDate": "2020-10-10T00:00:00Z",
"endDate": "2021-11-10T00:00:00Z"
},
"hasRenewal": false
},
{
"id": "lot-2",
"title": "Civil engineering services",
"description": "For civil engineering services delivered in the project",
"status": "active",
"value": {
"currency": "GBP",
"amount": 400000
},
"contractPeriod": {
"startDate": "2020-12-10T00:00:00Z",
"endDate": "2021-12-10T00:00:00Z"
},
"hasRenewal": true,
"renewal": {
"description": "The contracting authority reserves the right to extend the term for a period or periods of up to 1 year with a maximum of 2 such extensions on the same terms and conditions, subject to the contracting authority’s obligations at law.",
"maximumRenewals": 2,
"period": {
"durationInDays": 365
}
}
},
{
"id": "lot-3",
"title": "Structural engineering",
"description": "For structural engineering consultancy delivered in the project",
"status": "active",
"value": {
"currency": "GBP",
"amount": 600000
},
"contractPeriod": {
"startDate": "2021-02-10T00:00:00Z",
"endDate": "2022-02-10T00:00:00Z"
},
"hasRenewal": true,
"renewal": {
"description": "Contracts are due to be renewed one time at the end of the initial term.",
"minimumRenewals": 3,
"maximumRenewals": 3,
"period": {
"startDate": "2021-02-10T00:00:00Z",
"endDate": "2024-02-10T00:00:00Z"
}
}
}
]
}
}
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
2021-01-19
- Agregar los campos
hasRenewal
yrenewal
al objeto Tender.
2020-10-06
- Agregar los campos
minimumRenewals
,maximumRenewals
yperiod
al objetoRenewal
.
2020-04-24
- Agregar las propiedades
minProperties
,minItems
y/ominLength
.
Esta extensión se discutió originalmente como parte del [OCDS para el perfil de la UE] (https://github.com/open-contracting-extensions/european-union/issues) en issue 22 y en pull requests.