Welcome to openprocurement.tender.esco’s documentation!

Please report any problems or suggestions for improvement either via the mailing list or the issue tracker.

Contents:

Overview

The Open Procurement ESCO procedure is plugin to Open Procurement API software.

REST-ful interface to plugin is in line with core software design principles.

Conventions

This plugin conventions follow the Open Procurement API conventions.

Main responsibilities

ESCO procedure is applied for all energy service procurements regardless their price. The main assessment criterion for this type of procurement procedure is Net Present Value (NPV). ESCO procedure features reverse approach compared to the other openprocurement procedures: tender is won by supplier who offered the highest Net Present Value.

The procurementMethodType is esco.

ESCO contracts use separate extension: https://github.com/openprocurement/openprocurement.contract.esco

Project status

The project is in active development and has pilot installations.

The source repository for this project is on GitHub: https://github.com/openprocurement/openprocurement.tender.esco

You can leave feedback by raising a new issue on the issue tracker (GitHub registration necessary). For general discussion use Open Procurement General maillist.

API stability

API is highly unstable, and while API endpoints are expected to remain relatively stable the data exchange formats are expected to be changed a lot. The changes in the API are communicated via Open Procurement API maillist.

Tutorial

Exploring basic rules

Let’s try exploring the /tenders endpoint:

GET /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.4/tenders?offset=",
    "uri": "http://api-sandbox.openprocurement.org/api/2.4/tenders?offset=",
    "offset": ""
  },
  "data": []
}

Just invoking it reveals empty set.

Now let’s attempt creating some tender:

POST /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Content-Length: 4
Content-Type: application/x-www-form-urlencoded
Host: api-sandbox.openprocurement.org

Response: 415 Unsupported Media Type
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "Content-Type header should be one of ['application/json']",
      "location": "header",
      "name": "Content-Type"
    }
  ]
}

Error states that the only accepted Content-Type is application/json.

Let’s satisfy the Content-type requirement:

POST /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 4
Content-Type: application/json
Host: api-sandbox.openprocurement.org

Response: 422 Unprocessable Entity
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "No JSON object could be decoded",
      "location": "body",
      "name": "data"
    }
  ]
}

Error states that no data has been found in JSON body.

Creating tender

Let’s provide the data attribute in the submitted body :

POST /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 3792
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-11-11T17:19:48.277146+03:00"
    },
    "fundingKind": "other",
    "title": "Послуги шкільних їдалень",
    "NBUdiscountRate": 0.22986,
    "procurementMethodType": "esco",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "countryName": "Україна",
        "postalCode": "21027",
        "region": "м. Вінниця",
        "streetAddress": "вул. Стахурського. 22",
        "locality": "м. Вінниця"
      },
      "name_en": "School #10 of Vinnytsia",
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      }
    },
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "id": "37810000-9",
          "description": "Test"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "countryName": "Україна",
          "postalCode": "79000",
          "region": "м. Київ",
          "streetAddress": "вул. Банкова 1",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-10-31T17:19:48.277018+03:00",
          "endDate": "2017-11-30T17:19:48.277078+03:00"
        },
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "id": "37810000-9",
          "description": "Test"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "countryName": "Україна",
          "postalCode": "79000",
          "region": "м. Київ",
          "streetAddress": "вул. Банкова 1",
          "locality": "м. Київ"
        },
        "deliveryDate": {
          "startDate": "2017-10-31T17:19:48.277104+03:00",
          "endDate": "2017-11-30T17:19:48.277124+03:00"
        },
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 1
      }
    ],
    "title_en": "Services in school canteens"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b
{
  "access": {
    "token": "c882469d40054373bf95c9ab87c9249f"
  },
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-07T00:00:00+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "clarificationsUntil": "2017-11-06T17:19:48.277146+03:00",
      "endDate": "2017-11-01T17:19:48.277146+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-11-11T16:19:48.277146+02:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:16.460780+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-11T17:19:48.277146+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-12-17T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Success! Now we can see that new object was created. Response code is 201 and Location response header reports the location of the created object. The body of response reveals the information about the created tender: its internal id (that matches the Location segment), its official tenderID and dateModified datestamp stating the moment in time when tender was last modified. Note that tender is created with active.tendering status.

The peculiarity of the ESCO procedure is that procurementMethodType is esco. Also, new fields NBUdiscountRate, minimalStepPercentage, fundingKind, yearlyPaymentsPercentageRange were added to tender object.

There is also no opportunity to set up enquiryPeriod, it will be assigned automatically.

Let’s access the URL of the created object (the Location header of the response):

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-07T00:00:00+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "clarificationsUntil": "2017-11-06T17:19:48.277146+03:00",
      "endDate": "2017-11-01T17:19:48.277146+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-11-11T16:19:48.277146+02:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:16.460780+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-11T17:19:48.277146+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-12-17T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

We can see the same response we got after creating tender.

Let’s see what listing of tenders reveals us:

GET /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.4/tenders?offset=2017-10-11T17%3A20%3A16.460780%2B03%3A00",
    "uri": "http://api-sandbox.openprocurement.org/api/2.4/tenders?offset=2017-10-11T17%3A20%3A16.460780%2B03%3A00",
    "offset": "2017-10-11T17:20:16.460780+03:00"
  },
  "data": [
    {
      "id": "5a12aa2342aa4042bf6980a62d52669b",
      "dateModified": "2017-10-11T17:20:16.460780+03:00"
    }
  ]
}

We do see the internal id of a tender (that can be used to construct full URL by prepending http://api-sandbox.openprocurement.org/api/0/tenders/) and its dateModified datestamp.

Modifying tender

Let’s update tender by supplementing it with all other essential properties:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 75
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-11-10T17:20:26.653070+03:00"
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-06T00:00:00+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "clarificationsUntil": "2017-11-03T17:20:26.653070+03:00",
      "endDate": "2017-10-31T17:20:26.653070+03:00",
      "invalidationDate": "2017-10-11T17:20:16.726441+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-11-10T16:20:26.653070+02:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:16.729759+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-10T17:20:26.653070+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-12-16T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

We see the added properies have merged with existing tender data. Additionally, the dateModified property was updated to reflect the last modification datestamp.

Checking the listing again reflects the new modification date:

GET /api/2.4/tenders?opt_pretty=1 HTTP/1.0
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "next_page": {
    "path": "/api/2.4/tenders?offset=2017-10-11T17%3A20%3A16.460780%2B03%3A00",
    "uri": "http://api-sandbox.openprocurement.org/api/2.4/tenders?offset=2017-10-11T17%3A20%3A16.460780%2B03%3A00",
    "offset": "2017-10-11T17:20:16.460780+03:00"
  },
  "data": [
    {
      "id": "5a12aa2342aa4042bf6980a62d52669b",
      "dateModified": "2017-10-11T17:20:16.460780+03:00"
    }
  ]
}

Procuring entity can not change tender if there are less than 7 days before tenderPeriod ends. Changes will not be accepted by API.

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "endDate": "2017-10-09T00:00:00+03:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "clarificationsUntil": "2017-10-06T17:20:17.955574+03:00",
      "endDate": "2017-10-03T17:20:17.955574+03:00",
      "invalidationDate": "2017-10-11T17:20:17.183363+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-10-13T17:20:17.955574+03:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:17.378196+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "endDate": "2017-10-13T17:20:17.955574+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-11-18T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 41
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "minValue": {
      "amount": 501.0
    }
  }
}

Response: 403 Forbidden
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "tenderPeriod should be extended by 7 days",
      "location": "body",
      "name": "data"
    }
  ]
}

That is why tenderPeriod has to be extended by 7 days.

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 123
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "tenderPeriod": {
      "endDate": "2017-10-19T17:20:18.155752+03:00"
    },
    "minValue": {
      "currency": "UAH",
      "amount": 501
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "endDate": "2017-10-15T00:00:00+03:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "clarificationsUntil": "2017-10-12T17:20:18.155752+03:00",
      "endDate": "2017-10-09T17:20:18.155752+03:00",
      "invalidationDate": "2017-10-11T17:20:18.275649+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-10-19T17:20:18.155752+03:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:18.280565+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-09-13T17:20:17.955574+03:00",
      "endDate": "2017-10-19T17:20:18.155752+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-11-24T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Procuring entity can set bid guarantee:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 57
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "guarantee": {
      "currency": "USD",
      "amount": 8
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "complaintPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-06T00:00:00+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "clarificationsUntil": "2017-11-03T17:20:26.653070+03:00",
      "endDate": "2017-10-31T17:20:26.653070+03:00",
      "invalidationDate": "2017-10-11T17:20:16.890878+03:00"
    },
    "submissionMethod": "electronicAuction",
    "next_check": "2017-11-10T16:20:26.653070+02:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "title": "Послуги шкільних їдалень",
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:16.894304+03:00",
    "status": "active.tendering",
    "tenderPeriod": {
      "startDate": "2017-10-11T17:20:16.421908+03:00",
      "endDate": "2017-11-10T17:20:26.653070+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-12-16T00:00:00+03:00"
    },
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:16.454423+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Uploading documentation

Procuring entity can upload PDF files into the created tender. Uploading should follow the Documents Uploading rules.

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 186
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy755623597482$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents/64b854b11ba84359a27e490a87d2faeb
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "language": "uk",
    "title": "Notice.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:16.971855+03:00",
    "id": "64b854b11ba84359a27e490a87d2faeb",
    "dateModified": "2017-10-11T17:20:16.971886+03:00"
  }
}

201 Created response code and Location header confirm document creation. We can additionally query the documents collection API endpoint to confirm the action:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents/64b854b11ba84359a27e490a87d2faeb?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "language": "uk",
    "title": "Notice.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:16.971855+03:00",
    "previousVersions": [],
    "id": "64b854b11ba84359a27e490a87d2faeb",
    "dateModified": "2017-10-11T17:20:16.971886+03:00"
  }
}

The single array element describes the uploaded document. We can upload more documents:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 193
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy610846071984$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents/a60e45d0c39e411fab6b2cb4f8b58dbb
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "language": "uk",
    "title": "AwardCriteria.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:17.075936+03:00",
    "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
    "dateModified": "2017-10-11T17:20:17.075972+03:00"
  }
}

And again we can confirm that there are two documents uploaded.

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "author": "tender_owner",
      "language": "uk",
      "title": "Notice.pdf",
      "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:16.971855+03:00",
      "id": "64b854b11ba84359a27e490a87d2faeb",
      "dateModified": "2017-10-11T17:20:16.971886+03:00"
    },
    {
      "hash": "md5:00000000000000000000000000000000",
      "author": "tender_owner",
      "language": "uk",
      "title": "AwardCriteria.pdf",
      "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:17.075936+03:00",
      "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
      "dateModified": "2017-10-11T17:20:17.075972+03:00"
    }
  ]
}

In case we made an error, we can reupload the document over the older version:

PUT /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents/a60e45d0c39e411fab6b2cb4f8b58dbb?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 198
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy0436992451213$
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "tender_owner",
    "language": "uk",
    "title": "AwardCriteria-2.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:17.075936+03:00",
    "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
    "dateModified": "2017-10-11T17:20:17.182430+03:00"
  }
}

And we can see that it is overriding the original version:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/documents HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "author": "tender_owner",
      "language": "uk",
      "title": "Notice.pdf",
      "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:16.971855+03:00",
      "id": "64b854b11ba84359a27e490a87d2faeb",
      "dateModified": "2017-10-11T17:20:16.971886+03:00"
    },
    {
      "hash": "md5:00000000000000000000000000000000",
      "author": "tender_owner",
      "language": "uk",
      "title": "AwardCriteria-2.pdf",
      "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:17.075936+03:00",
      "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
      "dateModified": "2017-10-11T17:20:17.182430+03:00"
    }
  ]
}

Enquiries

When tender has active.tendering status and Tender.enquiryPeriod.endDate hasn’t come yet, interested parties can ask questions:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1506
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions/79bf150e5b814d618584f92855c0d473
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "author": {
      "contactPoint": {
        "email": "soleksuk@gmail.com",
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "postalCode": "21100",
        "countryName": "Україна",
        "streetAddress": "вул. Островського, 33",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      }
    },
    "title": "Калорійність",
    "date": "2017-10-11T17:20:17.286566+03:00",
    "id": "79bf150e5b814d618584f92855c0d473",
    "questionOf": "tender"
  }
}

Procuring entity can answer them:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions/79bf150e5b814d618584f92855c0d473?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 162
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\""
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
    "title": "Калорійність",
    "date": "2017-10-11T17:20:17.286566+03:00",
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
    "id": "79bf150e5b814d618584f92855c0d473",
    "questionOf": "tender"
  }
}

One can retrieve either questions list:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "description": "Просимо додати таблицю потрібної калорійності харчування",
      "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
      "title": "Калорійність",
      "date": "2017-10-11T17:20:17.286566+03:00",
      "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
      "id": "79bf150e5b814d618584f92855c0d473",
      "questionOf": "tender"
    }
  ]
}

or individual answer:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions/79bf150e5b814d618584f92855c0d473 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
    "title": "Калорійність",
    "date": "2017-10-11T17:20:17.286566+03:00",
    "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
    "id": "79bf150e5b814d618584f92855c0d473",
    "questionOf": "tender"
  }
}

Enquiries can be made only during Tender.enquiryPeriod

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/questions HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1506
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "author": {
      "contactPoint": {
        "telephone": "+380 (432) 21-69-30",
        "name": "Сергій Олексюк",
        "email": "soleksuk@gmail.com"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
        "id": "00137226",
        "uri": "http://sch10.edu.vn.ua/"
      },
      "name": "ДКП «Школяр»",
      "address": {
        "countryName": "Україна",
        "postalCode": "21100",
        "region": "м. Вінниця",
        "streetAddress": "вул. Островського, 33",
        "locality": "м. Вінниця"
      }
    },
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність"
  }
}

Response: 403 Forbidden
Content-Type: application/json; charset=UTF-8
{
  "status": "error",
  "errors": [
    {
      "description": "Can add question only in enquiryPeriod",
      "location": "body",
      "name": "data"
    }
  ]
}

Registering bid

Bid registration

Tender status active.tendering allows registration of bids.

Bidder can register a bid with draft status:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 1107
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "draft",
    "tenderers": [
      {
        "contactPoint": {
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк",
          "email": "soleksuk@gmail.com"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "countryName": "Україна",
          "postalCode": "21100",
          "region": "м. Вінниця",
          "streetAddress": "вул. Островського, 33",
          "locality": "м. Вінниця"
        }
      }
    ],
    "value": {
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "yearlyPaymentsPercentage": 0.9,
      "annualCostsReduction": [
        500,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000,
        1000
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f
{
  "access": {
    "token": "1ab5d30c28ca485cb0d7dba5d46aa131"
  },
  "data": {
    "status": "draft",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна",
    "tenderers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "date": "2017-10-11T17:20:18.389185+03:00",
    "id": "90968d627c5844b5bfbfb37fd1e8267f"
  }
}

and approve to pending status:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна",
    "tenderers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "date": "2017-10-11T17:20:18.389185+03:00",
    "id": "90968d627c5844b5bfbfb37fd1e8267f"
  }
}

Proposal Uploading

Then bidder should upload proposal technical document(s):

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 190
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy0988793685348$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/a1f8e9e0911743c1b01b5d00cbf919da
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "Proposal.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/a1f8e9e0911743c1b01b5d00cbf919da?download=f0439210b1ba4996a2b7fb4ae6daa2c6",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:18.764931+03:00",
    "id": "a1f8e9e0911743c1b01b5d00cbf919da",
    "dateModified": "2017-10-11T17:20:18.764959+03:00"
  }
}
Confidentiality

Documents can be either public or private:

  1. Privacy settings can be changed only for the latest version of the document.
  2. When you upload new version of the document, privacy settings are copied from the previous version.
  3. Privacy settings can be changed only during tenderPeriod (with active.tendering status).
  4. If tender has status active.qualification winner can upload only public documents.

Let’s upload private document:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 200
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy796983608456$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "Proposal_top_secrets.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:18.918410+03:00",
    "id": "0277fd7af0e74972b1af73f48ac0661a",
    "dateModified": "2017-10-11T17:20:18.918438+03:00"
  }
}

To define the document as “private” - confidentiality and confidentialityRationale fields should be set.

confidentiality field value can be either buyerOnly (document is private) or public (document is publicly accessible).

Content of private documents (buyerOnly) can be accessed only by procuring entity or by participant who uploaded them.

confidentialityRationale field is required only for private documents and should contain at least 30 characters.

Let’s mark the document as “private”:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 120
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "confidentialityRationale": "Only our company sells badgers with pink hair.",
    "confidentiality": "buyerOnly"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "buyerOnly",
    "language": "uk",
    "format": "application/pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
    "confidentialityRationale": "Only our company sells badgers with pink hair.",
    "title": "Proposal_top_secrets.pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:18.918410+03:00",
    "id": "0277fd7af0e74972b1af73f48ac0661a",
    "dateModified": "2017-10-11T17:20:18.918438+03:00"
  }
}

It is possible to check the uploaded documents:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "confidentiality": "public",
      "language": "uk",
      "title": "Proposal.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/a1f8e9e0911743c1b01b5d00cbf919da?download=f0439210b1ba4996a2b7fb4ae6daa2c6",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:18.764931+03:00",
      "id": "a1f8e9e0911743c1b01b5d00cbf919da",
      "dateModified": "2017-10-11T17:20:18.764959+03:00"
    },
    {
      "hash": "md5:00000000000000000000000000000000",
      "confidentiality": "buyerOnly",
      "language": "uk",
      "format": "application/pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
      "confidentialityRationale": "Only our company sells badgers with pink hair.",
      "title": "Proposal_top_secrets.pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:18.918410+03:00",
      "id": "0277fd7af0e74972b1af73f48ac0661a",
      "dateModified": "2017-10-11T17:20:18.918438+03:00"
    }
  ]
}
Financial, eligibility and qualification documents uploading

Financial, eligibility and qualification documents are also a part of Bid but are located in different end-points.

In order to create and/or get financial document financial_documents end-point should be used:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 191
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy978110950163$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "financial_doc.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5?download=95bac191ba7e4d8daa50e58a1748d776",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:19.226993+03:00",
    "id": "05fbc1a547cb4257be07251e68a93cd5",
    "dateModified": "2017-10-11T17:20:19.227021+03:00"
  }
}

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 192
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy696434530963$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "financial_doc2.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70?download=4eb87949effb4cca9b92101a418ac6bf",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:19.389280+03:00",
    "id": "9158de44a2ee4356b740fd95f72c9c70",
    "dateModified": "2017-10-11T17:20:19.389308+03:00"
  }
}

Get financial documents:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "confidentiality": "public",
      "language": "uk",
      "title": "financial_doc.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5?download=95bac191ba7e4d8daa50e58a1748d776",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:19.226993+03:00",
      "id": "05fbc1a547cb4257be07251e68a93cd5",
      "dateModified": "2017-10-11T17:20:19.227021+03:00"
    },
    {
      "hash": "md5:00000000000000000000000000000000",
      "confidentiality": "public",
      "language": "uk",
      "title": "financial_doc2.pdf",
      "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70?download=4eb87949effb4cca9b92101a418ac6bf",
      "format": "application/pdf",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:19.389280+03:00",
      "id": "9158de44a2ee4356b740fd95f72c9c70",
      "dateModified": "2017-10-11T17:20:19.389308+03:00"
    }
  ]
}

In order to create and/or get eligibility document eligibility_documents end-point should be used:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/eligibility_documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 195
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy833821757495$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/eligibility_documents/b6ff5ad74dbe4665b4d4e0fea02239b8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "eligibility_doc.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/eligibility_documents/b6ff5ad74dbe4665b4d4e0fea02239b8?download=66f083febd1d49ab898b46202cbf5c27",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:19.648909+03:00",
    "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
    "dateModified": "2017-10-11T17:20:19.648938+03:00"
  }
}

In order to create and/or get qualification document qualification_documents end-point should be used:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 202
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy379112463778$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents/a84b35cbab194af387f2fb26ac63cc03
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "confidentiality": "public",
    "language": "uk",
    "title": "qualification_document.pdf",
    "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents/a84b35cbab194af387f2fb26ac63cc03?download=2996c0719cab43f2ae595f2a682a2d12",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:19.825884+03:00",
    "id": "a84b35cbab194af387f2fb26ac63cc03",
    "dateModified": "2017-10-11T17:20:19.825912+03:00"
  }
}

Financial and qualification documents will be publicly accessible after the auction. Eligibility documents will become publicly accessible starting from tender pre-qualification period.

Here is bidder proposal with all documents.

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "Proposal.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/a1f8e9e0911743c1b01b5d00cbf919da?download=f0439210b1ba4996a2b7fb4ae6daa2c6",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.764931+03:00",
        "id": "a1f8e9e0911743c1b01b5d00cbf919da",
        "dateModified": "2017-10-11T17:20:18.764959+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "language": "uk",
        "format": "application/pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "title": "Proposal_top_secrets.pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.918410+03:00",
        "id": "0277fd7af0e74972b1af73f48ac0661a",
        "dateModified": "2017-10-11T17:20:18.918438+03:00"
      }
    ],
    "eligibilityDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "eligibility_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/eligibility_documents/b6ff5ad74dbe4665b4d4e0fea02239b8?download=66f083febd1d49ab898b46202cbf5c27",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.648909+03:00",
        "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
        "dateModified": "2017-10-11T17:20:19.648938+03:00"
      }
    ],
    "id": "90968d627c5844b5bfbfb37fd1e8267f",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна",
    "financialDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5?download=95bac191ba7e4d8daa50e58a1748d776",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.226993+03:00",
        "id": "05fbc1a547cb4257be07251e68a93cd5",
        "dateModified": "2017-10-11T17:20:19.227021+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70?download=4eb87949effb4cca9b92101a418ac6bf",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.389280+03:00",
        "id": "9158de44a2ee4356b740fd95f72c9c70",
        "dateModified": "2017-10-11T17:20:19.389308+03:00"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "date": "2017-10-11T17:20:18.389185+03:00",
    "qualificationDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "qualification_document.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents/a84b35cbab194af387f2fb26ac63cc03?download=2996c0719cab43f2ae595f2a682a2d12",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.825884+03:00",
        "id": "a84b35cbab194af387f2fb26ac63cc03",
        "dateModified": "2017-10-11T17:20:19.825912+03:00"
      }
    ]
  }
}

Note that financial, eligibility, and qualification documents are stored in financialDocuments, eligibilityDocuments, and qualificationDocuments attributes of Bid.

Bid invalidation

If tender is modified, status of all bid proposals will be changed to invalid. Bid proposal will look the following way after tender has been modified:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "invalid",
    "id": "90968d627c5844b5bfbfb37fd1e8267f"
  }
}

Bid confirmation

Bidder should confirm bid proposal:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 31
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "pending"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "Proposal.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/a1f8e9e0911743c1b01b5d00cbf919da?download=f0439210b1ba4996a2b7fb4ae6daa2c6",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.764931+03:00",
        "id": "a1f8e9e0911743c1b01b5d00cbf919da",
        "dateModified": "2017-10-11T17:20:18.764959+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "language": "uk",
        "format": "application/pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "title": "Proposal_top_secrets.pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.918410+03:00",
        "id": "0277fd7af0e74972b1af73f48ac0661a",
        "dateModified": "2017-10-11T17:20:18.918438+03:00"
      }
    ],
    "eligibilityDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "eligibility_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/eligibility_documents/b6ff5ad74dbe4665b4d4e0fea02239b8?download=66f083febd1d49ab898b46202cbf5c27",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.648909+03:00",
        "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
        "dateModified": "2017-10-11T17:20:19.648938+03:00"
      }
    ],
    "id": "90968d627c5844b5bfbfb37fd1e8267f",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна",
    "financialDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5?download=95bac191ba7e4d8daa50e58a1748d776",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.226993+03:00",
        "id": "05fbc1a547cb4257be07251e68a93cd5",
        "dateModified": "2017-10-11T17:20:19.227021+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70?download=4eb87949effb4cca9b92101a418ac6bf",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.389280+03:00",
        "id": "9158de44a2ee4356b740fd95f72c9c70",
        "dateModified": "2017-10-11T17:20:19.389308+03:00"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "date": "2017-10-11T17:20:18.389185+03:00",
    "qualificationDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "qualification_document.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents/a84b35cbab194af387f2fb26ac63cc03?download=2996c0719cab43f2ae595f2a682a2d12",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.825884+03:00",
        "id": "a84b35cbab194af387f2fb26ac63cc03",
        "dateModified": "2017-10-11T17:20:19.825912+03:00"
      }
    ]
  }
}

ESCO procedure demands at least two bidders, so there should be at least two bid proposals registered to move to auction stage. So let’s create second bid:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 902
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "value": {
      "contractDuration": {
        "days": 200,
        "years": 12
      },
      "yearlyPaymentsPercentage": 0.85,
      "annualCostsReduction": [
        400,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900,
        900
      ]
    },
    "tenderers": [
      {
        "contactPoint": {
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк",
          "email": "aagt@gmail.com"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "countryName": "Україна",
          "postalCode": "79013",
          "region": "м. Львів",
          "streetAddress": "вул. Островського, 34",
          "locality": "м. Львів"
        }
      }
    ]
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/dbe6cb9dd5454745a87b165318a0ff53
{
  "access": {
    "token": "7a956c6647424583889388dde7a52319"
  },
  "data": {
    "date": "2017-10-11T17:20:20.701085+03:00",
    "status": "pending",
    "id": "dbe6cb9dd5454745a87b165318a0ff53",
    "value": {
      "yearlyPaymentsPercentage": 0.85,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9769.41,
      "contractDuration": {
        "days": 200,
        "years": 12
      },
      "amountPerformance": 802.21,
      "annualCostsReduction": [
        400.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0
      ]
    },
    "tenderers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ]
  }
}

Batch-mode bid registration

Register one more bid with documents using single request (batch-mode):

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 2726
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "documents": [
      {
        "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=0C%2Bldsj1eGNb%2Fz2Sr3GCPfUo4zCZ9ie67sIrI%2BQG9%2BEM6I4P%2ByjdwAULYGC0AuQRE6mTY7zv86bwxA9TGFMSBg%3D%3D",
        "title": "Proposal_part1.pdf",
        "hash": "md5:00000000000000000000000000000000",
        "format": "application/pdf"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "title": "Proposal_part2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/7c4109f2ad4e4598a79e40cefb2afb10?KeyID=e9f0c83f&Signature=N%2FuXCyPtfB4k3MgDJnhFCe%2FkZgXX3lgs7B98PD17o4LjkIZDgXTbCp6BGsXF7umrq1ETeQ0yf4BLegaI%2BPgGBA%3D%3D",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "format": "application/pdf"
      }
    ],
    "eligibilityDocuments": [
      {
        "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=dB5fEYHP2gjPPs3JjE8rDIOV5O4Fnp5SQ23yGE2yyBPkWOYqFMehbzun%2FO7zwBX70IKnX2bxX9EpYu2rd9s5Cw%3D%3D",
        "title": "eligibility_doc.pdf",
        "hash": "md5:00000000000000000000000000000000",
        "format": "application/pdf"
      }
    ],
    "value": {
      "contractDuration": {
        "days": 40,
        "years": 13
      },
      "yearlyPaymentsPercentage": 0.86,
      "annualCostsReduction": [
        200,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800,
        800
      ]
    },
    "financialDocuments": [
      {
        "url": "http://public.docs-sandbox.openprocurement.org/get/b426272339bb4c87a6befbf0513b054c?KeyID=e9f0c83f&Signature=vHbRYVNS4QTRUqigkZArLKFfpLYvs4f1W9uiAqkqZYoRW4JTD1xDus3wBOlm6B7TJ7emDLFeMXZs7TiODW9BDA%3D%3D",
        "title": "financial_doc.pdf",
        "hash": "md5:00000000000000000000000000000000",
        "format": "application/pdf"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "telephone": "+380 (322) 12-34-56",
          "name": "Іван Іваненко",
          "email": "fake@mail.com"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "«Снігур»",
        "address": {
          "countryName": "Україна",
          "postalCode": "79013",
          "region": "м. Львів",
          "streetAddress": "вул. Островського, 35",
          "locality": "м. Львів"
        }
      }
    ],
    "qualificationDocuments": [
      {
        "url": "http://public.docs-sandbox.openprocurement.org/get/2830b827eac64090a58f8336ed4949c5?KeyID=e9f0c83f&Signature=VAFv1wPEFHUUHSZGNRnhWeqa36y5u0lj%2BXh04D8OQa8iCjOJ%2Fxu%2Fct9US9FtMcNstphUt5oexo5V2698X3q8BQ%3D%3D",
        "title": "qualification_document.pdf",
        "hash": "md5:00000000000000000000000000000000",
        "format": "application/pdf"
      }
    ]
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2
{
  "access": {
    "token": "acdbbe8c337346eab1b92b5842d4e8af"
  },
  "data": {
    "status": "pending",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "Proposal_part1.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/9609d0e79e6d45c59100af58483d340e?download=23720b3b2afc4f31ad278958894712ad",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.965173+03:00",
        "id": "9609d0e79e6d45c59100af58483d340e",
        "dateModified": "2017-10-11T17:20:20.965199+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "language": "uk",
        "format": "application/pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "title": "Proposal_part2.pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.965965+03:00",
        "id": "87639b0dd6ee413fac1900fad49b0fca",
        "dateModified": "2017-10-11T17:20:20.965992+03:00"
      }
    ],
    "eligibilityDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "eligibility_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/eligibility_documents/d115f26bac7a4b85b621ed521815c20c?download=75cd369db45243c5bc215c5c6599381f",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.967637+03:00",
        "id": "d115f26bac7a4b85b621ed521815c20c",
        "dateModified": "2017-10-11T17:20:20.967663+03:00"
      }
    ],
    "value": {
      "yearlyPaymentsPercentage": 0.86,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9038.72,
      "contractDuration": {
        "days": 40,
        "years": 13
      },
      "amountPerformance": 633.49,
      "annualCostsReduction": [
        200.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0,
        800.0
      ]
    },
    "id": "edebd038c1ea42b490be7902f76d8cd2",
    "financialDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/financial_documents/e0c2bf861ea2423f9ec1bccbac55fd8a?download=b426272339bb4c87a6befbf0513b054c",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.966774+03:00",
        "id": "e0c2bf861ea2423f9ec1bccbac55fd8a",
        "dateModified": "2017-10-11T17:20:20.966800+03:00"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "email": "fake@mail.com",
          "telephone": "+380 (322) 12-34-56",
          "name": "Іван Іваненко"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "«Снігур»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 35",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "date": "2017-10-11T17:20:20.964366+03:00",
    "qualificationDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "qualification_document.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/qualification_documents/9e48d9b60152450e83a263a913b18a47?download=2830b827eac64090a58f8336ed4949c5",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.968520+03:00",
        "id": "9e48d9b60152450e83a263a913b18a47",
        "dateModified": "2017-10-11T17:20:20.968547+03:00"
      }
    ]
  }
}

Bid Qualification

ESCO procedure requires bid qualification.

Let’s list qualifications:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.pre-qualification",
    "complaintPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "endDate": "2017-10-07T00:00:00+03:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "clarificationsUntil": "2017-10-05T00:00:00+03:00",
      "endDate": "2017-10-01T17:19:48.241034+03:00",
      "invalidationDate": "2017-10-11T17:20:20.210756+03:00"
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "00137226",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "title_en": "Services in school canteens",
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "qualificationPeriod": {
      "startDate": "2017-10-11T17:20:21.627205+03:00"
    },
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "yearlyPaymentsPercentageRange": 0.8,
    "dateModified": "2017-10-11T17:20:21.677068+03:00",
    "numberOfBids": 3,
    "tenderPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "endDate": "2017-10-11T17:19:48.241034+03:00"
    },
    "procurementMethodType": "esco",
    "qualifications": [
      {
        "status": "pending",
        "eligible": false,
        "qualified": false,
        "bidID": "90968d627c5844b5bfbfb37fd1e8267f",
        "date": "2017-10-11T17:20:21.628190+03:00",
        "id": "b7e5cdd7411041e888c703024172ef74"
      },
      {
        "status": "pending",
        "eligible": false,
        "qualified": false,
        "bidID": "dbe6cb9dd5454745a87b165318a0ff53",
        "date": "2017-10-11T17:20:21.628520+03:00",
        "id": "f38920472e204e3dbb468138ed800186"
      },
      {
        "status": "pending",
        "eligible": false,
        "qualified": false,
        "bidID": "edebd038c1ea42b490be7902f76d8cd2",
        "date": "2017-10-11T17:20:21.628850+03:00",
        "id": "04ec57f210034399b544923edd7c6867"
      }
    ],
    "date": "2017-10-11T17:20:21.677068+03:00",
    "NBUdiscountRate": 0.22986,
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "bids": [
      {
        "status": "pending",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.764931+03:00",
            "id": "a1f8e9e0911743c1b01b5d00cbf919da",
            "dateModified": "2017-10-11T17:20:18.764959+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_top_secrets.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.918410+03:00",
            "id": "0277fd7af0e74972b1af73f48ac0661a",
            "dateModified": "2017-10-11T17:20:18.918438+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "id": "90968d627c5844b5bfbfb37fd1e8267f",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.648909+03:00",
            "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
            "dateModified": "2017-10-11T17:20:19.648938+03:00"
          }
        ]
      },
      {
        "status": "pending",
        "id": "dbe6cb9dd5454745a87b165318a0ff53",
        "tenderers": [
          {
            "contactPoint": {
              "email": "aagt@gmail.com",
              "telephone": "+380 (322) 91-69-30",
              "name": "Андрій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Книга»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 34",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ]
      },
      {
        "status": "pending",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal_part1.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965173+03:00",
            "id": "9609d0e79e6d45c59100af58483d340e",
            "dateModified": "2017-10-11T17:20:20.965199+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_part2.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965965+03:00",
            "id": "87639b0dd6ee413fac1900fad49b0fca",
            "dateModified": "2017-10-11T17:20:20.965992+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "fake@mail.com",
              "telephone": "+380 (322) 12-34-56",
              "name": "Іван Іваненко"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "«Снігур»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 35",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ],
        "id": "edebd038c1ea42b490be7902f76d8cd2",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.967637+03:00",
            "id": "d115f26bac7a4b85b621ed521815c20c",
            "dateModified": "2017-10-11T17:20:20.967663+03:00"
          }
        ]
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Approve first two bids through qualification objects:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/qualifications/b7e5cdd7411041e888c703024172ef74?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 67
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active",
    "qualified": true,
    "eligible": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "eligible": true,
    "qualified": true,
    "bidID": "90968d627c5844b5bfbfb37fd1e8267f",
    "date": "2017-10-11T17:20:22.090399+03:00",
    "id": "b7e5cdd7411041e888c703024172ef74"
  }
}
PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/qualifications/f38920472e204e3dbb468138ed800186?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 67
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active",
    "qualified": true,
    "eligible": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "eligible": true,
    "qualified": true,
    "bidID": "dbe6cb9dd5454745a87b165318a0ff53",
    "date": "2017-10-11T17:20:22.392505+03:00",
    "id": "f38920472e204e3dbb468138ed800186"
  }
}

We can also reject bid:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/qualifications/04ec57f210034399b544923edd7c6867?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 36
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "unsuccessful"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "unsuccessful",
    "eligible": false,
    "qualified": false,
    "bidID": "edebd038c1ea42b490be7902f76d8cd2",
    "date": "2017-10-11T17:20:23.005277+03:00",
    "id": "04ec57f210034399b544923edd7c6867"
  }
}

And check that qualified bids are switched to active:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "status": "active",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "public",
          "language": "uk",
          "title": "Proposal.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:18.764931+03:00",
          "id": "a1f8e9e0911743c1b01b5d00cbf919da",
          "dateModified": "2017-10-11T17:20:18.764959+03:00"
        },
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "buyerOnly",
          "language": "uk",
          "format": "application/pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
          "confidentialityRationale": "Only our company sells badgers with pink hair.",
          "title": "Proposal_top_secrets.pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:18.918410+03:00",
          "id": "0277fd7af0e74972b1af73f48ac0661a",
          "dateModified": "2017-10-11T17:20:18.918438+03:00"
        }
      ],
      "tenderers": [
        {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137256",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        }
      ],
      "id": "90968d627c5844b5bfbfb37fd1e8267f",
      "eligibilityDocuments": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "public",
          "language": "uk",
          "title": "eligibility_doc.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:19.648909+03:00",
          "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
          "dateModified": "2017-10-11T17:20:19.648938+03:00"
        }
      ]
    },
    {
      "status": "active",
      "id": "dbe6cb9dd5454745a87b165318a0ff53",
      "tenderers": [
        {
          "contactPoint": {
            "email": "aagt@gmail.com",
            "telephone": "+380 (322) 91-69-30",
            "name": "Андрій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137226",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "ДКП «Книга»",
          "address": {
            "postalCode": "79013",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 34",
            "region": "м. Львів",
            "locality": "м. Львів"
          }
        }
      ]
    },
    {
      "status": "unsuccessful",
      "documents": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "public",
          "language": "uk",
          "title": "Proposal_part1.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:20.965173+03:00",
          "id": "9609d0e79e6d45c59100af58483d340e",
          "dateModified": "2017-10-11T17:20:20.965199+03:00"
        },
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "buyerOnly",
          "language": "uk",
          "format": "application/pdf",
          "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
          "confidentialityRationale": "Only our company sells badgers with pink hair.",
          "title": "Proposal_part2.pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:20.965965+03:00",
          "id": "87639b0dd6ee413fac1900fad49b0fca",
          "dateModified": "2017-10-11T17:20:20.965992+03:00"
        }
      ],
      "tenderers": [
        {
          "contactPoint": {
            "email": "fake@mail.com",
            "telephone": "+380 (322) 12-34-56",
            "name": "Іван Іваненко"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00137226",
            "uri": "http://www.sc.gov.ua/"
          },
          "name": "«Снігур»",
          "address": {
            "postalCode": "79013",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 35",
            "region": "м. Львів",
            "locality": "м. Львів"
          }
        }
      ],
      "id": "edebd038c1ea42b490be7902f76d8cd2",
      "eligibilityDocuments": [
        {
          "hash": "md5:00000000000000000000000000000000",
          "confidentiality": "public",
          "language": "uk",
          "title": "eligibility_doc.pdf",
          "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
          "format": "application/pdf",
          "documentOf": "tender",
          "datePublished": "2017-10-11T17:20:20.967637+03:00",
          "id": "d115f26bac7a4b85b621ed521815c20c",
          "dateModified": "2017-10-11T17:20:20.967663+03:00"
        }
      ]
    }
  ]
}

Rejected bid is not shown in bids/ listing.

We can access rejected bid by id:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "unsuccessful",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "Proposal_part1.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.965173+03:00",
        "id": "9609d0e79e6d45c59100af58483d340e",
        "dateModified": "2017-10-11T17:20:20.965199+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "language": "uk",
        "format": "application/pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "title": "Proposal_part2.pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.965965+03:00",
        "id": "87639b0dd6ee413fac1900fad49b0fca",
        "dateModified": "2017-10-11T17:20:20.965992+03:00"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "email": "fake@mail.com",
          "telephone": "+380 (322) 12-34-56",
          "name": "Іван Іваненко"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "«Снігур»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 35",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "id": "edebd038c1ea42b490be7902f76d8cd2",
    "eligibilityDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "eligibility_doc.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:20.967637+03:00",
        "id": "d115f26bac7a4b85b621ed521815c20c",
        "dateModified": "2017-10-11T17:20:20.967663+03:00"
      }
    ]
  }
}

Procuring entity approves qualifications by switching to next status:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 60
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active.pre-qualification.stand-still"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.pre-qualification.stand-still",
    "complaintPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "endDate": "2017-10-07T00:00:00+03:00"
    },
    "enquiryPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "clarificationsUntil": "2017-10-05T00:00:00+03:00",
      "endDate": "2017-10-01T17:19:48.241034+03:00",
      "invalidationDate": "2017-10-11T17:20:20.210756+03:00"
    },
    "submissionMethod": "electronicAuction",
    "title_en": "Services in school canteens",
    "next_check": "2017-10-17T00:00:00+03:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "00137226",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "qualifications": [
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "90968d627c5844b5bfbfb37fd1e8267f",
        "date": "2017-10-11T17:20:22.090399+03:00",
        "id": "b7e5cdd7411041e888c703024172ef74"
      },
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "dbe6cb9dd5454745a87b165318a0ff53",
        "date": "2017-10-11T17:20:22.392505+03:00",
        "id": "f38920472e204e3dbb468138ed800186"
      },
      {
        "status": "unsuccessful",
        "eligible": false,
        "qualified": false,
        "bidID": "edebd038c1ea42b490be7902f76d8cd2",
        "date": "2017-10-11T17:20:23.005277+03:00",
        "id": "04ec57f210034399b544923edd7c6867"
      }
    ],
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "qualificationPeriod": {
      "startDate": "2017-10-11T17:20:21.627205+03:00",
      "endDate": "2017-10-17T00:00:00+03:00"
    },
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "NBUdiscountRate": 0.22986,
    "dateModified": "2017-10-11T17:20:23.714470+03:00",
    "numberOfBids": 2,
    "tenderPeriod": {
      "startDate": "2017-09-10T17:19:48.241034+03:00",
      "endDate": "2017-10-11T17:19:48.241034+03:00"
    },
    "auctionPeriod": {
      "shouldStartAfter": "2017-10-17T00:00:00+03:00"
    },
    "yearlyPaymentsPercentageRange": 0.8,
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:23.714470+03:00",
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "bids": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.764931+03:00",
            "id": "a1f8e9e0911743c1b01b5d00cbf919da",
            "dateModified": "2017-10-11T17:20:18.764959+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_top_secrets.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.918410+03:00",
            "id": "0277fd7af0e74972b1af73f48ac0661a",
            "dateModified": "2017-10-11T17:20:18.918438+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "id": "90968d627c5844b5bfbfb37fd1e8267f",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.648909+03:00",
            "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
            "dateModified": "2017-10-11T17:20:19.648938+03:00"
          }
        ]
      },
      {
        "status": "active",
        "id": "dbe6cb9dd5454745a87b165318a0ff53",
        "tenderers": [
          {
            "contactPoint": {
              "email": "aagt@gmail.com",
              "telephone": "+380 (322) 91-69-30",
              "name": "Андрій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Книга»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 34",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ]
      },
      {
        "status": "unsuccessful",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal_part1.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965173+03:00",
            "id": "9609d0e79e6d45c59100af58483d340e",
            "dateModified": "2017-10-11T17:20:20.965199+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_part2.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965965+03:00",
            "id": "87639b0dd6ee413fac1900fad49b0fca",
            "dateModified": "2017-10-11T17:20:20.965992+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "fake@mail.com",
              "telephone": "+380 (322) 12-34-56",
              "name": "Іван Іваненко"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "«Снігур»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 35",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ],
        "id": "edebd038c1ea42b490be7902f76d8cd2",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.967637+03:00",
            "id": "d115f26bac7a4b85b621ed521815c20c",
            "dateModified": "2017-10-11T17:20:20.967663+03:00"
          }
        ]
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

You may notice 10 day stand-still time set in qualificationPeriod.

Auction

After auction is scheduled anybody can visit it to watch. The auction can be reached at Tender.auctionUrl:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "active.auction",
    "complaintPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "endDate": "2017-09-27T00:00:00+03:00"
    },
    "auctionUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b",
    "enquiryPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "clarificationsUntil": "2017-09-26T17:19:48.241034+03:00",
      "endDate": "2017-09-21T17:19:48.241034+03:00",
      "invalidationDate": "2017-10-11T17:20:20.210756+03:00"
    },
    "submissionMethod": "electronicAuction",
    "title_en": "Services in school canteens",
    "next_check": "2017-10-11T17:55:48.241034+03:00",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "qualifications": [
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "90968d627c5844b5bfbfb37fd1e8267f",
        "date": "2017-10-11T17:20:22.090399+03:00",
        "id": "b7e5cdd7411041e888c703024172ef74"
      },
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "dbe6cb9dd5454745a87b165318a0ff53",
        "date": "2017-10-11T17:20:22.392505+03:00",
        "id": "f38920472e204e3dbb468138ed800186"
      },
      {
        "status": "unsuccessful",
        "eligible": false,
        "qualified": false,
        "bidID": "edebd038c1ea42b490be7902f76d8cd2",
        "date": "2017-10-11T17:20:23.005277+03:00",
        "id": "04ec57f210034399b544923edd7c6867"
      }
    ],
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "qualificationPeriod": {
      "startDate": "2017-10-01T17:19:48.241034+03:00",
      "endDate": "2017-10-11T17:19:48.241034+03:00"
    },
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "auctionPeriod": {
      "startDate": "2017-10-11T17:19:48.241034+03:00",
      "shouldStartAfter": "2017-10-12T00:00:00+03:00"
    },
    "dateModified": "2017-10-11T17:20:24.403335+03:00",
    "numberOfBids": 2,
    "tenderPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "endDate": "2017-10-01T17:19:48.241034+03:00"
    },
    "NBUdiscountRate": 0.22986,
    "yearlyPaymentsPercentageRange": 0.8,
    "procurementMethodType": "esco",
    "date": "2017-10-11T17:20:23.714470+03:00",
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "bids": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.764931+03:00",
            "id": "a1f8e9e0911743c1b01b5d00cbf919da",
            "dateModified": "2017-10-11T17:20:18.764959+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_top_secrets.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.918410+03:00",
            "id": "0277fd7af0e74972b1af73f48ac0661a",
            "dateModified": "2017-10-11T17:20:18.918438+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "id": "90968d627c5844b5bfbfb37fd1e8267f",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.648909+03:00",
            "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
            "dateModified": "2017-10-11T17:20:19.648938+03:00"
          }
        ]
      },
      {
        "status": "active",
        "id": "dbe6cb9dd5454745a87b165318a0ff53",
        "tenderers": [
          {
            "contactPoint": {
              "email": "aagt@gmail.com",
              "telephone": "+380 (322) 91-69-30",
              "name": "Андрій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Книга»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 34",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ]
      },
      {
        "status": "unsuccessful",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal_part1.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965173+03:00",
            "id": "9609d0e79e6d45c59100af58483d340e",
            "dateModified": "2017-10-11T17:20:20.965199+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_part2.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965965+03:00",
            "id": "87639b0dd6ee413fac1900fad49b0fca",
            "dateModified": "2017-10-11T17:20:20.965992+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "fake@mail.com",
              "telephone": "+380 (322) 12-34-56",
              "name": "Іван Іваненко"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "«Снігур»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 35",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ],
        "id": "edebd038c1ea42b490be7902f76d8cd2",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.967637+03:00",
            "id": "d115f26bac7a4b85b621ed521815c20c",
            "dateModified": "2017-10-11T17:20:20.967663+03:00"
          }
        ]
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Bidders can find out their participation URLs via their bids:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f?acc_token=1ab5d30c28ca485cb0d7dba5d46aa131 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "Proposal.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.764931+03:00",
        "id": "a1f8e9e0911743c1b01b5d00cbf919da",
        "dateModified": "2017-10-11T17:20:18.764959+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "buyerOnly",
        "language": "uk",
        "format": "application/pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
        "confidentialityRationale": "Only our company sells badgers with pink hair.",
        "title": "Proposal_top_secrets.pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:18.918410+03:00",
        "id": "0277fd7af0e74972b1af73f48ac0661a",
        "dateModified": "2017-10-11T17:20:18.918438+03:00"
      }
    ],
    "eligibilityDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "eligibility_doc.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.648909+03:00",
        "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
        "dateModified": "2017-10-11T17:20:19.648938+03:00"
      }
    ],
    "id": "90968d627c5844b5bfbfb37fd1e8267f",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "subcontractingDetails": "ДКП «Орфей», Україна",
    "financialDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/05fbc1a547cb4257be07251e68a93cd5?download=95bac191ba7e4d8daa50e58a1748d776",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.226993+03:00",
        "id": "05fbc1a547cb4257be07251e68a93cd5",
        "dateModified": "2017-10-11T17:20:19.227021+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "financial_doc2.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/financial_documents/9158de44a2ee4356b740fd95f72c9c70?download=4eb87949effb4cca9b92101a418ac6bf",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.389280+03:00",
        "id": "9158de44a2ee4356b740fd95f72c9c70",
        "dateModified": "2017-10-11T17:20:19.389308+03:00"
      }
    ],
    "tenderers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "date": "2017-10-11T17:20:18.389185+03:00",
    "qualificationDocuments": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "confidentiality": "public",
        "language": "uk",
        "title": "qualification_document.pdf",
        "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/qualification_documents/a84b35cbab194af387f2fb26ac63cc03?download=2996c0719cab43f2ae595f2a682a2d12",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:19.825884+03:00",
        "id": "a84b35cbab194af387f2fb26ac63cc03",
        "dateModified": "2017-10-11T17:20:19.825912+03:00"
      }
    ],
    "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b?key_for_bid=90968d627c5844b5bfbfb37fd1e8267f"
  }
}

See the Bid.participationUrl in the response. Similar, but different, URL can be retrieved for other participants:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/dbe6cb9dd5454745a87b165318a0ff53?acc_token=7a956c6647424583889388dde7a52319 HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "value": {
      "yearlyPaymentsPercentage": 0.85,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9769.41,
      "contractDuration": {
        "days": 200,
        "years": 12
      },
      "amountPerformance": 802.21,
      "annualCostsReduction": [
        400.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0,
        900.0
      ]
    },
    "tenderers": [
      {
        "contactPoint": {
          "email": "aagt@gmail.com",
          "telephone": "+380 (322) 91-69-30",
          "name": "Андрій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137226",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Книга»",
        "address": {
          "postalCode": "79013",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 34",
          "region": "м. Львів",
          "locality": "м. Львів"
        }
      }
    ],
    "date": "2017-10-11T17:20:20.701085+03:00",
    "id": "dbe6cb9dd5454745a87b165318a0ff53",
    "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b?key_for_bid=dbe6cb9dd5454745a87b165318a0ff53"
  }
}

Confirming qualification

Qualification commission registers its decision via the following call:

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/awards/7d531ab11c7c4f56ae13f1edc0bf2061?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 67
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active",
    "qualified": true,
    "eligible": true
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "eligible": true,
    "suppliers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "complaintPeriod": {
      "startDate": "2017-10-11T17:20:25.369669+03:00",
      "endDate": "2017-10-22T00:00:00+03:00"
    },
    "bid_id": "90968d627c5844b5bfbfb37fd1e8267f",
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "qualified": true,
    "date": "2017-10-11T17:20:25.875169+03:00",
    "id": "7d531ab11c7c4f56ae13f1edc0bf2061"
  }
}

Setting contract signature date

There is a possibility to set custom contract signature date. You can insert appropriate date into the dateSigned field.

If this date is not set, it will be auto-generated on the date of contract registration.

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 60
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "dateSigned": "2017-10-11T17:20:26.159568+03:00"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "dateSigned": "2017-10-11T17:20:26.159568+03:00",
    "awardID": "7d531ab11c7c4f56ae13f1edc0bf2061",
    "id": "14592124eee847cc86f970c2e238626d",
    "contractID": "UA-2017-10-11-000001-1"
  }
}

Setting contract validity period

Setting contract validity period is optional, but if it is needed, you can set appropriate startDate and endDate.

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 118
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "period": {
      "startDate": "2017-10-11T17:20:26.559997+03:00",
      "endDate": "2018-10-11T17:20:26.560051+03:00"
    }
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "email": "soleksuk@gmail.com",
          "telephone": "+380 (432) 21-69-30",
          "name": "Сергій Олексюк"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00137256",
          "uri": "http://www.sc.gov.ua/"
        },
        "name": "ДКП «Школяр»",
        "address": {
          "postalCode": "21100",
          "countryName": "Україна",
          "streetAddress": "вул. Островського, 33",
          "region": "м. Вінниця",
          "locality": "м. Вінниця"
        }
      }
    ],
    "period": {
      "startDate": "2017-10-11T17:20:26.559997+03:00",
      "endDate": "2018-10-11T17:20:26.560051+03:00"
    },
    "value": {
      "yearlyPaymentsPercentage": 0.9,
      "valueAddedTaxIncluded": true,
      "currency": "UAH",
      "amount": 9432.74,
      "contractDuration": {
        "days": 74,
        "years": 10
      },
      "amountPerformance": 865.24,
      "annualCostsReduction": [
        500.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0,
        1000.0
      ]
    },
    "dateSigned": "2017-10-11T17:20:26.159568+03:00",
    "awardID": "7d531ab11c7c4f56ae13f1edc0bf2061",
    "id": "14592124eee847cc86f970c2e238626d",
    "contractID": "UA-2017-10-11-000001-1"
  }
}

Uploading contract documentation

You can upload contract documents for the ESCO procedure.

Let’s upload contract document:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 206
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy482637452578$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents/749aabfc28ce4773b7f82246e2e8f249
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "language": "uk",
    "title": "contract_first_document.doc",
    "url": "http://public.docs-sandbox.openprocurement.org/get/97f2f714419d47f0b40480e6e9d67d80?KeyID=e9f0c83f&Signature=MNrcVDFXhJaiJj4MspFjSf%2F5Q1KVTpatvqanUf9wskkDqeEipuX0GuDMUDe6IFuFkydXphA1ScEo%2Fo9ynJQcDQ%253D%253D",
    "format": "application/msword",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:27.120325+03:00",
    "id": "749aabfc28ce4773b7f82246e2e8f249",
    "dateModified": "2017-10-11T17:20:27.120361+03:00"
  }
}

201 Created response code and Location header confirm that this document was added.

Let’s see the list of contract documents:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "language": "uk",
      "title": "contract_first_document.doc",
      "url": "http://public.docs-sandbox.openprocurement.org/get/97f2f714419d47f0b40480e6e9d67d80?KeyID=e9f0c83f&Signature=MNrcVDFXhJaiJj4MspFjSf%2F5Q1KVTpatvqanUf9wskkDqeEipuX0GuDMUDe6IFuFkydXphA1ScEo%2Fo9ynJQcDQ%253D%253D",
      "format": "application/msword",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:27.120325+03:00",
      "id": "749aabfc28ce4773b7f82246e2e8f249",
      "dateModified": "2017-10-11T17:20:27.120361+03:00"
    }
  ]
}

We can upload another contract document:

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 205
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy61602844886$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents/1e88ca34b5964d5497fb82cb6c6c44da
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "language": "uk",
    "title": "contract_second_document.doc",
    "url": "http://public.docs-sandbox.openprocurement.org/get/53ae263805aa4a5ea46d4370c9edfc84?KeyID=e9f0c83f&Signature=u8dUl4aqI8M%252B4VDybOk4tvAYFd%2FLWLfr9ABwuLM3uBSU5n47vgy64Dvhn%252Bbj9aIC%2Ff5ee3%2FlzIjfzLFBRBSpCw%253D%253D",
    "format": "application/msword",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:27.753546+03:00",
    "id": "1e88ca34b5964d5497fb82cb6c6c44da",
    "dateModified": "2017-10-11T17:20:27.753592+03:00"
  }
}

201 Created response code and Location header confirm that the second document was uploaded.

By default, document language is Ukrainian. You can can change it and set another language for the document by assigning appropriate language code to the language field (available options: uk, en, ru). You can also set document’s title (e.g. title_en) and description (e.g. description_en) fields. See Document data structure for details.

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents/1e88ca34b5964d5497fb82cb6c6c44da?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 106
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "title_en": "Title of Document",
    "language": "en",
    "description_en": "Description of Document"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "language": "en",
    "title": "contract_second_document.doc",
    "url": "http://public.docs-sandbox.openprocurement.org/get/53ae263805aa4a5ea46d4370c9edfc84?KeyID=e9f0c83f&Signature=u8dUl4aqI8M%252B4VDybOk4tvAYFd%2FLWLfr9ABwuLM3uBSU5n47vgy64Dvhn%252Bbj9aIC%2Ff5ee3%2FlzIjfzLFBRBSpCw%253D%253D",
    "format": "application/msword",
    "title_en": "Title of Document",
    "description_en": "Description of Document",
    "datePublished": "2017-10-11T17:20:27.753546+03:00",
    "documentOf": "tender",
    "id": "1e88ca34b5964d5497fb82cb6c6c44da",
    "dateModified": "2017-10-11T17:20:27.753592+03:00"
  }
}

Let’s see the list of all added contract documents:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": [
    {
      "hash": "md5:00000000000000000000000000000000",
      "language": "uk",
      "title": "contract_first_document.doc",
      "url": "http://public.docs-sandbox.openprocurement.org/get/97f2f714419d47f0b40480e6e9d67d80?KeyID=e9f0c83f&Signature=MNrcVDFXhJaiJj4MspFjSf%2F5Q1KVTpatvqanUf9wskkDqeEipuX0GuDMUDe6IFuFkydXphA1ScEo%2Fo9ynJQcDQ%253D%253D",
      "format": "application/msword",
      "documentOf": "tender",
      "datePublished": "2017-10-11T17:20:27.120325+03:00",
      "id": "749aabfc28ce4773b7f82246e2e8f249",
      "dateModified": "2017-10-11T17:20:27.120361+03:00"
    },
    {
      "hash": "md5:00000000000000000000000000000000",
      "language": "en",
      "title": "contract_second_document.doc",
      "url": "http://public.docs-sandbox.openprocurement.org/get/53ae263805aa4a5ea46d4370c9edfc84?KeyID=e9f0c83f&Signature=u8dUl4aqI8M%252B4VDybOk4tvAYFd%2FLWLfr9ABwuLM3uBSU5n47vgy64Dvhn%252Bbj9aIC%2Ff5ee3%2FlzIjfzLFBRBSpCw%253D%253D",
      "format": "application/msword",
      "title_en": "Title of Document",
      "description_en": "Description of Document",
      "datePublished": "2017-10-11T17:20:27.753546+03:00",
      "documentOf": "tender",
      "id": "1e88ca34b5964d5497fb82cb6c6c44da",
      "dateModified": "2017-10-11T17:20:27.753592+03:00"
    }
  ]
}

Let’s view separate contract document:

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/contracts/14592124eee847cc86f970c2e238626d/documents/749aabfc28ce4773b7f82246e2e8f249?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "language": "uk",
    "title": "contract_first_document.doc",
    "url": "http://public.docs-sandbox.openprocurement.org/get/97f2f714419d47f0b40480e6e9d67d80?KeyID=e9f0c83f&Signature=MNrcVDFXhJaiJj4MspFjSf%2F5Q1KVTpatvqanUf9wskkDqeEipuX0GuDMUDe6IFuFkydXphA1ScEo%2Fo9ynJQcDQ%253D%253D",
    "format": "application/msword",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:27.120325+03:00",
    "previousVersions": [],
    "id": "749aabfc28ce4773b7f82246e2e8f249",
    "dateModified": "2017-10-11T17:20:27.120361+03:00"
  }
}

Cancelling tender

Tender creator can cancel tender anytime. The following steps should be applied:

  1. Prepare cancellation request.
  2. Fill it with the protocol describing the cancellation reasons.
  3. Cancel the tender with the prepared reasons.

Only the request that has been activated (3rd step above) has power to cancel tender. I.e. you have to not only prepare cancellation request but to activate it as well.

See Cancellation data structure for details.

Preparing the cancellation request

You should pass reason, status defaults to pending.

id is autogenerated and passed in the Location header of response.

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 43
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "reason": "cancellation reason"
  }
}

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26
{
  "data": {
    "status": "pending",
    "reason": "cancellation reason",
    "reasonType": "cancelled",
    "date": "2017-10-11T17:20:28.671637+03:00",
    "cancellationOf": "tender",
    "id": "f832040080294beab8bf97d501ea7a26"
  }
}

There are two possible types of cancellation reason: tender was cancelled or unsuccessful. By default reasonType value is cancelled.

You can change reasonType value to unsuccessful.

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 40
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "reasonType": "unsuccessful"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "pending",
    "reason": "cancellation reason",
    "reasonType": "unsuccessful",
    "date": "2017-10-11T17:20:29.048096+03:00",
    "cancellationOf": "tender",
    "id": "f832040080294beab8bf97d501ea7a26"
  }
}

Filling cancellation with protocol and supplementary documentation

Upload the file contents

POST /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26/documents?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 186
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy420727502608$
Host: api-sandbox.openprocurement.org

Response: 201 Created
Content-Type: application/json; charset=UTF-8
Location: http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26/documents/15b94d4f96154ef384cf7753eada982f
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "language": "uk",
    "title": "Notice.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/e4404cf80f9542e39af2378da79d4f6d?KeyID=e9f0c83f&Signature=6ID09BxPYoh2rKp%2F6v1J2cTe6zRcSd7%252BeKxSk69QFgUtzjsjXQPN6IlH1UXjZIHQrTXTdTYmUVxatw%252BTlaWJBw%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:29.436776+03:00",
    "id": "15b94d4f96154ef384cf7753eada982f",
    "dateModified": "2017-10-11T17:20:29.436813+03:00"
  }
}

Change the document description and other properties

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26/documents/15b94d4f96154ef384cf7753eada982f?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 48
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "description": "Changed description"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "description": "Changed description",
    "language": "uk",
    "title": "Notice.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/e4404cf80f9542e39af2378da79d4f6d?KeyID=e9f0c83f&Signature=6ID09BxPYoh2rKp%2F6v1J2cTe6zRcSd7%252BeKxSk69QFgUtzjsjXQPN6IlH1UXjZIHQrTXTdTYmUVxatw%252BTlaWJBw%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:29.436776+03:00",
    "id": "15b94d4f96154ef384cf7753eada982f",
    "dateModified": "2017-10-11T17:20:29.436813+03:00"
  }
}

Upload new version of the document

PUT /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26/documents/15b94d4f96154ef384cf7753eada982f?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 189
Content-Type: multipart/form-data; boundary=----------a_BoUnDaRy353039250009$
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "description": "Changed description",
    "language": "uk",
    "title": "Notice-2.pdf",
    "url": "http://public.docs-sandbox.openprocurement.org/get/c6f89b92473441cbaa2a8e2bb0f22353?KeyID=e9f0c83f&Signature=keEFy5%2FljgE9pHQf23osRx%2FnBS4gZnw8mgvKxPdn00%2Fsgpucej9NUmswL6DL5jnb9CiACTlkF%2FxER3MfOlCcAQ%253D%253D",
    "format": "application/pdf",
    "documentOf": "tender",
    "datePublished": "2017-10-11T17:20:29.436776+03:00",
    "id": "15b94d4f96154ef384cf7753eada982f",
    "dateModified": "2017-10-11T17:20:30.211215+03:00"
  }
}

Activating the request and cancelling tender

PATCH /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/cancellations/f832040080294beab8bf97d501ea7a26?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Content-Length: 30
Content-Type: application/json
Host: api-sandbox.openprocurement.org
DATA:
{
  "data": {
    "status": "active"
  }
}

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "description": "Changed description",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/e4404cf80f9542e39af2378da79d4f6d?KeyID=e9f0c83f&Signature=6ID09BxPYoh2rKp%2F6v1J2cTe6zRcSd7%252BeKxSk69QFgUtzjsjXQPN6IlH1UXjZIHQrTXTdTYmUVxatw%252BTlaWJBw%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:29.436776+03:00",
        "id": "15b94d4f96154ef384cf7753eada982f",
        "dateModified": "2017-10-11T17:20:29.436813+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "description": "Changed description",
        "language": "uk",
        "title": "Notice-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/c6f89b92473441cbaa2a8e2bb0f22353?KeyID=e9f0c83f&Signature=keEFy5%2FljgE9pHQf23osRx%2FnBS4gZnw8mgvKxPdn00%2Fsgpucej9NUmswL6DL5jnb9CiACTlkF%2FxER3MfOlCcAQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:29.436776+03:00",
        "id": "15b94d4f96154ef384cf7753eada982f",
        "dateModified": "2017-10-11T17:20:30.211215+03:00"
      }
    ],
    "reason": "cancellation reason",
    "reasonType": "unsuccessful",
    "date": "2017-10-11T17:20:30.663489+03:00",
    "cancellationOf": "tender",
    "id": "f832040080294beab8bf97d501ea7a26"
  }
}

We can check if tender was actually cancelled.

GET /api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b?acc_token=c882469d40054373bf95c9ab87c9249f HTTP/1.0
Authorization: Basic YnJva2VyOg==
Host: api-sandbox.openprocurement.org

Response: 200 OK
Content-Type: application/json; charset=UTF-8
{
  "data": {
    "procurementMethod": "open",
    "status": "cancelled",
    "awardPeriod": {
      "startDate": "2017-10-11T17:20:25.344652+03:00",
      "endDate": "2017-10-11T17:20:25.823663+03:00"
    },
    "complaintPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "endDate": "2017-09-27T00:00:00+03:00"
    },
    "auctionUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b",
    "enquiryPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "clarificationsUntil": "2017-09-26T17:19:48.241034+03:00",
      "endDate": "2017-09-21T17:19:48.241034+03:00",
      "invalidationDate": "2017-10-11T17:20:20.210756+03:00"
    },
    "submissionMethod": "electronicAuction",
    "title_en": "Services in school canteens",
    "procuringEntity": {
      "kind": "general",
      "name": "ЗОСШ #10 м.Вінниці",
      "address": {
        "postalCode": "21027",
        "countryName": "Україна",
        "streetAddress": "вул. Стахурського. 22",
        "region": "м. Вінниця",
        "locality": "м. Вінниця"
      },
      "contactPoint": {
        "url": "http://sch10.edu.vn.ua/",
        "name_en": "Kutsa Svitlana V.",
        "name": "Куца Світлана Валентинівна",
        "availableLanguage": "uk",
        "telephone": "+380 (432) 46-53-02"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "legalName_en": "The institution \"Secondary school I-III levels № 10 Vinnitsa City Council\"",
        "id": "21725150",
        "legalName": "Заклад \"Загальноосвітня школа І-ІІІ ступенів № 10 Вінницької міської ради\""
      },
      "name_en": "School #10 of Vinnytsia"
    },
    "questions": [
      {
        "description": "Просимо додати таблицю потрібної калорійності харчування",
        "author": {
          "contactPoint": {
            "email": "soleksuk@gmail.com",
            "telephone": "+380 (432) 21-69-30",
            "name": "Сергій Олексюк"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "legalName": "Державне комунальне підприємство громадського харчування «Школяр»",
            "id": "00137226",
            "uri": "http://sch10.edu.vn.ua/"
          },
          "name": "ДКП «Школяр»",
          "address": {
            "postalCode": "21100",
            "countryName": "Україна",
            "streetAddress": "вул. Островського, 33",
            "region": "м. Вінниця",
            "locality": "м. Вінниця"
          }
        },
        "title": "Калорійність",
        "date": "2017-10-11T17:20:17.286566+03:00",
        "answer": "Таблицю додано в файлі \"Kalorijnist.xslx\"",
        "dateAnswered": "2017-10-11T17:20:17.371180+03:00",
        "id": "79bf150e5b814d618584f92855c0d473",
        "questionOf": "tender"
      }
    ],
    "owner": "broker",
    "qualifications": [
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "90968d627c5844b5bfbfb37fd1e8267f",
        "date": "2017-10-11T17:20:22.090399+03:00",
        "id": "b7e5cdd7411041e888c703024172ef74"
      },
      {
        "status": "active",
        "eligible": true,
        "qualified": true,
        "bidID": "dbe6cb9dd5454745a87b165318a0ff53",
        "date": "2017-10-11T17:20:22.392505+03:00",
        "id": "f38920472e204e3dbb468138ed800186"
      },
      {
        "status": "unsuccessful",
        "eligible": false,
        "qualified": false,
        "bidID": "edebd038c1ea42b490be7902f76d8cd2",
        "date": "2017-10-11T17:20:23.005277+03:00",
        "id": "04ec57f210034399b544923edd7c6867"
      }
    ],
    "id": "5a12aa2342aa4042bf6980a62d52669b",
    "guarantee": {
      "currency": "USD",
      "amount": 8.0
    },
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "Notice.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/32eb2b2e95df4ad3b13b6e53d4537ad0?KeyID=e9f0c83f&Signature=OPAi4iNrK7tN1V86W2Rl%252BAjB92liVY9CJw5F6hoF3Gvk%2FEvp5zNXhCNy2Rl3TA6qcTYgr7PFbi5TeNyg4tSDCQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:16.971855+03:00",
        "id": "64b854b11ba84359a27e490a87d2faeb",
        "dateModified": "2017-10-11T17:20:16.971886+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/0af62453e6af467ba2083b144229f275?KeyID=e9f0c83f&Signature=XuYtAMm0wT5cErp5g7OSq1p6EtEkBtl8hNYOQxar%252BCs%252B8niyVLQ9lFg672qTYjjSf3mHwDbzr4QO6hHsKFHpCg%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.075972+03:00"
      },
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "tender_owner",
        "language": "uk",
        "title": "AwardCriteria-2.pdf",
        "url": "http://public.docs-sandbox.openprocurement.org/get/388335d5b65c489c8f3ace818cb7292f?KeyID=e9f0c83f&Signature=k86WoqnBxcYDBuydw%2FfrHWl%2FlkTsS7P%2FK%2FkcLugisxF7JTISSKtvv86h%2FoLLMtyO6ShkrL8LU7B8me%2FBW4%252BHDQ%253D%253D",
        "format": "application/pdf",
        "documentOf": "tender",
        "datePublished": "2017-10-11T17:20:17.075936+03:00",
        "id": "a60e45d0c39e411fab6b2cb4f8b58dbb",
        "dateModified": "2017-10-11T17:20:17.182430+03:00"
      }
    ],
    "title": "Послуги шкільних їдалень",
    "qualificationPeriod": {
      "startDate": "2017-10-01T17:19:48.241034+03:00",
      "endDate": "2017-10-11T17:19:48.241034+03:00"
    },
    "tenderID": "UA-2017-10-11-000001",
    "minimalStepPercentage": 0.006,
    "auctionPeriod": {
      "startDate": "2017-10-11T17:19:48.241034+03:00",
      "endDate": "2017-10-11T17:20:25.292621+03:00"
    },
    "dateModified": "2017-10-11T17:20:30.663489+03:00",
    "numberOfBids": 2,
    "tenderPeriod": {
      "startDate": "2017-08-31T17:19:48.241034+03:00",
      "endDate": "2017-10-01T17:19:48.241034+03:00"
    },
    "contracts": [
      {
        "status": "pending",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "language": "uk",
            "title": "contract_first_document.doc",
            "url": "http://public.docs-sandbox.openprocurement.org/get/97f2f714419d47f0b40480e6e9d67d80?KeyID=e9f0c83f&Signature=MNrcVDFXhJaiJj4MspFjSf%2F5Q1KVTpatvqanUf9wskkDqeEipuX0GuDMUDe6IFuFkydXphA1ScEo%2Fo9ynJQcDQ%253D%253D",
            "format": "application/msword",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:27.120325+03:00",
            "id": "749aabfc28ce4773b7f82246e2e8f249",
            "dateModified": "2017-10-11T17:20:27.120361+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "language": "en",
            "title": "contract_second_document.doc",
            "url": "http://public.docs-sandbox.openprocurement.org/get/53ae263805aa4a5ea46d4370c9edfc84?KeyID=e9f0c83f&Signature=u8dUl4aqI8M%252B4VDybOk4tvAYFd%2FLWLfr9ABwuLM3uBSU5n47vgy64Dvhn%252Bbj9aIC%2Ff5ee3%2FlzIjfzLFBRBSpCw%253D%253D",
            "format": "application/msword",
            "title_en": "Title of Document",
            "description_en": "Description of Document",
            "datePublished": "2017-10-11T17:20:27.753546+03:00",
            "documentOf": "tender",
            "id": "1e88ca34b5964d5497fb82cb6c6c44da",
            "dateModified": "2017-10-11T17:20:27.753592+03:00"
          }
        ],
        "items": [
          {
            "description": "Послуги шкільних їдалень",
            "classification": {
              "scheme": "ДК021",
              "description": "Test",
              "id": "37810000-9"
            },
            "description_en": "Services in school canteens",
            "additionalClassifications": [
              {
                "scheme": "ДКПП",
                "id": "17.21.1",
                "description": "Послуги шкільних їдалень"
              }
            ],
            "deliveryAddress": {
              "postalCode": "79000",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            },
            "id": "a73f68d005d244fd8972480d9fffe56a",
            "unit": {
              "code": "44617100-9",
              "name": "item"
            }
          },
          {
            "description": "Послуги шкільних їдалень",
            "classification": {
              "scheme": "ДК021",
              "description": "Test",
              "id": "37810000-9"
            },
            "description_en": "Services in school canteens",
            "additionalClassifications": [
              {
                "scheme": "ДКПП",
                "id": "17.21.1",
                "description": "Послуги шкільних їдалень"
              }
            ],
            "deliveryAddress": {
              "postalCode": "79000",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            },
            "id": "885400cdaccf4fa0b174b5c17f7b4cba",
            "unit": {
              "code": "44617100-9",
              "name": "item"
            }
          }
        ],
        "suppliers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "period": {
          "startDate": "2017-10-11T17:20:26.559997+03:00",
          "endDate": "2018-10-11T17:20:26.560051+03:00"
        },
        "dateSigned": "2017-10-11T17:20:26.159568+03:00",
        "value": {
          "yearlyPaymentsPercentage": 0.9,
          "valueAddedTaxIncluded": true,
          "currency": "UAH",
          "amount": 9432.74,
          "contractDuration": {
            "days": 74,
            "years": 10
          },
          "amountPerformance": 865.24,
          "annualCostsReduction": [
            500.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0
          ]
        },
        "awardID": "7d531ab11c7c4f56ae13f1edc0bf2061",
        "id": "14592124eee847cc86f970c2e238626d",
        "contractID": "UA-2017-10-11-000001-1"
      }
    ],
    "NBUdiscountRate": 0.22986,
    "yearlyPaymentsPercentageRange": 0.8,
    "procurementMethodType": "esco",
    "awards": [
      {
        "status": "active",
        "eligible": true,
        "suppliers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "complaintPeriod": {
          "startDate": "2017-10-11T17:20:25.369669+03:00",
          "endDate": "2017-10-11T17:20:25.369669+03:00"
        },
        "bid_id": "90968d627c5844b5bfbfb37fd1e8267f",
        "value": {
          "yearlyPaymentsPercentage": 0.9,
          "valueAddedTaxIncluded": true,
          "currency": "UAH",
          "amount": 9432.74,
          "contractDuration": {
            "days": 74,
            "years": 10
          },
          "amountPerformance": 865.24,
          "annualCostsReduction": [
            500.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0
          ]
        },
        "qualified": true,
        "date": "2017-10-11T17:20:25.875169+03:00",
        "id": "7d531ab11c7c4f56ae13f1edc0bf2061"
      }
    ],
    "date": "2017-10-11T17:20:30.663489+03:00",
    "minValue": {
      "currency": "UAH",
      "amount": 0.0,
      "valueAddedTaxIncluded": true
    },
    "fundingKind": "other",
    "items": [
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "a73f68d005d244fd8972480d9fffe56a",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      },
      {
        "description": "Послуги шкільних їдалень",
        "classification": {
          "scheme": "ДК021",
          "description": "Test",
          "id": "37810000-9"
        },
        "description_en": "Services in school canteens",
        "additionalClassifications": [
          {
            "scheme": "ДКПП",
            "id": "17.21.1",
            "description": "Послуги шкільних їдалень"
          }
        ],
        "deliveryAddress": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "885400cdaccf4fa0b174b5c17f7b4cba",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        }
      }
    ],
    "bids": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/f0439210b1ba4996a2b7fb4ae6daa2c6?KeyID=e9f0c83f&Signature=jGVbdv1dyW%2FkagdkX%252BscVrikl%2FuzyJcUFkUjALlR%252BgBQwqDgXcLiDVDUInBnZ5CqE8pFUzSjp3KqKJiUhf9QDw%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.764931+03:00",
            "id": "a1f8e9e0911743c1b01b5d00cbf919da",
            "dateModified": "2017-10-11T17:20:18.764959+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/90968d627c5844b5bfbfb37fd1e8267f/documents/0277fd7af0e74972b1af73f48ac0661a?download=d190c911ff5e47b489eb7612463ba5c5",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_top_secrets.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:18.918410+03:00",
            "id": "0277fd7af0e74972b1af73f48ac0661a",
            "dateModified": "2017-10-11T17:20:18.918438+03:00"
          }
        ],
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/66f083febd1d49ab898b46202cbf5c27?KeyID=e9f0c83f&Signature=RUUJMgRoaCzIFChLnZljGmEgqDfCfpvesucdv2ZJADoCswGyVueCojA6o3%252BSXOxE5%2F%2FnauO0Y8uLT%2F8dJIbABg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.648909+03:00",
            "id": "b6ff5ad74dbe4665b4d4e0fea02239b8",
            "dateModified": "2017-10-11T17:20:19.648938+03:00"
          }
        ],
        "id": "90968d627c5844b5bfbfb37fd1e8267f",
        "value": {
          "yearlyPaymentsPercentage": 0.9,
          "valueAddedTaxIncluded": true,
          "currency": "UAH",
          "amount": 9432.74,
          "contractDuration": {
            "days": 74,
            "years": 10
          },
          "amountPerformance": 865.24,
          "annualCostsReduction": [
            500.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0,
            1000.0
          ]
        },
        "subcontractingDetails": "ДКП «Орфей», Україна",
        "financialDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "financial_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/95bac191ba7e4d8daa50e58a1748d776?KeyID=e9f0c83f&Signature=60lhRcfjGRor329Ls2hyiiQ1K4BHWH9SGnPn9b%252BtiW22n0oeTGUPqjpN7rwR1D%252BTz94RttY4zIsYp6DtveygBg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.226993+03:00",
            "id": "05fbc1a547cb4257be07251e68a93cd5",
            "dateModified": "2017-10-11T17:20:19.227021+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "financial_doc2.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/4eb87949effb4cca9b92101a418ac6bf?KeyID=e9f0c83f&Signature=qWirdZHErG9IkMkyLLwLSrePFa%2Fy6mRXQQd1%2FlkqC2%2F%252BLMBDUSXdTcAIu2zPytnj0mjlSTks3klBBDGcMapUBA%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.389280+03:00",
            "id": "9158de44a2ee4356b740fd95f72c9c70",
            "dateModified": "2017-10-11T17:20:19.389308+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "soleksuk@gmail.com",
              "telephone": "+380 (432) 21-69-30",
              "name": "Сергій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137256",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Школяр»",
            "address": {
              "postalCode": "21100",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 33",
              "region": "м. Вінниця",
              "locality": "м. Вінниця"
            }
          }
        ],
        "date": "2017-10-11T17:20:18.389185+03:00",
        "qualificationDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "qualification_document.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/2996c0719cab43f2ae595f2a682a2d12?KeyID=e9f0c83f&Signature=cPWMAA3xdB95Uw6Nt%252BPxK%2FtnLgaKm62V6dZgSIR2AQ1qZAawMy%252BhwTSQdNXNFIOywkc5Nz56woNZS6ZqkjOHBQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:19.825884+03:00",
            "id": "a84b35cbab194af387f2fb26ac63cc03",
            "dateModified": "2017-10-11T17:20:19.825912+03:00"
          }
        ],
        "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b?key_for_bid=90968d627c5844b5bfbfb37fd1e8267f"
      },
      {
        "status": "active",
        "value": {
          "yearlyPaymentsPercentage": 0.85,
          "valueAddedTaxIncluded": true,
          "currency": "UAH",
          "amount": 9769.41,
          "contractDuration": {
            "days": 200,
            "years": 12
          },
          "amountPerformance": 802.21,
          "annualCostsReduction": [
            400.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0,
            900.0
          ]
        },
        "tenderers": [
          {
            "contactPoint": {
              "email": "aagt@gmail.com",
              "telephone": "+380 (322) 91-69-30",
              "name": "Андрій Олексюк"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "ДКП «Книга»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 34",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ],
        "date": "2017-10-11T17:20:20.701085+03:00",
        "id": "dbe6cb9dd5454745a87b165318a0ff53",
        "participationUrl": "http://auction-sandbox.openprocurement.org/tenders/5a12aa2342aa4042bf6980a62d52669b?key_for_bid=dbe6cb9dd5454745a87b165318a0ff53"
      },
      {
        "status": "unsuccessful",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "Proposal_part1.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/23720b3b2afc4f31ad278958894712ad?KeyID=e9f0c83f&Signature=tAHsWZW8oimWbXL7KkYTCtymSVgiqZrB4rSMZGlOF3Or1RLTtgkWYTrHVM5PxQTijB1GhEq5Lv9Eaw2SkLLADg%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965173+03:00",
            "id": "9609d0e79e6d45c59100af58483d340e",
            "dateModified": "2017-10-11T17:20:20.965199+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "buyerOnly",
            "language": "uk",
            "format": "application/pdf",
            "url": "http://api-sandbox.openprocurement.org/api/2.4/tenders/5a12aa2342aa4042bf6980a62d52669b/bids/edebd038c1ea42b490be7902f76d8cd2/documents/87639b0dd6ee413fac1900fad49b0fca?download=7c4109f2ad4e4598a79e40cefb2afb10",
            "confidentialityRationale": "Only our company sells badgers with pink hair.",
            "title": "Proposal_part2.pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.965965+03:00",
            "id": "87639b0dd6ee413fac1900fad49b0fca",
            "dateModified": "2017-10-11T17:20:20.965992+03:00"
          }
        ],
        "tenderers": [
          {
            "contactPoint": {
              "email": "fake@mail.com",
              "telephone": "+380 (322) 12-34-56",
              "name": "Іван Іваненко"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00137226",
              "uri": "http://www.sc.gov.ua/"
            },
            "name": "«Снігур»",
            "address": {
              "postalCode": "79013",
              "countryName": "Україна",
              "streetAddress": "вул. Островського, 35",
              "region": "м. Львів",
              "locality": "м. Львів"
            }
          }
        ],
        "id": "edebd038c1ea42b490be7902f76d8cd2",
        "eligibilityDocuments": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "confidentiality": "public",
            "language": "uk",
            "title": "eligibility_doc.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/75cd369db45243c5bc215c5c6599381f?KeyID=e9f0c83f&Signature=SkhioXftKls6Nf8gCFrf7q49Xg4%252BBTvhF0tnw5EJKKRDvusQW26qAww%2F83quFxsgoPPf8Bx6w5ofsrYocw1hCQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:20.967637+03:00",
            "id": "d115f26bac7a4b85b621ed521815c20c",
            "dateModified": "2017-10-11T17:20:20.967663+03:00"
          }
        ]
      }
    ],
    "cancellations": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "description": "Changed description",
            "language": "uk",
            "title": "Notice.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/e4404cf80f9542e39af2378da79d4f6d?KeyID=e9f0c83f&Signature=6ID09BxPYoh2rKp%2F6v1J2cTe6zRcSd7%252BeKxSk69QFgUtzjsjXQPN6IlH1UXjZIHQrTXTdTYmUVxatw%252BTlaWJBw%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:29.436776+03:00",
            "id": "15b94d4f96154ef384cf7753eada982f",
            "dateModified": "2017-10-11T17:20:29.436813+03:00"
          },
          {
            "hash": "md5:00000000000000000000000000000000",
            "description": "Changed description",
            "language": "uk",
            "title": "Notice-2.pdf",
            "url": "http://public.docs-sandbox.openprocurement.org/get/c6f89b92473441cbaa2a8e2bb0f22353?KeyID=e9f0c83f&Signature=keEFy5%2FljgE9pHQf23osRx%2FnBS4gZnw8mgvKxPdn00%2Fsgpucej9NUmswL6DL5jnb9CiACTlkF%2FxER3MfOlCcAQ%253D%253D",
            "format": "application/pdf",
            "documentOf": "tender",
            "datePublished": "2017-10-11T17:20:29.436776+03:00",
            "id": "15b94d4f96154ef384cf7753eada982f",
            "dateModified": "2017-10-11T17:20:30.211215+03:00"
          }
        ],
        "reason": "cancellation reason",
        "reasonType": "unsuccessful",
        "date": "2017-10-11T17:20:30.663489+03:00",
        "cancellationOf": "tender",
        "id": "f832040080294beab8bf97d501ea7a26"
      }
    ],
    "noticePublicationDate": "2017-10-11T17:20:16.434661+03:00",
    "awardCriteria": "ratedCriteria"
  }
}

Now status value is cancelled.

Data Standard

Data standard is modelled along the Open Contracting Standard with extensions in areas that were not covered by it.

Tender

Schema

title:

string, multilingual, uk (title) and en (title_en) translations are required

The name of the tender, displayed in listings. You can include the following items:

  • tender code (in procuring organization management system)
  • periodicity of the tender (annual, quarterly, etc.)
  • item being procured
  • some other info
description:

string, multilingual

Detailed description of tender.

tenderID:

string, auto-generated, read-only

The tender identifier to refer tender to in “paper” documentation.

OpenContracting Description: TenderID should always be the same as the OCID. It is included to make the flattened data structure more convenient.

procurementMethodType:
 

string

value: esco

procuringEntity:
 

ProcuringEntity, required

Organization conducting the tender.

OpenContracting Description: The entity managing the procurement, which may be different from the buyer who is paying / using the items being procured.

NBUdiscountRate:
 

float, required

NBU Discount Rate as of tender notice publication date. Possible values: from 0 to 0.99 (from 0% to 99% respectively), with 3-digit precision after comma (e.g. 00.000). NBUdiscountRate change is interpreted as a change of tender conditions.

guarantee:

Guarantee

Bid guarantee

items:

list of Item objects, required

List that contains single item being procured.

OpenContracting Description: The goods and services to be purchased, broken into line items wherever possible. Items should not be duplicated, but a quantity of 2 specified instead.

features:

list of Feature objects

Features of tender.

documents:

list of Document objects

OpenContracting Description: All documents and attachments related to the tender.

questions:

list of Question objects

Questions to procuringEntity and answers to them.

complaints:

list of Complaint objects

Complaints to tender conditions and their resolutions.

bids:

list of Bid objects

A list of all bids placed in the tender with information about tenderers, their proposal and other qualification documentation.

OpenContracting Description: A list of all the companies who entered submissions for the tender.

minimalStepPercentage:
 

Value, Float, required.

Minimum step increment of the energy service contract performance indicator during auction that is calculated from participant’s bid. Possible values: from 0.005 to 0.03 (from 0.5% to 3%), with 3-digit precision after comma.

awards:

list of Award objects

All qualifications (disqualifications and awards).

contracts:

List of Contract objects

enquiryPeriod:

Period, required

Period when questions are allowed.

OpenContracting Description: The period during which enquiries may be made.

tenderPeriod:

Period, required

Period when bids can be submitted. At least endDate has to be provided.

OpenContracting Description: The period when the tender is open for submissions. The end date is the closing date for tender submissions.

qualificationPeriod:
 

Period, read-only

This period consists of qualification and 10 days of stand still period.

OpenContracting Description: Period when qualification can be submitted with stand still period.

auctionPeriod:

Period, read-only

Period when Auction is conducted.

auctionUrl:

url

A web address for view auction.

awardPeriod:

Period, read-only

Awarding process period.

OpenContracting Description: The date or period on which an award is anticipated to be made.

status:

string

active.tendering:
 Enquiries and tendering period
active.pre-qualification:
 Pre qulification period
active.pre-qualification.stand-still:
 Standstill before auction
active.auction:Auction period (auction)
active.qualification:
 Winner qualification (qualification)
active.awarded:Standstill period (standstill)
complete:Complete tender (complete)
unsuccessful:Unsuccessful tender (unsuccessful)
cancelled:Cancelled tender (cancelled)

Status of the Tender.

lots:

list of Lot objects.

Contains all tender lots.

qualifications:

list of Qualification objects.

Contains all tender qualifications.

cancellations:

list of Cancellation objects.

Contains 1 object with active status in case of cancelled Tender.

The Cancellation object describes the reason of tender cancellation contains accompanying documents if any.

revisions:

list of Revision objects, auto-generated

Historical changes to Tender object properties.

fundingKind:

string, required.

Tender funding source. Possible values:
  • budget - Budget funding.
  • other - exclusively supplier’s funding.

Default value: other

yearlyPaymentsPercentageRange:
 

float, required

Fixed percentage of participant’s cost reduction sum, with 3-digit precision after comma. Possible values:

  • from 0.8 to 1 (from 80% to 100% respectively) if tender:fundingKind:other.
  • from 0 to x, where x can vary from 0 to 0.8 (from 0% to x% respectively) if tender:fundingKind:budget.
noticePublicationDate:
 

string, Date

Read-only, autogenerated.

Date of tender announcement.

Important

The Tender dates should be sequential:

  • Current time
  • enquiryPeriod.startDate
  • tenderPeriod.startDate
  • enquiryPeriod.endDate
  • tenderPeriod.endDate

Organization

Schema

name:

string, multilingual, uk (title) and en (title_en) translations are required

OpenContracting Description: The common name of the organization.

identifier:

Identifier

OpenContracting Description: The primary identifier for this organization.

additionalIdentifiers:
 

List of Identifier objects

address:

Address, required

contactPoint:

ContactPoint, required

Identifier

Schema

scheme:

string

OpenContracting Description: Organization identifiers be drawn from an existing identification scheme. This field is used to indicate the scheme or codelist in which the identifier will be found. This value should be drawn from the Organization Identifier Scheme.

id:

string, required

OpenContracting Description: The identifier of the organization in the selected scheme.

The allowed codes are the ones found in “Organisation Registration Agency” codelist of IATI Standard with addition of UA-EDR code for organizations registered in Ukraine (EDRPOU and IPN).

legalName:

string, multilingual

OpenContracting Description: The legally registered name of the organization.

uri:

uri

OpenContracting Description: A URI to identify the organization, such as those provided by Open Corporates or some other relevant URI provider. This is not for listing the website of the organization: that can be done through the url field of the Organization contact point.

Address

Schema

streetAddress:

string, required

OpenContracting Description: The street address. For example, 1600 Amphitheatre Pkwy.

locality:

string, required

OpenContracting Description: The locality. For example, Mountain View.

region:

string, required

OpenContracting Description: The region. For example, CA.

postalCode:

string, required

OpenContracting Description: The postal code. For example, 94043.

countryName:

string, multilingual, required

OpenContracting Description: The country name. For example, United States.

ContactPoint

Schema

name:

string, multilingual, required

OpenContracting Description: The name of the contact person, department, or contact point, for correspondence relating to this contracting process.

email:

email

OpenContracting Description: The e-mail address of the contact point/person.

telephone:

string

OpenContracting Description: The telephone number of the contact point/person. This should include the international dialling code.

faxNumber:

string

OpenContracting Description: The fax number of the contact point/person. This should include the international dialling code.

url:

url

OpenContracting Description: A web address for the contact point/person.

availableLanguage:
 

string

Possible values are:

  • uk
  • en
  • ru

Specifies the language of communication.

Either email or telephone field has to be provided.

ProcuringEntity

Schema

name:

string, multilingual

OpenContracting Description: The common name of the organization.

identifier:

Identifier

OpenContracting Description: The primary identifier for this organization.

additionalIdentifiers:
 

List of Identifier objects

address:

Address, required

contactPoint:

ContactPoint, required

kind:

string

Type of procuring entity

Possible values:
  • general - Procuring entity (general)
  • special - Procuring entity that operates in certain spheres of economic activity
  • defense - Procuring entity that conducts procurement for the defense needs

Item

Schema

id:

string, auto-generated

description:

string, multilingual, required

OpenContracting Description: A description of the goods, services to be provided.

classification:

Classification

OpenContracting Description: The primary classification for the item. See the itemClassificationScheme to identify preferred classification lists, including CPV and GSIN.

It is mandatory for classification.scheme to be CPV. The classification.id should be valid CPV code.

additionalClassifications:
 

List of Classification objects

OpenContracting Description: An array of additional classifications for the item. See the itemClassificationScheme codelist for common options to use in OCDS. This may also be used to present codes from an internal classification scheme.

It is mandatory to have at least one item with ДКПП as scheme.

unit:

Unit

OpenContracting Description: Description of the unit which the good comes in e.g. hours, kilograms. Made up of a unit name, and the value of a single unit.

deliveryAddress:
 

Address, not required

Address, where the item should be delivered.

deliveryLocation:
 

dictionary

Geographical coordinates of delivery location. Element consist of the following items:

latitude:string, required
longitude:string, required
elevation:string, optional, usually not used

deliveryLocation usually takes precedence over deliveryAddress if both are present.

relatedLot:

string

Id of related Lot.

Classification

Schema

scheme:

string

OpenContracting Description: A classification should be drawn from an existing scheme or list of codes. This field is used to indicate the scheme/codelist from which the classification is drawn. For line item classifications, this value should represent a known Item Classification Scheme wherever possible.

id:

string

OpenContracting Description: The classification code drawn from the selected scheme.

description:

string

OpenContracting Description: A textual description or title for the code.

uri:

uri

OpenContracting Description: A URI to identify the code. In the event individual URIs are not available for items in the identifier scheme this value should be left blank.

Unit

Schema

code:

string, required

UN/CEFACT Recommendation 20 unit code.

name:

string

OpenContracting Description: Name of the unit

Document

Schema

id:

string, auto-generated

documentType:

string

Possible values for Tender

  • notice - Tender notice

    The formal notice that gives details of a tender. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • biddingDocuments - Bidding Documents

    Information for potential suppliers, describing the goals of the contract (e.g. goods and services to be procured), and the bidding process.

  • technicalSpecifications - Technical Specifications

    Detailed technical information about goods or services to be provided. For Open EU procedure technicalSpecifications should be contained in documents envelope. See Bid.

  • evaluationCriteria - Evaluation Criteria

    Information about how bids will be evaluated.

  • clarifications - Clarifications to bidders questions

    Including replies to issues raised in pre-bid conferences.

  • eligibilityCriteria - Eligibility Criteria

    Detailed documents about the eligibility of bidders.

  • shortlistedFirms - Shortlisted Firms

  • riskProvisions - Provisions for management of risks and liabilities

  • billOfQuantity - Bill Of Quantity

    For Open EU procedure billOfQuantity should be contained in financialDocuments envelope. See Bid.

  • bidders - Information on bidders

    Information on bidders or participants, their validation documents and any procedural exemptions for which they qualify.

  • conflictOfInterest - Conflicts of interest uncovered

  • debarments - Debarments issued

  • contractProforma - Draft contract

Possible values for Award

  • notice - Award Notice

    The formal notice that gives details of the contract award. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • evaluationReports - Evaluation report

    Report on the evaluation of the bids and the application of the evaluation criteria, including the justification fo the award.

  • winningBid - Winning Bid

  • complaints - Complaints and decisions

Possible values for Contract

  • notice - Contract notice

    The formal notice that gives details of a contract being signed and valid to start implementation. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • contractSigned - Signed Contract

  • contractArrangements - Arrangements for ending contract

  • contractSchedule - Schedules and milestones

  • contractAnnexe - Annexes to the Contract

  • contractGuarantees - Guarantees

  • subContract - Subcontracts

Possible values for Bid

  • commercialProposal - Сommercial proposal

    For Open EU procedure commercialProposal should be contained in financialDocuments envelope. See Bid.

  • qualificationDocuments - Qualification documents

    For Open EU procedure qualificationDocuments should be contained in documents envelope. See Bid.

  • eligibilityDocuments - Eligibility documents

    For Open EU procedure eligibilityDocuments should be contained in eligibilityDocuments envelope. See Bid.

title:

string, multilingual

OpenContracting Description: The document title.

description:

string, multilingual

OpenContracting Description: A short description of the document. In the event the document is not accessible online, the description field can be used to describe arrangements for obtaining a copy of the document.

format:

string

OpenContracting Description: The format of the document taken from the IANA Media Types code list, with the addition of one extra value for ‘offline/print’, used when this document entry is being used to describe the offline publication of a document.

url:

string, auto-generated

OpenContracting Description: Direct link to the document or attachment.

datePublished:

string, Date

OpenContracting Description: The date on which the document was first published.

dateModified:

string, Date

OpenContracting Description: Date that the document was last modified

language:

string

Possible values are:

  • uk
  • en
  • ru

OpenContracting Description: Specifies the language of the linked document using either two-digit ISO 639-1, or extended BCP47 language tags.

documentOf:

string

Possible values are:

  • tender
  • item
  • lot
relatedItem:

string

Id of related Lot or Item.

ConfidentialDocument

Schema

id:

string, auto-generated

documentType:

string

Possible values for Tender

  • notice - Tender notice

    The formal notice that gives details of a tender. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • biddingDocuments - Bidding Documents

    Information for potential suppliers, describing the goals of the contract (e.g. goods and services to be procured), and the bidding process.

  • technicalSpecifications - Technical Specifications

    Detailed technical information about goods or services to be provided.

  • evaluationCriteria - Evaluation Criteria

    Information about how bids will be evaluated.

  • clarifications - Clarifications to bidders questions

    Including replies to issues raised in pre-bid conferences.

  • eligibilityCriteria - Eligibility Criteria

    Detailed documents about the eligibility of bidders.

  • shortlistedFirms - Shortlisted Firms

  • riskProvisions - Provisions for management of risks and liabilities

  • billOfQuantity - Bill Of Quantity

  • bidders - Information on bidders

    Information on bidders or participants, their validation documents and any procedural exemptions for which they qualify.

  • conflictOfInterest - Conflicts of interest uncovered

  • debarments - Debarments issued

Possible values for Award

  • notice - Award Notice

    The formal notice that gives details of the contract award. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • evaluationReports - Evaluation report

    Report on the evaluation of the bids and the application of the evaluation criteria, including the justification fo the award.

  • winningBid - Winning Bid

  • complaints - Complaints and decisions

Possible values for Contract

  • notice - Contract notice

    The formal notice that gives details of a contract being signed and valid to start implementation. This may be a link to a downloadable document, to a web page, or to an official gazette in which the notice is contained.

  • contractSigned - Signed Contract

  • contractArrangements - Arrangements for ending contract

  • contractSchedule - Schedules and milestones

  • contractAnnexe - Annexes to the Contract

  • contractGuarantees - Guarantees

  • subContract - Subcontracts

Possible values for Bid

  • commercialProposal - Сommercial proposal

    For Open EU procedure commercialProposal should be contained in financialDocuments envelope. See Bid.

  • qualificationDocuments - Qualification documents

    For Open EU procedure qualificationDocuments should be contained in documents envelope. See Bid.

  • eligibilityDocuments - Eligibility documents

    For Open EU procedure eligibilityDocuments should be contained in eligibilityDocuments envelope. See Bid.

title:

string, multilingual

OpenContracting Description: The document title.

description:

string, multilingual

OpenContracting Description: A short description of the document. In the event the document is not accessible online, the description field can be used to describe arrangements for obtaining a copy of the document.

format:

string

OpenContracting Description: The format of the document taken from the IANA Media Types code list, with the addition of one extra value for ‘offline/print’, used when this document entry is being used to describe the offline publication of a document.

url:

string, auto-generated

OpenContracting Description: Direct link to the document or attachment.

confidentiality:
 

string

Possible values are:

  • public
  • buyerOnly
confidentialityRationale:
 

string

Reasons for confidentiality of documents.

datePublished:

string, Date

OpenContracting Description: The date on which the document was first published.

dateModified:

string, Date

OpenContracting Description: Date that the document was last modified

language:

string, default = uk

Possible values are:

  • uk
  • en
  • ru

OpenContracting Description: Specifies the language of the linked document using either two-digit ISO 639-1, or extended BCP47 language tags.

documentOf:

string

Possible values are:

  • tender
  • item
  • lot
relatedItem:

string

ID of related Lot or Item.

Lot

Schema

id:

string, auto-generated

title:

string, multilingual

The name of the tender lot.

description:

string, multilingual

Detailed description of tender lot.

guarantee:

Guarantee

Bid guarantee

minimalStepPercentage:
 

float, required

Minimum step increment of the energy service contract performance indicator during auction that is calculated on participant’s bid. Possible values: from 0.005 to 0.03 (from 0.5% to 3% respectively) with 3-digit precision after comma.

auctionPeriod:

Period, read-only

Period when Auction is conducted.

auctionUrl:

url

A web address for view auction.

status:

string

active:Active tender lot
unsuccessful:Unsuccessful tender lot
complete:Completed tender lot
cancelled:Cancelled tender lot

Status of the Lot.

fundingKind:

string, required

Lot funding source:
 

Possible values:

  • budget - Budget funding.
  • other - Supplier funding.

Default value: other

yearlyPaymentsPercentageRange:
 

float, required

Fixed percentage of participant’s cost reduction sum, with 3-digit precision after comma.

Possible values:

  • from 0.8 to 1 (from 80% to 100% respectively) if lot:fundingKind:other.

  • from 0 to 0.8 (from 0% to 80% respectively) if lot:fundingKind:budget.

    Input precision - 3 digits after comma.

Workflow

digraph G {
    A [ label="active*" ]
    B [ label="complete"]
    C [ label="cancelled"]
    D [ label="unsuccessful"]
     A -> B;
     A -> C;
     A -> D;
}

* marks initial state

Bid

Schema

tenderers:

list of Organization objects

date:

string, Date, autogenerated

id:

uid, autogenerated

status:

string

Possible values are:

  • draft
  • pending
  • active
  • invalid
  • invalid.pre-qualification
  • deleted
value:

Value, required

subcontractingDetails:
 

string

While submitting bid proposal, participant can fill in the text field of any length about subcontractor.

selfEligible:

true/false, required

Confirms compliance of eligibility criteria set by the customer in the tendering documents.

selfQualified:

true/false, required

Confirms the absence of grounds for refusal to participate in accordance with Article 17 of the Law of Ukraine “On public procurement”.

parameters:

list of Parameter objects

lotValues:

list of LotValue objects

participationUrl:
 

url

A web address for participation in auction.

There are several envelopes - document containers that manage time when their information will be revealed:

documents:list of ConfidentialDocument objects. This envelope has to contain only technical part of proposal (technicalSpecifications and qualificationDocuments). It is revealed at pre-qualification.
financialDocuments:
 list of ConfidentialDocument objects. This envelope can contain financial part of proposal (commercialProposal and billOfQuantity). It is revealed at post-qualification.
eligibilityDocuments:
 list of ConfidentialDocument objects. This envelope can contain eligibilityDocuments document type. It is revealed at pre-qualification.
qualificationDocuments:
 list of ConfidentialDocument objects. This envelope is revealed at post-qualification.

Parameter

Schema

code:

string, required

Code of the feature.

value:

float, required

Value of the feature.

LotValue

Schema

value:

Value, required

relatedLot:

string

Id of related Lot.

subcontractingDetails:
 

string

While submitting bid proposal, participant can fill in the text field of any length about subcontractor.

date:

string, Date, autogenerated

participationUrl:
 

url

A web address for participation in auction.

Workflow

digraph G {
    A [ label="pending*" ]
    B [ label="active"]
    C [ label="cancelled"]
    D [ label="unsuccessful"]
    E [ label="deleted"]
    F [ label="invalid"]
     A -> B [dir="both"];
     A -> C;
     A -> D [dir="both"];
     A -> E;
     A -> F [dir="both"];
     B -> C;
     D -> C;
     E -> C;
     F -> C;
     F -> E;
}

* marks initial state

Qualification

Schema

id:

string, auto-generated

title:

string, multilingual

OpenContracting Description: Qualification title.

description:

string, multilingual

OpenContracting Description: Qualification description.

eligible:

bool

Confirms compliance of eligibility criteria set by the procuring entity in the tendering documents.

qualified:

bool

Confirms the absence of grounds for refusal to participate in accordance with Article 17 of the Law of Ukraine “On Public Procurement”.

bidID:

string, auto-generated

Bid that this Qualification protocol relates to.

lotID:

string, auto-generated

In Multilot tenders, lot that this Qualification protocol relates to.

date:

string, Date, auto-generated, read-only

The date of the qualification.

documents:

List of Document objects

Container for Qualification documentation, protocols, reasons for qualification or disqualification. Uploaded by tender committee.

status:

string

Possible values are:

  • pending
  • active
  • unsuccessful
  • cancelled

Workflow

digraph G {
    A [ label="pending*" ]
    B [ label="active"]
    C [ label="cancelled"]
    D [ label="unsuccessful"]
     A -> B;
     A -> C;
     A -> D;
     D -> C;
     B -> C;
}

* marks initial state

Award

Schema

id:

string, auto-generated, read-only

OpenContracting Description: The identifier for this award.

bid_id:

string, auto-generated, read-only

The Id of a bid that the award relates to.

title:

string, multilingual

OpenContracting Description: Award title.

description:

string, multilingual

OpenContracting Description: Award description.

eligible:

bool

Confirms compliance of eligibility criteria set by the procuring entity in the tendering documents.

qualified:

bool

Confirms the absence of grounds for refusal to participate in accordance with Article 17 of the Law of Ukraine “On Public Procurement”.

status:

string

OpenContracting Description: The current status of the award drawn from the awardStatus codelist.

Possible values are:

  • pending - the award is under review of qualification committee
  • unsuccessful - the award has been rejected by qualification comittee
  • active - the tender is awarded to the bidder from the bid_id
  • cancelled - the award has been cancelled by complaint review body
date:

string, Date, auto-generated, read-only

OpenContracting Description: The date of the contract award.

value:

list of Value objects, auto-generated, read-only

OpenContracting Description: The total value of this award.

suppliers:

list of Organization objects, auto-generated, read-only

OpenContracting Description: The suppliers awarded with this award.

items:

list of Item objects, auto-generated, read-only

OpenContracting Description: The goods and services awarded in this award, broken into line items wherever possible. Items should not be duplicated, but the quantity specified instead.

documents:

list of Document objects

OpenContracting Description: All documents and attachments related to the award, including any notices.

complaints:

list of Complaint objects

complaintPeriod:
 

Period

The timeframe when complaints can be submitted.

lotID:

string

Id of related Lot.

Workflow

digraph G {
    A [ label="pending*" ]
    B [ label="active"]
    C [ label="cancelled"]
    D [ label="unsuccessful"]
     A -> B;
     A -> D;
     B -> C;
     D -> C;
}

* marks initial state

Question

Schema

id:

uid, auto-generated

author:

Organization, required

Who is asking a question (contactPoint - person, identification - organization that person represents).

title:

string, required

Title of the question.

description:

string

Description of the question.

date:

string, Date, auto-generated

Date of posting.

answer:

string

Answer for the question asked.

questionOf:

string

Possible values are:

  • tender
  • item
  • lot
relatedItem:

string

Id of related Lot or Item.

Complaint

Schema

id:

uid, auto-generated

author:

Organization, required

Organization filing a complaint (contactPoint - person, identification - organization that person represents).

title:

string, required

Title of the complaint.

description:

Description of the issue.

date:

string, Date, auto-generated

Date of posting.

dateSubmitted:

string, Date, auto-generated

Date when claim was submitted.

dateAnswered:

string, Date, auto-generated

Date when Procuring entity answered the claim.

dateEscalated:

string, Date, auto-generated

Date of claim to complaint escalation.

dateDecision:

string, Date, auto-generated

Date of complaint decision.

dateCanceled:

string, Date, auto-generated

Date of cancelling.

status:

string

Possible values are:

  • draft
  • claim
  • answered
  • pending
  • invalid
  • declined
  • resolved
  • cancelled
  • accepted
type:

string

Possible values of type are:

  • claim
  • complaint
resolution:

string

Resolution of Procuring entity.

resolutionType:

string

Possible values of resolution type are:

  • invalid
  • declined
  • resolved
satisfied:

bool

Claim is satisfied?

decision:

string

Reviewer decision.

cancellationReason:
 

string

Cancellation reason.

documents:

List of Document objects

relatedLot:

string

Id of related Lot.

tendererAction:

string

Tenderer action.

tendererActionDate:
 

string, Date, auto-generated

Date of tenderer action.

acceptance:

bool

Claim is satisfied?

rejectReason:

string

Possible values of reject reason are:

  • law
  • payment
  • fixed
rejectReasonDescription:
 

string

Reject reason description.

reviewDate:

string, Date, auto-generated

Date of review.

reviewPlace:

string

Place of review.

Contract

Schema

id:

uid, auto-generated

OpenContracting Description: The identifier for this contract.

awardID:

string, required

OpenContracting Description: The Award.id against which this contract is being issued.

contractID:

string, auto-generated, read-only

contractNumber:

string

title:

string, required

OpenContracting Description: Contract title

description:

string

OpenContracting Description: Contract description

status:

string, required

OpenContracting Description: The current status of the contract.

Possible values are:

  • pending - this contract has been proposed, but is not yet in force. It may be awaiting signature.
  • active - this contract has been signed by all the parties, and is now legally in force.
  • cancelled - this contract has been cancelled prior to being signed.
  • terminated - this contract was signed and in force, and has now come to a close. This may be due to a successful completion of the contract, or may be early termination due to some non-completion issue.
period:

Period

OpenContracting Description: The start and end date for the contract.

items:

List of Item objects, auto-generated, read-only

OpenContracting Description: The goods, services, and any intangible outcomes in this contract. Note: If the items are the same as the award do not repeat.

suppliers:

List of Organization objects, auto-generated, read-only

value:

Value object, auto-generated, read-only

OpenContracting Description: The total value of this contract.

dateSigned:

string, Date, auto-generated

OpenContracting Description: The date the contract was signed. In the case of multiple signatures, the date of the last signature.

documents:

List of Document objects

OpenContracting Description: All documents and attachments related to the contract, including any notices.

Workflow

digraph G {
    A [ label="pending*" ]
    B [ label="active"]
    C [ label="cancelled"]
     A -> B [ headlabel="Broker action"
              labeldistance=3.7;
              labelangle=75;
     ];
     A -> C [label="on Award cancellation"];
}

* marks initial state

Period

Schema

startDate:

string, Date

OpenContracting Description: The start date for the period.

endDate:

string, Date, required

OpenContracting Description: The end date for the period.

startDate should always precede endDate.

Date

Date/time in Date Format: ISO 8601.

Value

Schema

annualCostsReduction:
 

21-element list of Floats, required.

Buyer’s annual costs reduction. A 21-element array where the 1st element indicates cost reduction starting from the period of tender notice publication date till the end of the year. Value can be changed only during active tendering period (active.tendering).

yearlyPaymentsPercentage:
 

in yearlyPaymentsPercentageRange float, required

The percentage of annual payments in favor of Bidder.

Possible values:

  • from 0.8 to 1 (from 80% to 100% respectively) if fundingKind:other.
  • from 0 to x, where x can vary from 0 to 0.8 (from 0% to x% respectively) if fundingKind:budget.

Input precision - 3 digits after comma.

valueAddedTaxIncluded:
 

bool, required

currency:

string, required

OpenContracting Description: The currency in 3-letter ISO 4217 format.

amountPerformance:
 

float, autogenerated

Calculated energy service contract performance indicator. Calculated by the energy service contract performance indicator energy service contract performance indicator formula.

amount:

float, autogenerated

Calculated energy service contract value. Calculated by the energy service contract value formula.

contractDuration:
 

in Contract duration, required.

Contract duration

Schema

years:

integer, required

Possible values: 0-15

days:

integer, not required

Possible values: 0-364

Default value: 0

Revision

Schema

date:

string, Date

Date when changes were recorded.

changes:

list of Change objects

Guarantee

Schema

amount:

float, required

OpenContracting Description: Amount as a number.

Should be positive.

currency:

string, required, default = UAH

OpenContracting Description: The currency in 3-letter ISO 4217 format.

Cancellation

Schema

id:

uid, auto-generated

reason:

string, multilingual, required

The reason, why Tender is being cancelled.

status:

string

Possible values are:
pending:Default. The request is being prepared.
active:Cancellation activated.
reasonType:

string

There are two possible types of cancellation reason set by procuring entity:

cancelled:Default. Tender was cancelled.
unsuccessful:Tender was unsuccessful.
documents:

List of Document objects

Documents accompanying the Cancellation: Protocol of Tender Committee with decision to cancel the Tender.

date:

string, Date

Cancellation date.

cancellationOf:

string

Possible values are:

  • tender
  • lot
relatedLot:

string

Id of related Lot.

Workflow

digraph G {
    A [ label="pending*" ]
    B [ label="active"]
     A -> B;
}

* marks initial state

Feature

Schema

code:

string, auto-generated

Code of the feature.

featureOf:

string, required

Possible values are:

  • tenderer
  • lot
  • item
relatedItem:

string

Id of related item.

title:

string, multilingual, required

Title of the feature.

description:

string, multilingual

Description of the feature.

enum:

list

List of values:

value:

float, required

Value of the feature.

title:

string, multilingual, required

Title of the value.

description:

string, multilingual

Description of the value.

Indices and tables