Documentation

Adds fields to the tender, lot and lot group objects to describe the use of techniques, such as framework agreements, dynamic purchasing systems and electronic auctions. Also, adds a field to the tender object in a framework agreement call-off to indicate if it is competitive or direct.

Guía

value y period del acuerdo marco

Los campos value y period de los objetos FrameworkAgreement solo deben usarse si una fuente de datos proporciona valores y períodos tanto para el contrato / lote como para el acuerdo marco, como TED XML Schema R2.08. De lo contrario:

  • Si una adquisición no está dividida en lotes, utilice los campos tender.value y tender.contractPeriod.
  • Si una adquisición se divide en lotes, utilice los campos value y contractPeriod de los objetos Lot.

method del acuerdo marco

Estos son los posibles valores del campo method de un acuerdo marco y sus sinónimos más comunes:

  • withoutReopeningCompetition: cancelaciones
  • withReopeningCompetition: mini-competencias
  • withAndWithoutReopeningCompetition: cancelaciones y mini-competencias

In the European Union, this extension's fields correspond to eForms BG-706 (Techniques), BG-157 (Group Framework Maximum Value and BT-271 (Framework Maximum Value). For correspondences to eForms fields, see OCDS for eForms. For correspondences to Tenders Electronic Daily (TED), see OCDS for the European Union.

Ejemplos

Acuerdo marco

{
  "tender": {
    "lots": [
      {
        "id": "1",
        "techniques": {
          "hasFrameworkAgreement": true,
          "frameworkAgreement": {
            "minimumParticipants": 2,
            "maximumParticipants": 100,
            "method": "withoutReopeningCompetition",
            "periodRationale": "<A good justification>",
            "buyerCategories": "all hospitals in the Tuscany region",
            "value": {
              "amount": 240000,
              "currency": "EUR"
            },
            "period": {
              "durationInDays": 730
            },
            "description": "Call offs are estimated to be organized every 3 months, with an average value of 60,000 euros per contract."
          }
        }
      }
    ]
  }
}

Sistema de compra dinámica

{
  "tender": {
    "lots": [
      {
        "id": "1",
        "techniques": {
          "hasDynamicPurchasingSystem": true,
          "dynamicPurchasingSystem": {
            "type": "closed",
            "status": "active"
          }
        }
      }
    ]
  }
}

Subasta electrónica

{
  "tender": {
    "lots": [
      {
        "id": "1",
        "techniques": {
          "hasElectronicAuction": true,
          "electronicAuction": {
            "url": "https://example.com/auction/1",
            "description": "<Any relevant details>"
          }
        }
      }
    ]
  }
}

Direct call-off

{
  "tender": {
    "id": "2421-1016-CM20",
    "procuringEntity": {
      "name": "I.MUNICIPALIDAD DE CONCEPCION | DIRECCION DE SALUD MUNICIPAL DE CONCEPCION",
      "id": "CL-MP-3413"
    },
    "competitive": false
  },
  "awards": [
    {
      "id": "42133251",
      "title": "JERINGAS DAS CONCEPCION",
      "description": "2239-16-LR15 Órtesis, Prótesis, Endoprótesis e Insumos de Salud. FINANCIAMIENTO: 215.22.04.005.001 SP 28 SE SOLICITA LA ACEPTACIÓN DE ESTA ORCOM A TRAVÉS DE LA PLATAFORMA MERCADO PUBLICO ANTES DE REALIZAR LA ENTREGA DEL BIEN O SERVICIO",
      "status": "active",
      "date": "2020-06-23T15:40:44Z",
      "value": {
        "amount": 7526475.0,
        "currency": "CLP"
      },
      "suppliers": [
        {
          "name": "Tecnika S.A. | Tecnika S.A.",
          "id": "CL-MP-27291"
        }
      ],
      "items": [
        {
          "id": "111570611",
          "description": "Aparatos de inyección hipodérmica o accesorios(1391678 )JERINGA HIPODERMICA CONTROLADA VENOTEK 10ML LUER LOCK CON AGUJA 21GX1 1/2 100 UNIDADES 1418179",
          "quantity": 500.0,
          "unit": {
            "value": {
              "amount": 4228.0,
              "currency": "CLP"
            }
          }
        }
      ]
    }
  ],
  "relatedProcesses": [
    {
      "id": "1",
      "relationship": [
        "framework"
      ],
      "title": "Órtesis, Prótesis, Endoprótesis e Insumos de Salud",
      "scheme": "ocid",
      "identifier": "ocds-70d2nz-2239-16-LR15"
    }
  ]
}

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

2023-06-07

  • Merge the Competitive extension.
  • Add LotGroup.techniques field.

2020-10-05

  • Add fields:
    • FrameworkAgreement.minimumParticipants
    • FrameworkAgreement.value
    • FrameworkAgreement.period
    • FrameworkAgreement.description

2020-04-24

  • Agregar las propiedades minProperties, minItems y/o minLength.

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 [pull requests] (https://github.com/open-contracting-extensions/ocds_techniques_extension/pulls?q=is%3Apr+is%3Aclosed) y en https://github.com/open-contracting/standard/issues/695.