Documentation

Adds an object to the tender and lot objects to describe a design contest.

In the European Union, this extension's fields correspond to eForms BG-704 (Reward and Jury) and BG-44 (Prize) and Title III, Chapter II of Directive 2014/24/EU. For correspondences to eForms fields, see OCDS for eForms. For correspondences to Tenders Electronic Daily (TED), see OCDS for the European Union.

Examples

A contracting process with a single prize.

{
  "tender": {
    "designContest": {
      "selectedParticipants": [
        {
          "id": "1",
          "name": "Brigitte Hermon"
        },
        {
          "id": "2",
          "name": "Paolo Travino"
        }
      ],
      "hasPrizes": true,
      "prizes": {
        "description": "The winner(s) will receive a prize of EUR 3,000.00 (VAT free).",
        "details": [
          {
            "id": "1",
            "value": {
              "amount": 3000,
              "currency": "EUR"
            }
          }
        ]
      },
      "rewardsDetails": "The payment is made by administrative mandate within 30 days in accordance with the regulations in force.",
      "followUpContracts": true,
      "bindingJuryDecision": true,
      "juryMembers": [
        {
          "name": "Karla Schaffer"
        },
        {
          "name": "Bulat Kazinsky"
        },
        {
          "name": "Alexandra Martinez"
        },
        {
          "name": "Scott MacDougall"
        }
      ]
    }
  }
}

Lot

A lot with multiple prizes.

{
  "tender": {
    "lots": [
      {
        "id": "LOT-0001",
        "designContest": {
          "selectedParticipants": [
            {
              "id": "1",
              "name": "Brigitte Hermon"
            },
            {
              "id": "2",
              "name": "Paolo Travino"
            }
          ],
          "hasPrizes": true,
          "prizes": {
            "details": [
              {
                "id": "1",
                "description": "A lump sum indemnity of an amount identical to that paid to unsuccessful competitors will be paid to the winning team in the form of an advance on the project management contract at the end of the competition; this sum being credited to the amount of fees to be collected subsequently under the project management contract.",
                "value": {
                  "amount": 3000,
                  "currency": "EUR"
                }
              },
              {
                "id": "2",
                "description": "The two competitors (candidates admitted to compete) will receive a maximum fixed compensation of 10,000 EUR excluding tax. For the services provided, subject to the admissibility of their services with regard to the rules of the competition and compliance with the program. Compensation is fixed, in accordance with the provisions of article R. 2172-4 of the public procurement code, the buyer, on the proposal of the jury, reserves the right, in the case of a project that he deems incomplete or whose performances do not comply with the competition rules and/or the programme, to totally or partially cancel the indemnity.",
                "value": {
                  "amount": 10000,
                  "currency": "EUR"
                }
              }
            ]
          },
          "rewardsDetails": "The payment is made by administrative mandate within 30 days in accordance with the regulations in force.",
          "followUpContracts": true,
          "bindingJuryDecision": true,
          "juryMembers": [
            {
              "name": "Karla Schaffer"
            },
            {
              "name": "Bulat Kazinsky"
            }
          ]
        }
      }
    ]
  }
}

Issues

Report issues for this extension in the ocds-extensions repository, putting the extension's name in the issue's title.

Changelog

2023-03-10

  • Add lots.designContest object.
  • Add details array to DesignContest.prizes array, to describe the id, description and value of each prize.

2020-04-24

  • Add minProperties, minItems and/or minLength properties.

This extension was originally discussed as part of the OCDS for EU profile and in pull requests.