Welcome to openprocurement.auctions.geb’s documentation!

Contents:

Overview

openprocurement.auctions.geb contains documentaion regarding open ascending price auctions within the Lease of Land process.

Type of the given procedure:

  • landLease

Features

Conventions

API accepts JSON or form-encoded content in requests. It returns JSON content in all of its responses, including errors. Only the UTF-8 character encoding is supported for both requests and responses.

All API POST and PUT requests expect a top-level object with a single element in it named data. Successful responses will mirror this format. The data element should itself be an object, containing the parameters for the request. In the case of creating a new auction, these are the fields we want to set on the auction itself.

If the request was successful, we will get a response code of 201 indicating the object was created. That response will have a data field at its top level, which will contain complete information on the new auction, including its ID.

If something went wrong during the request, we’ll get a different status code and the JSON returned will have an errors field at the top level containing a list of problems. We look at the first one and print out its message.

Project status

The project has pre alpha status.

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

You can leave feedback by raising a new issue on the issue tracker (GitHub registration necessary).

API stability

API is relatively stable. The changes in the API are communicated via Open Procurement API maillist and ProZorro.Sale Slack chats.

Change log

0.1

Released: not released

Next steps

You might find it helpful to look at the Tutorial.

Procedure Workflow

Procedure Workflow for 1 Submitted Bid

_images/3.png

Status Workflow

digraph G {
    subgraph cluster_1 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed,  arrowhead="vee"];
        "draft" -> "active.rectification" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.rectification" -> "active.tendering" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.tendering" -> "active.enquiry" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.enquiry" -> "active.qualification" [color="0.7777 1.0000 0.5020"];
        edge[dir="forward"];
        "active.qualification" -> "active.awarded" [color="0.7777 1.0000 0.5020"];
        edge[dir="forward"];
        "active.awarded" -> "complete" [color="0.7777 1.0000 0.5020"];
    color=white;
    }
        edge[style=solid]
        "active.enquiry" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
        edge[style=solid];
        "active.qualification" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
        edge[style=solid];
        "active.awarded" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
}
Roles
Chronograph:solid
Organizer:dashed

Procedure Workflow for 2 Submitted Bids or More

_images/4.png

Status Workflow

digraph G {
    subgraph cluster_1 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed,  arrowhead="vee"];
        "draft" -> "active.rectification" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.rectification" -> "active.tendering" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.tendering" -> "active.enquiry" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.enquiry" -> "active.auction" [color="0.7777 1.0000 0.5020"];
        edge[style=solid,  arrowhead="vee"];
        "active.auction" -> "active.qualification" [color="0.7777 1.0000 0.5020"];
        edge[dir="forward"];
        "active.qualification" -> "active.awarded" [color="0.7777 1.0000 0.5020"];
        edge[dir="forward"];
        "active.awarded" -> "complete" [color="0.7777 1.0000 0.5020"];
    color=white;
    }
    edge[style=solid]
    "active.tendering" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
    edge[style=solid]
    "active.enquiry" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
    edge[style=solid]
    "active.auction" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
    edge[style=solid]
    "active.qualification" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
    edge[style=solid];
    "active.awarded" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
}
Roles
Chronograph:solid
Organizer:dashed

Bid Workflow

digraph G {
    subgraph cluster_2 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed];
        "draft" -> "pending" [color="0.7777 1.0000 0.5020"];
    color=white;
    }

    subgraph cluster_4 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed, dir="forward"];
        "pending" -> "active" [color="0.7777 1.0000 0.5020"];
    color=white;
    }

    subgraph cluster_3 {
        node [style=filled, fillcolor=white];
        edge[style=solid];
        "pending" -> "unsuccessful" [color="0.0000 0.0000 0.3882"];
    color=white;
    }
}

Roles

Chronograph:solid
Organizer:dashed

Award Workflow

Procedure Workflow for 1 Submitted Bid

Award Section

digraph G {
    subgraph cluster_1 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed,  arrowhead="vee", label="*"];
        "pending" -> "active";
        node [style=filled, fillcolor=white];
        edge[style=dashed,  arrowhead="vee",  label="~~", constraint=false];
        "pending" -> "unsuccessful";
        edge[style=solid,  arrowhead="vee",  label="**", constraint=false];
        "pending" -> "unsuccessful";
        edge[style=solid,  arrowhead="vee", label="~", constraint=false];
        "active" -> "unsuccessful";
        label = "Awarding Process";
        color=white
        {rank=same; "active" "unsuccessful"}
    }
}
Legend

* admission protocol is downloaded and award is switched to active by the organizer.

** organizer has decided to disqualify the bidder. The approptiate document is downloaded and award is manually switched to unsuccessful.

~~ admission protocol is not downloaded and award is not switched to pending by the organizer in time.

~ contract is switched to cancelled and award is manually switched to unsuccessful.

Roles
Chronograph:solid
Organizer:dashed

Contract Section

digraph G {
    subgraph cluster_1 {
        node [style=filled, fillcolor=seashell2];
        edge[style=dashed,  arrowhead="vee", label="*"];
        "pending" -> "acive";
        label = "Contract Workflow";
        color=white
    }
    edge[style=dashed,  arrowhead="vee",  label="**"];
    "pending" -> "cancelled";
}
Legend

* document was downloaded to contract. The contract itself was successfully activated by the organizer.

** there was no document uploaded. The organizer refused to activate the contract.

Roles
Chronograph:solid
Organizer:dashed
  1. The procedure receives active.qualification status.

  2. The award initially receives pending status. The awarding process enters the verificationPeriod phase. If the actions needed are not completed, the award auctomatically receives unsuccessful status, so that the procedure will be switched to unsuccessful as well.

    2.1 If the organizer decides to disqualify the bidder, a document (documentType: rejectionProtocol or act) has to be downloaded first and the award has to be manually switched to unsuccessful then. The procedure will be given unsuccessful status this way.

  3. When the conditions are met, the process enters the verificationPeriod. During this term the organizer uploads the protocol (documentType: auctionProtocol) first and manually switches award to active status then. Simultaneously the awarding process enters the signingPeriod phase and the procedure receives active.awarded status.

    3.1 If the organizer decides to disqualify the bidder, a document (documentType: rejectionProtocol or act) has to be downloaded first and the award has to be manually switched to unsuccessful then.

  4. It is then when the qualification procedure enters the signingPeriod stage. The contract of the qualifying bid initially receives a pending status. Within this time, the organizer should upload the document (documentType: contractSigned) in the system and manually switch contract to active status in order to successfully finish the qualification procedure.

    4.1 For the bidder to be disqualified a document (documentType: rejectionProtocol or act) has to be downloaded first and the contract has to be manually switched to cancelled by the organizer then. As long as such an action is done, award status will receive unsuccessful.

Notes

  1. The auto-generated period duration does not influence the actions which can be done.
  2. The organizer can disqualify the award at any stage of the awarding process up to the moment, when a document with the documentType: contractSigned has been downloaded.

Statuses

pending:
Award:Awaiting for the protocol to be uploaded and confirmed by the organizer. The valid bidder is able to submit the protocol as well, although it is not sufficient to move to the next status.
Contract:Awaiting for the contract to be signed (uploaded and activated in the system by the organizer).
active:
Award:Auction protocol (documentType: auctionProtocol) was downloaded so that the award could be switched to active by the organizer.
Contract:The document (documentType: contractSigned) was downloaded so that the status of the contract object could be switched to active by the organizer.
unsuccessful:

Terminal status of award. Rejection protocol or act (documentType: rejectionProtocol/act) was downloaded so that the award could be switched to unsuccessful by the organizer. Or when the contract becomes status cancelled, the status of the award will be unsuccessful.

cancelled:

Terminal status of contract. Rejection protocol or act (documentType: rejectionProtocol/act) was downloaded so that the contract could be switched to cancelled by the organizer.

Data Standard

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

Auction

Schema

id:

uuid, auto-generated, read-only

Internal id of procedure.

auctionID:

string, auto-generated, read-only

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

OpenContracting Description: It is included to make the flattened data structure more convenient.

date:

Date, auto-generated, read-only

The date of the procedure creation/undoing.

owner:

string, auto-generated, read-only

Broker_id of the platform from which the procedure has been created

lotIdentifier:

string, required

The identifier of a lot, which is to be privatized, within the Registry.

title:

string, multilingual, required

  • Ukrainian by default (required) - Ukrainian title
  • title_en (English) - English title
  • title_ru (Russian) - Russian title

Oprionally can be mentioned in English/Russian.

The name of the auction, displayed in listings.

description:

string, required, multilingual

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

  • Ukrainian by default - Ukrainian decription
  • decription_en (English) - English decription
  • decription_ru (Russian) - Russian decription
tenderAttempts:

integer, optional

The number which represents what time procedure with a current lot takes place [1;10].

minNumberOfQualifiedBids:
 

integer, optional

Number of submitted bids for the process to become successful. The default value is 2.

procurementMethod:
 

string, auto-generated, read-only

Purchase method. The only value is “open”.

procurementMethodType:
 

string, required

Type of the procedure within the auction announcement. The given value is landLease.

procurementMethodDetails:
 

string, optional

Parameter that accelerates auction periods. Set quick, accelerator=1440 as text value for procurementMethodDetails for the time frames to be reduced in 1440 times.

submissionMethod:
 

string, auto-generated, read-only

The given value is electronicAuction.

submissionMethodDetails:
 

string, optional

Parameter that works only with mode = “test” and speeds up auction start date.

lotHolder:

Organization, required

The entity whom the lot was used to be owned by.

procuringEntity:
 

ProcuringEntity (Organizer), required

Organization conducting the auction.

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

auctionParameters:
 

Auction Parameters, auto-generated, read-only

The parameters that indicates the major specifications of the procedure.

contractTerms:

Contract Terms, required

The parameters that indicates the major specifications of the contract.

budgetSpent:

Value, required

The amount of expenses incurred for the preparation of a lot for the sale, organization and conduct of land auction, subject to compensation by the winner of land tenders.

value:

Value, required

Total available budget of the 1st auction. Bids lower than value will be rejected.

OpenContracting Description: The total estimated value of the procurement.

minimalStep:

Value, required

Auction step (increment).

guarantee:

Guarantee, required

The assumption of responsibility for payment of performance of some obligation if the liable party fails to perform to expectations.

registrationFee:
 

Guarantee, required

The sum of money required to enroll on an official register.

bankAccount:

Bank_Account, optional

An array that contains parts that uniquely identify a bank account and are used for making or receiving a payment.

items:

Array of Items objects, required

List that contains single item being sold.

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.

documents:

Array of Documents objects, optional

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

dateModified:

Date, auto-generated, read-only

OpenContracting Description: Date when the auction was last modified

questions:

Array of Question objects, optional

Questions to procuringEntity and answers to them.

bids:

Array of Bid objects, optional (required for the process to be succsessful)

A list of all bids placed in the auction with information about participants, their proposals and other qualification documentation.

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

awards:

Array of Award objects

All qualifications (disqualifications and awards).

awardCriteria:

string, auto-generated, read-only

The given value is highestCost.

contracts:

Array of Contract objects

OpenContracting Description: Information on contracts signed as part of a process.

auctionUrl:

url, auto-generated, read-only

A web address where auction is accessible for view.

status:

string, required

Status Description
draft draft of procedure
active.rectification period when owner can edit procedure
active.tendering tendering period (tendering)
active.enquiry status after tendering
active.auction auction period (auction)
active.qualification winner qualification (qualification)
active.awarded contract signing
unsuccessful unsuccessful auction (unsuccessful)
complete complete auction (complete)
cancelled cancelled auction (cancelled)
rectificationPeriod:
 

Period, auto-generated, read-only

Period when owner can edit the procedure.

enquiryPeriod:

Period, auto-generated, read-only

Period when questions are allowed.

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

tenderPeriod:

Period, auto-generated, read-only

Period when bids can be submitted.

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

auctionPeriod:

Period, auto-generated, read-only (required for auctionPeriod.startDate)

Period when Auction is conducted.

awardPeriod:

Period, auto-generated, read-only

Awarding process period.

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

mode:

string, optional

The additional parameter with a value test.

Auction Parameters

Schema

type:

string, auto-generated, read-only

Type of the auction. Given value: texas

Bank Account

Schema

description:

string, multilingual, optional

  • Ukrainian by default - Ukrainian decription
  • decription_en (English) - English decription
  • decription_ru (Russian) - Russian decription

Additional information that has to be noted from the Organizer point.

bankName:

string, required

Name of the bank.

accountIdentification:
 

Array of Classification, required

Major data on the account details of the state entity selling a lot, to facilitate payments at the end of the process.

Most frequently used are:

  • ‘UA-EDR’;
  • ‘UA-MFO’;
  • ‘accountNumber’.

Contract Terms

Schema

type:

string, required

Type of the contract. The only value is lease.

leaseTerms:

Lease Terms, required

Additional informations about speciality of contract.

Lease Terms

Schema

leaseDuration:

ISO Durations, required

Duration of the lease.

Organization

Schema

name:

string, multilingual, required

Name of the organization.

identifier:

Identifier, required

The primary identifier for this organization.

additionalIdentifiers:
 

Array of Identifier objects, optional

address:

Address, required

contactPoint:

ContactPoint, required

additionalContactPoints:
 

Array of ContactPoint objects, optional

Identifier

Schema

scheme:

string, required

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, optional

OpenContracting Description: The legally registered name of the organization.

Full legal name (e.g. Nadra Bank).

uri:

uri, optional

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, optional

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

locality:

string, optional

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

region:

string, optional

OpenContracting Description: The region. For example, CA.

postalCode:

string, optional

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, optional

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

url:

URL, optional

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

Either email or telephone field has to be provided.

Item

Schema

id:

uuid, auto-generated, read-only

Internal identifier for this item.

description:

string, multilingual, required

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

classification:

Classification, required

OpenContracting Description: The primary classification for the item. See the itemClassificationScheme to identify preferred classification lists.

It is required for classification.scheme to be CPV or CAV-PS. The classification.id should be valid CPV or CAV-PS code.

additionalClassifications:
 

Array of Classification objects, optional (required for kvtspz & cadastralNumber)

An array of additional classifications for the item. Necessarily addition kvtspz & cadastralNumber.

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.

unit:

Unit, required

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.

quantity:

decimal, required

OpenContracting Description: The number of units required.

address:

Address, required

Address, where item is located.

location:

dictionary, optional

Geographical coordinates of the location. Element consists of the following items:

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

location usually takes precedence over address if both are present.

Classification

Schema

scheme:

string, required

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, required

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

description:

string, required

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

uri:

uri, optional

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, optional

OpenContracting Description: Name of the unit

Document

Schema

id:

uuid, auto-generated, read-only

Internal identifier of document.

documentType:

string, optional

Possible values for Auction / Item

  • tenderNotice - Auction notice

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

  • 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.

  • illustration - Illustrations

  • x_PublicAssetCertificate - Public Asset Certificate

    Information about the auction. It is a link to the Public Asset Certificate.

  • x_presentation - Presentation

    Presentation about an asset that is being sold.

  • x_nda - Non-disclosure Agreement (NDA)

    A non-disclosure agreement between a participant and a bank/Deposit Guarantee Fund.

  • x_dgfAssetFamiliarization - Asset Familiarization

    Goods examination procedure rules / Asset familiarization procedure in data room. Contains information on where and when a given document can be examined offline.

  • billOfQuantity - Bill Of Quantity

  • conflictOfInterest - Conflicts of interest uncovered

  • evaluationReports - Evaluation report

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

  • eligibilityCriteria - Eligibility criteria

Detailed documents about the eligibility of bidders.

  • x_qualificationDocuments - Qualification documents

List of documents that confirming the qualification of the participant.

  • cancellationDetails - Details of cancellation

Document containing information on the reasons for cancellation.

  • complaints - Complaints and decisions
  • x_virtualDataRoom - Virtual Data Room
  • x_financialLicense - License

Possible values for Bid

  • commercialProposal - Сommercial proposal

Commercial offers of the auction participants.

  • qualificationDocuments - Qualification documents

Documents confirming the qualification of the participant.

  • eligibilityDocuments - Eligibility documents

Documents confirming the compliance of the participant with the requirements.

Possible values for Award

  • winningBid - Winning Bid

Documentation of the winning bid, including, wherever applicable, a full copy of the proposal received.

  • auctionProtocol - Auction protocol

Auction protocol describes all participants and determines the candidate (participant that has submitted the highest bid proposal during the auction).

  • rejectionProtocol - Rejection Protocol

Documents containing the reasons for termination of work with the participant.

  • act - Act

Documents containing the reasons for termination of work with the participant.

Possible values for Contract

  • contractNotice - Contract notice

The formal notice that gives details of a contract. 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

A copy of the signed contract. Consider providing both machine-readable (e.g. original PDF, Word or Open Document format files), and a separate document entry for scanned-signed pages where this is required.

  • contractAnnexe - Annexes to the Contract

Copies of annexes and other supporting documentation related to the contract.

  • rejectionProtocol - Rejection Protocol

Documents containing the reasons for termination of work with the participant.

  • act - Act

Documents containing the reasons for termination of work with the participant.

title:

string, multilingual, required

  • Ukrainian by default (required) - Ukrainian title
  • title_en (English) - English title
  • title_ru (Russian) - Russian title

Oprionally can be mentioned in English/Russian. OpenContracting Description: The document title.

description:

string, multilingual, optional

  • Ukrainian by default - Ukrainian decription
  • decription_en (English) - English decription
  • decription_ru (Russian) - Russian decription

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.

index:

integer, optional

Sorting (display order) parameter used for illustrations. The smaller number is, the higher illustration is in the sorting. If index is not specified, illustration will be displayed the last. If two illustrations have the same index, they will be sorted depending on their publishing date.

format:

string, optional

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, read-only

OpenContracting Description: Direct link to the document or attachment.

datePublished:

string, Date, auto-generated, read-only

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

dateModified:

string, Date, auto-generated, read-only

OpenContracting Description: Date that the document was last modified

language:

string, optional

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

documentOf:

string, required

Possible values are:

  • auction
  • item
relatedItem:

string, optional

Internal ID of related Item.

accessDetails:

string, optional

Required for x_dgfAssetFamiliarization document.

Bid

Schema

id:

uuid, auto-generated, read-only

Internal identifier of bid.

tenderers:

Array of Organization objects, required

date:

string, Date, auto-generated, read-only

Date when bid has been submitted.

owner:

string, auto-generated, read-only

Broker_id of the platform from which the procedure has been created

value:

Value, required

Validation rules:

  • amount should be less than Auction.value.amout
  • currency should either be absent or match Auction.value.currency
  • valueAddedTaxIncluded should either be absent or match Auction.value.valueAddedTaxIncluded
status:

string, required

Possible values are:

  • draft
  • pending
  • active
  • unsuccessful
documents:

Array of Document, optional

All documents needed.

participationUrl:
 

url, auto-generated, read-only

A web address for participation in auction.

qualified:

bool, required

The field fills owner. Сonfirms that the participant fulfilled all conditions.

bidNumber:

integer, optional

Order number of the bidder.

Award

Schema

id:

string, auto-generated, read-only

OpenContracting Description: Identifier for this award.

bid_id:

string, auto-generated, read-only

The ID of a bid that the award relates to.

status:

string, required

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

Possible values are:

  • pending.verification - the procedure awaits the auction protocol to be uploaded
  • pending.payment - the procedure awaits the payment to be made
  • unsuccessful - the award has been rejected by the qualification committee (bank)
  • active - the auction is awarded to the bidder from the bid_id
  • pending.waiting - the second bidder awaits the first bidder to be disqualified
  • cancelled - the second bidder does not want to wait for the first bidder to be disqualified
verificationPeriod:
 

Period, auto-generated, read-only

The period of uploading (for the auction winner) and verification (for the bank) of the auction protocol

signingPeriod:

Period, auto-generated, read-only

The period for the contract to be activated in the system (by the bank)

date:

string, Date, auto-generated, read-only

OpenContracting Description: The date of the contract award.

value:

Value object, auto-generated, read-only

OpenContracting Description: The total value of this award.

suppliers:

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

OpenContracting Description: The suppliers awarded with this award.

items:

Array 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 should be specified instead.

documents:

Array of Document objects, required

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

Question

Schema

id:

uuid, auto-generated, read-only

Internal identifier of the object within an array.

author:

Organization, optional

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

title:

string, required

Title of the question.

description:

string, optional

Description of the question.

date:

Date, auto-generated, read-only

Date of posting.

answer:

string, optional

Answer for the question.

questionOf:

string, required

Possible values are:

  • tender
  • item
relatedItem:

uuid, optional

Internal ID of related Item.

Contract

Schema

id:

uuid, auto-generated

OpenContracting Description: The identifier for this contract.

awardID:

string, auto-generated, read-only

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

contractID:

string, auto-generated, read-only

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

contractNumber:

string, optional

value:

Value object, auto-generated, read-only

OpenContracting Description: The total value of this contract.

items:

Array 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:

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

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.
dateSigned:

string, Date

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

signingPeriod:

Period, auto-generated, read-only

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

date:

string, Date, auto-generated, read-only

The date when the contract was changed or activated.

documents:

Array of Document objects, required

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

Period

Schema

startDate:

Date

OpenContracting Description: The start date for the period.

endDate:

Date

OpenContracting Description: The end date for the period.

startDate should always precede endDate.

Date

Date/time in ISO 8601.

Value

Schema

amount:

float, required

OpenContracting Description: Amount as a number.

Should be positive.

currency:

string, required

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

valueAddedTaxIncluded:
 

bool, optional

The default value is true.

Guarantee

Schema

amount:

float, required

OpenContracting Description: Amount as a number.

Should be positive.

currency:

string, required

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

Cancellation

Schema

id:

uuid, auto-generated

reason:

string, multilingual, required

The reason, why auction is being cancelled.

status:

string

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

List of Document objects

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

date:

string, Date

Cancellation date.

cancellationOf:

string

Possible values are:

  • auction

ProcuringEntity (Organizer)

Schema

name:

string, multilingual, required

OpenContracting Description: The common name of the organization.

identifier:

Identifier, required

OpenContracting Description: The primary identifier for this organization.

additionalIdentifiers:
 

List of Identifier objects, optional

address:

Address, required

contactPoint:

ContactPoint, required

kind:

string, optional

Type of the organizer.

Possible values:
  • general - Organizer (general)
  • special - Organizer that operates in certain spheres of economic activity
  • other - Legal persons that are not organizers in the sense of the Law, but are state, utility, public enterprises, economic partnerships or associations of enterprises in which state or public utility share is 50 percent or more

Tutorial

create procedure

Let’s create some procedure:

POST /api/2.5/auctions
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "draft",
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "countryName": "Україна",
        "postalCode": "01220",
        "region": "м. Київ",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "lotIdentifier": "219560",
    "minimalStep": {
      "currency": "UAH",
      "amount": 42
    },
    "auctionPeriod": {
      "startDate": "2018-11-20"
    },
    "tenderAttempts": 1,
    "title": "футляри до державних нагород",
    "procurementMethodType": "landlease",
    "value": {
      "currency": "UAH",
      "amount": 100
    },
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "countryName": "Україна",
        "postalCode": "01220",
        "region": "м. Київ",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "locality": "м. Київ"
      }
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "countryName": "Україна",
          "postalCode": "79000",
          "region": "м. Київ",
          "streetAddress": "вул. Банкова 1",
          "locality": "м. Київ"
        },
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    }
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/91e3e7946529494389c69b74ff4bdf56

{
  "access": {
    "transfer": "a1786e07f1604e2daebed660d40955af",
    "token": "7f9a013b46af452ea3528fbd89043be3"
  },
  "data": {
    "procurementMethod": "open",
    "auctionID": "UA-EA-2018-11-06-000001",
    "minNumberOfQualifiedBids": 2,
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "91e3e7946529494389c69b74ff4bdf56",
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "dateModified": "2018-11-06T14:33:24.274844+02:00",
    "status": "draft",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "auctionPeriod": {
      "startDate": "2018-11-20T00:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "date": "2018-11-06T14:33:24.271809+02:00",
    "lotIdentifier": "219560",
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "8c602eba07104554b02a8fe77566e8b9",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    }
  }
}

Success! Now we can see that new object has been 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 auction: its internal id (that matches the Location segment), its official auctionID and dateModified datestamp stating the moment in time when auction has been last modified. Pay attention to the procurementMethodType. Note that auction is created with draft status.

status: draft

get procedure

You can GET the auction as long as it’s been created

GET /api/2.5/auctions/1d5b55103d1f4188822add80bb4dbc99
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "procurementMethod": "open",
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "1d5b55103d1f4188822add80bb4dbc99",
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "dateModified": "2018-11-06T14:33:20.036604+02:00",
    "status": "draft",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "auctionPeriod": {
      "startDate": "2018-11-20T14:33:20.036604+02:00"
    },
    "procurementMethodType": "landlease",
    "date": "2018-11-06T14:33:20.036604+02:00",
    "lotIdentifier": "219560",
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    }
  }
}

two-phase commit

For the procedure to be activated you should apply a two-phase commit (manually switch procedure to active.rectification status)

PATCH /api/2.5/auctions/1d5b55103d1f4188822add80bb4dbc99?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "active.rectification"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "enquiryPeriod": {
      "startDate": "2018-11-06T14:33:25.920043+02:00",
      "endDate": "2018-11-19T20:00:00+02:00"
    },
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "1d5b55103d1f4188822add80bb4dbc99",
    "tenderPeriod": {
      "startDate": "2018-11-08T14:33:25.920043+02:00",
      "endDate": "2018-11-14T20:00:00+02:00"
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "dateModified": "2018-11-06T14:33:25.923179+02:00",
    "status": "active.rectification",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "auctionPeriod": {
      "shouldStartAfter": "2018-11-20T00:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "date": "2018-11-06T14:33:25.923179+02:00",
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35,
      "valueAddedTaxIncluded": true
    },
    "lotIdentifier": "219560",
    "rectificationPeriod": {
      "startDate": "2018-11-06T14:33:25.920043+02:00",
      "endDate": "2018-11-08T14:33:25.920043+02:00"
    },
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "procurementMethod": "open",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "awardCriteria": "highestCost"
  }
}

We can see what new fields were generated in auction:

rectificationPeriod
it lasts for 2 days. During this period, you can change some fields
tenderPeriod
this period ends at 8:00 pm 3 business days before the auction starts. During this period, it is allowed to add documents, work with bids & questions
enquiryPeriod
this period ends at 8:00 pm the days before the auction starts During this period, it is allowed to add documents, work with bids & questions

status: active.rectification

auctions

change fields

After the procedure is activated, it receives active.rectification status. During this term you can edit the next data:

  • title
  • description
  • tenderAttempts
  • lotIdentifier
  • value
  • minimalStep
  • guarantee
  • items
  • budgetSpent
  • registrationFee
  • procuringEntity
  • lotHolder
  • bankAccount
  • contractTerms

Example:

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "title": "Test"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "enquiryPeriod": {
      "startDate": "2018-11-06T14:33:20.039212+02:00",
      "endDate": "2018-11-19T20:00:00+02:00"
    },
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "ef8ee87d4c8e4fe0950dfad142792817",
    "tenderPeriod": {
      "startDate": "2018-11-08T14:33:20.039212+02:00",
      "endDate": "2018-11-16T20:00:00+02:00"
    },
    "title": "Test",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "dateModified": "2018-11-06T14:33:27.547334+02:00",
    "status": "active.rectification",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "auctionPeriod": {
      "startDate": "2018-11-20T14:33:20.039212+02:00",
      "shouldStartAfter": "2018-11-20T00:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "date": "2018-11-04T14:33:20.039212+02:00",
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35,
      "valueAddedTaxIncluded": true
    },
    "lotIdentifier": "219560",
    "rectificationPeriod": {
      "startDate": "2018-11-06T14:33:20.039212+02:00",
      "endDate": "2018-11-08T14:33:20.039212+02:00"
    },
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "procurementMethod": "open",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "awardCriteria": "highestCost"
  }
}

auctions documents

add document

Example:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/documents?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "url": "http://localhost/get/d57821532e9b46d295696014178892b0?KeyID=172d32c8&Signature=rBcgRg5%2Frnun80dPpfe2MAQn6B5oq9FN4YNz7qmuTqEeorsCb5nf4K8kfA34xYxzD9cF4LsIMSE4PLlIqCBBCQ%3D%3D",
    "format": "application/msword",
    "hash": "md5:00000000000000000000000000000000",
    "title": "укр.doc"
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/documents/ddfc8a3006804aec82fe711b0f0a1021

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "title": "укр.doc",
    "url": "http://localhost/get/d57821532e9b46d295696014178892b0?KeyID=172d32c8&Signature=0st1L6VAfrJIzTPvBpSr2tCR4Zqfc0Kpuyc79Ld3LBKg4A3MLeTBOh%2FoKSgwIdlup8HGR1eUFCyXXh9GYhOcBg%253D%253D",
    "format": "application/msword",
    "documentOf": "auction",
    "datePublished": "2018-11-06T14:33:26.727372+02:00",
    "dateModified": "2018-11-06T14:33:26.727434+02:00",
    "id": "ddfc8a3006804aec82fe711b0f0a1021"
  }
}

status: active.tendering

In active.tendering we can:

work with questions

ask question

Bidders can ask questions within the enquiryPeriod:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/questions
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "author": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "countryName": "Україна",
        "postalCode": "01220",
        "region": "м. Київ",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "locality": "м. Київ"
      }
    },
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність"
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/questions/b1cc28d0329748a094464826069a7698

{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "author": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "title": "Калорійність",
    "date": "2018-11-06T14:33:30.195431+02:00",
    "id": "b1cc28d0329748a094464826069a7698",
    "questionOf": "tender"
  }
}
answer question

The Organizer can provide the answer:

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/questions/7c9385ceafc140c788115b218251bd5e?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "answer": "Test answer"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "description": "Просимо додати таблицю потрібної калорійності харчування",
    "title": "Калорійність",
    "date": "2018-11-06T15:15:20.046860+02:00",
    "answer": "Test answer",
    "id": "7c9385ceafc140c788115b218251bd5e",
    "questionOf": "tender"
  }
}

We can see the answer field appeared

work with bids

add bid

In active.tendering status, we can add bids:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "draft",
    "qualified": true,
    "value": {
      "currency": "UAH",
      "amount": 100
    },
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "countryName": "Україна",
          "postalCode": "01220",
          "region": "м. Київ",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "locality": "м. Київ"
        }
      }
    ]
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/2d9045ffe37f4c2b8a09db0bfbb0d281

{
  "access": {
    "token": "0b1527eaf3ca4c80a3124bcfee62a090"
  },
  "data": {
    "owner": "broker",
    "status": "draft",
    "id": "2d9045ffe37f4c2b8a09db0bfbb0d281",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ]
  }
}
get bid

You can also GET the created bid:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "status": "pending",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": false,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "592ed4dc43ae49b787a24c6ee1eb3c01"
  }
}
activate

The bid is created in draft status. Use pending status for its activation:

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/146bf425b2bb4fbe9e96fbbd4ab6aa11?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "pending"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "status": "pending",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2018-11-06T14:33:28.689238+02:00",
    "qualified": false,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "146bf425b2bb4fbe9e96fbbd4ab6aa11"
  }
}

We can see that the following fields have been generated:

  • date
  • id
  • owner
  • qualified: false
make active status

As long as a pre-qualification process has been performed out of the system, bid owner should add the next data

  • attach document with documentType: eligibilityDocuments
  • patch bid, set qualified: true
  • patch bid, set bidNumber - integer
  • patch bid, set status - active

The last 3 actions can be performed either using separate PATCHs, or applying the one

Let’s complete bid activation

Attach document with documentType: eligibilityDocuments:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01/documents?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "url": "http://localhost/get/6bd4cfd5be94484dbb794dd4ea390a64?KeyID=172d32c8&Signature=oIRhqQQyVTG1LRYmMOSMO6PDBHlzJoQbq4n%2FKjIyy5vDswGw6XxmV%2BNZ4odczBQ5VEqBbJ3OVRFnFarprCaPCg%3D%3D",
    "format": "application/msword",
    "title": "укр.doc",
    "hash": "md5:00000000000000000000000000000000",
    "documentType": "eligibilityDocuments"
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01/documents/405d176d7ae94b7fa7f4b7ae872f59fb

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "title": "укр.doc",
    "url": "http://localhost/api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01/documents/405d176d7ae94b7fa7f4b7ae872f59fb?download=6bd4cfd5be94484dbb794dd4ea390a64",
    "format": "application/msword",
    "documentOf": "bid",
    "datePublished": "2018-11-06T14:33:29.461768+02:00",
    "documentType": "eligibilityDocuments",
    "dateModified": "2018-11-06T14:33:29.461822+02:00",
    "id": "405d176d7ae94b7fa7f4b7ae872f59fb"
  }
}

Patch with required data for a complete bid activation:

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "active",
    "qualified": true,
    "bidNumber": 1
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "title": "укр.doc",
        "url": "http://localhost/api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01/documents/405d176d7ae94b7fa7f4b7ae872f59fb?download=6bd4cfd5be94484dbb794dd4ea390a64",
        "format": "application/msword",
        "documentOf": "bid",
        "datePublished": "2018-11-06T14:33:29.461768+02:00",
        "documentType": "eligibilityDocuments",
        "dateModified": "2018-11-06T14:33:29.461822+02:00",
        "id": "405d176d7ae94b7fa7f4b7ae872f59fb"
      }
    ],
    "bidNumber": 1,
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": true,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "592ed4dc43ae49b787a24c6ee1eb3c01"
  }
}

Now we can see completely activated bid:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "title": "укр.doc",
        "url": "http://localhost/api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01/documents/405d176d7ae94b7fa7f4b7ae872f59fb?download=6bd4cfd5be94484dbb794dd4ea390a64",
        "format": "application/msword",
        "documentOf": "bid",
        "datePublished": "2018-11-06T14:33:29.461768+02:00",
        "documentType": "eligibilityDocuments",
        "dateModified": "2018-11-06T14:33:29.461822+02:00",
        "id": "405d176d7ae94b7fa7f4b7ae872f59fb"
      }
    ],
    "bidNumber": 1,
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": true,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "592ed4dc43ae49b787a24c6ee1eb3c01"
  }
}

We can delete bid:

DELETE /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/592ed4dc43ae49b787a24c6ee1eb3c01?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==
Content-Type: application/json


200 OK
Content-Type: application/json

{
  "data": {
    "status": "pending",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": false,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "592ed4dc43ae49b787a24c6ee1eb3c01"
  }
}

status: active.enquiry

In active.enquiry we can:

status: active.auction

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

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817
Authorization: Basic YXVjdGlvbjo=


200 OK
Content-Type: application/json

{
  "data": {
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "auctionUrl": "http://auction-sandbox.openprocurement.org/auctions/ef8ee87d4c8e4fe0950dfad142792817",
    "enquiryPeriod": {
      "startDate": "2018-10-19T14:33:20.066118+02:00",
      "endDate": "2018-11-05T20:00:00+02:00"
    },
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "ef8ee87d4c8e4fe0950dfad142792817",
    "tenderPeriod": {
      "startDate": "2018-10-21T14:33:20.066118+02:00",
      "endDate": "2018-11-02T20:00:00+02:00"
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "dateModified": "2018-11-06T14:33:20.039212+02:00",
    "status": "active.auction",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "auctionPeriod": {
      "startDate": "2018-11-06T14:33:20.066118+02:00",
      "shouldStartAfter": "2018-11-06T00:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "date": "2018-10-17T14:33:20.066118+02:00",
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35,
      "valueAddedTaxIncluded": true
    },
    "lotIdentifier": "219560",
    "rectificationPeriod": {
      "startDate": "2018-10-19T14:33:20.066118+02:00",
      "endDate": "2018-10-23T14:33:20.066118+02:00"
    },
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "procurementMethod": "open",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "awardCriteria": "highestCost"
  }
}

We can see what auctionUrl were generated in procedure

And bidders can find out their participation URLs via their bids:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/bids/8ef6c80be5f440329695167c7b81499b?acc_token=8fcf9c79ba8342b9b8a9a256489346f5
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "title": "укр.doc",
        "url": "http://localhost/get/dd2c4773c24148bcafb37c15e48b788d?KeyID=172d32c8&Signature=SXQigJFdovYi%2F9VhVcZvgq%252BuPPwe37qsEfHgszqwAhC8fN6gH4ZQvJNagEAwHujmd%252BXDhDYXFWsiHW8v6fwrAg%253D%253D",
        "format": "application/msword",
        "documentOf": "bid",
        "datePublished": "2018-11-06T14:33:20.036272+02:00",
        "documentType": "eligibilityDocuments",
        "dateModified": "2018-11-06T14:33:20.036272+02:00",
        "id": "beff27f2339342b78124ac5db1ba8519"
      }
    ],
    "bidNumber": 1,
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "qualified": true,
    "tenderers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "owner": "broker",
    "id": "8ef6c80be5f440329695167c7b81499b",
    "participationUrl": "http://auction-sandbox.openprocurement.org/auctions/ef8ee87d4c8e4fe0950dfad142792817?key_for_bid=8ef6c80be5f440329695167c7b81499b"
  }
}

We can see what participationUrl were generated in bid

status: active.qualification

Auction owner can upload auction protocol:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/awards/18271aa9e8d943538583f22b6eb4ef1c/documents?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "url": "http://localhost/get/3e4f69010f65475e9f3612979398c50e?KeyID=172d32c8&Signature=5WLyw47v7De%2BHaAoNFRt6uOondqJFbBVa1%2B7nvevaCsInipVELISysASIavpTpiNujdtJ%2F9pFcMPbqw%2FFSMyAQ%3D%3D",
    "format": "application/msword",
    "title": "укр.doc",
    "hash": "md5:00000000000000000000000000000000",
    "documentType": "auctionProtocol"
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/awards/18271aa9e8d943538583f22b6eb4ef1c/documents/4ab1e24d951448088d3f8e9b80b55aca

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "auction_owner",
    "title": "укр.doc",
    "url": "http://localhost/get/3e4f69010f65475e9f3612979398c50e?KeyID=172d32c8&Signature=ksnYFPTmhN2pUFpwZ%252BLrh4TVsVLJ3FTRu9RYDAdXJP9T%252BEVnesA5ysJVf9ca90Gm%2FMr9Y2TVcrlrw8%2F3zM3sCQ%253D%253D",
    "format": "application/msword",
    "documentOf": "auction",
    "datePublished": "2018-11-06T14:33:22.707313+02:00",
    "documentType": "auctionProtocol",
    "dateModified": "2018-11-06T14:33:22.707357+02:00",
    "id": "4ab1e24d951448088d3f8e9b80b55aca"
  }
}

Bidder owner can upload auction protocol:

POST /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/awards/18271aa9e8d943538583f22b6eb4ef1c/documents?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "url": "http://localhost/get/dd787430745540f48a51eba965ae7a31?KeyID=172d32c8&Signature=XvNBXgMbq1Y1aFnYZeOOcLltRg%2FfgTazCfHpDBplzRLqF9%2BPA0bGt38EdJwYlUSsLqad4EWvauL5a%2Fzk%2Bm9CAA%3D%3D",
    "format": "application/msword",
    "title": "укр.doc",
    "hash": "md5:00000000000000000000000000000000",
    "documentType": "auctionProtocol"
  }
}


201 Created
Content-Type: application/json
Location: /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/awards/18271aa9e8d943538583f22b6eb4ef1c/documents/dc61f10c7d7b44b3adad406138e1b334

{
  "data": {
    "hash": "md5:00000000000000000000000000000000",
    "author": "auction_owner",
    "title": "укр.doc",
    "url": "http://localhost/get/dd787430745540f48a51eba965ae7a31?KeyID=172d32c8&Signature=BvQnToPoxVuNfHibniCdrmUEMVKy5v48JMDFJ%2FXTMLZWeeoRgk5I89e6rzpjfG8NJVhM1thzgFjkHYKZUVdZAg%253D%253D",
    "format": "application/msword",
    "documentOf": "auction",
    "datePublished": "2018-11-06T14:33:22.237613+02:00",
    "documentType": "auctionProtocol",
    "dateModified": "2018-11-06T14:33:22.237639+02:00",
    "id": "dc61f10c7d7b44b3adad406138e1b334"
  }
}

Auction owner can activate award:

Award after its activation:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/awards/18271aa9e8d943538583f22b6eb4ef1c
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "auction_owner",
        "title": "укр.doc",
        "url": "http://localhost/get/525adddf3d414dc49e4d75a574e6108c?KeyID=172d32c8&Signature=DIbVBCNX98G7n766bL5tVECaBMhXJc1ZSvU4KsZv2FhfU9jUdrvQTz089GKy6e9IOcisW6%252B4BzIq2r%252Bc5TLLBQ%253D%253D",
        "format": "application/msword",
        "documentOf": "auction",
        "datePublished": "2018-11-06T14:33:22.359533+02:00",
        "documentType": "auctionProtocol",
        "dateModified": "2018-11-06T14:33:22.359565+02:00",
        "id": "6d739ff7bccf45ae81968c20adc22189"
      }
    ],
    "verificationPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-06T14:33:22.433777+02:00"
    },
    "signingPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-05T23:59:00+02:00"
    },
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "complaintPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-06T14:33:22.433777+02:00"
    },
    "bid_id": "8ef6c80be5f440329695167c7b81499b",
    "value": {
      "currency": "UAH",
      "amount": 200.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2018-11-06T14:33:22.443527+02:00",
    "id": "18271aa9e8d943538583f22b6eb4ef1c"
  }
}

Contract after award activation:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/contracts
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": [
    {
      "status": "pending",
      "signingPeriod": {
        "startDate": "2018-11-05T16:00:00+02:00",
        "endDate": "2018-11-05T23:59:00+02:00"
      },
      "items": [
        {
          "description": "Земля для військовослужбовців",
          "classification": {
            "scheme": "CAV-PS",
            "id": "06110000-6",
            "description": "Земельні ділянки"
          },
          "additionalClassifications": [
            {
              "scheme": "kvtspz",
              "id": "01.04",
              "description": "Test"
            },
            {
              "scheme": "cadastralNumber",
              "id": "42",
              "description": "Test"
            }
          ],
          "address": {
            "postalCode": "79000",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          },
          "id": "3e1b5bec9f3846eea93e02c70c95d693",
          "unit": {
            "code": "44617100-9",
            "name": "item"
          },
          "quantity": 5.0001
        }
      ],
      "suppliers": [
        {
          "contactPoint": {
            "name": "Державне управління справами",
            "telephone": "0440000000"
          },
          "identifier": {
            "scheme": "UA-EDR",
            "id": "00037256",
            "uri": "http://www.dus.gov.ua/"
          },
          "name": "Державне управління справами",
          "address": {
            "postalCode": "01220",
            "countryName": "Україна",
            "streetAddress": "вул. Банкова, 11, корпус 1",
            "region": "м. Київ",
            "locality": "м. Київ"
          }
        }
      ],
      "value": {
        "currency": "UAH",
        "amount": 200.0,
        "valueAddedTaxIncluded": true
      },
      "date": "2018-11-06T14:33:22.438163+02:00",
      "awardID": "18271aa9e8d943538583f22b6eb4ef1c",
      "id": "67b67c6785234e29a12cefa9a7570d9c",
      "contractID": "UA-EA-2018-09-20-000001-1"
    }
  ]
}

Auction after award activation:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "awardPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-06T14:33:22.433777+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2018-10-17T16:00:00+02:00",
      "endDate": "2018-11-03T20:00:00+02:00"
    },
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "ef8ee87d4c8e4fe0950dfad142792817",
    "tenderPeriod": {
      "startDate": "2018-10-21T16:00:00+02:00",
      "endDate": "2018-11-01T16:00:00+02:00"
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "dateModified": "2018-11-06T14:33:20.039212+02:00",
    "status": "active.awarded",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "contracts": [
      {
        "status": "pending",
        "signingPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T23:59:00+02:00"
        },
        "items": [
          {
            "description": "Земля для військовослужбовців",
            "classification": {
              "scheme": "CAV-PS",
              "id": "06110000-6",
              "description": "Земельні ділянки"
            },
            "additionalClassifications": [
              {
                "scheme": "kvtspz",
                "id": "01.04",
                "description": "Test"
              },
              {
                "scheme": "cadastralNumber",
                "id": "42",
                "description": "Test"
              }
            ],
            "address": {
              "postalCode": "79000",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            },
            "id": "3e1b5bec9f3846eea93e02c70c95d693",
            "unit": {
              "code": "44617100-9",
              "name": "item"
            },
            "quantity": 5.0001
          }
        ],
        "suppliers": [
          {
            "contactPoint": {
              "name": "Державне управління справами",
              "telephone": "0440000000"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00037256",
              "uri": "http://www.dus.gov.ua/"
            },
            "name": "Державне управління справами",
            "address": {
              "postalCode": "01220",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова, 11, корпус 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            }
          }
        ],
        "value": {
          "currency": "UAH",
          "amount": 200.0,
          "valueAddedTaxIncluded": true
        },
        "date": "2018-11-06T14:33:22.438163+02:00",
        "awardID": "18271aa9e8d943538583f22b6eb4ef1c",
        "id": "67b67c6785234e29a12cefa9a7570d9c",
        "contractID": "UA-EA-2018-09-20-000001-1"
      }
    ],
    "auctionPeriod": {
      "startDate": "2018-11-05T10:00:00+02:00",
      "endDate": "2018-11-05T16:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "awards": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "author": "auction_owner",
            "title": "укр.doc",
            "url": "http://localhost/get/525adddf3d414dc49e4d75a574e6108c?KeyID=172d32c8&Signature=DIbVBCNX98G7n766bL5tVECaBMhXJc1ZSvU4KsZv2FhfU9jUdrvQTz089GKy6e9IOcisW6%252B4BzIq2r%252Bc5TLLBQ%253D%253D",
            "format": "application/msword",
            "documentOf": "auction",
            "datePublished": "2018-11-06T14:33:22.359533+02:00",
            "documentType": "auctionProtocol",
            "dateModified": "2018-11-06T14:33:22.359565+02:00",
            "id": "6d739ff7bccf45ae81968c20adc22189"
          }
        ],
        "verificationPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-06T14:33:22.433777+02:00"
        },
        "signingPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T23:59:00+02:00"
        },
        "suppliers": [
          {
            "contactPoint": {
              "name": "Державне управління справами",
              "telephone": "0440000000"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00037256",
              "uri": "http://www.dus.gov.ua/"
            },
            "name": "Державне управління справами",
            "address": {
              "postalCode": "01220",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова, 11, корпус 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            }
          }
        ],
        "complaintPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-06T14:33:22.433777+02:00"
        },
        "bid_id": "8ef6c80be5f440329695167c7b81499b",
        "value": {
          "currency": "UAH",
          "amount": 200.0,
          "valueAddedTaxIncluded": true
        },
        "date": "2018-11-06T14:33:22.443527+02:00",
        "id": "18271aa9e8d943538583f22b6eb4ef1c"
      }
    ],
    "date": "2018-11-06T14:33:22.443527+02:00",
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35,
      "valueAddedTaxIncluded": true
    },
    "lotIdentifier": "219560",
    "rectificationPeriod": {
      "startDate": "2018-10-17T16:00:00+02:00",
      "endDate": "2018-10-21T16:00:00+02:00"
    },
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "procurementMethod": "open",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "numberOfBids": 1,
    "awardCriteria": "highestCost"
  }
}

status: active.awarded

Auction owner have to patch contract with dateSigned to activate contract:

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/contracts/b86ec3fd2be144eabf04076471e99131?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "dateSigned": "2018-11-06T14:33:23.435376+02:00"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "status": "pending",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "auction_owner",
        "title": "Auction Contract",
        "url": "http://localhost/get/ec59520826574794a52ab4e1e2768d4f?KeyID=172d32c8&Signature=YNMV1qHNv2Jys3OhHPlrX44eio8qLm5nW7AOuasefwQiV03CKhIeoIesXmxub7jF1PT8oQGMFtr%252ByocDj%2FrKCg%253D%253D",
        "format": "application/msword",
        "documentOf": "auction",
        "datePublished": "2018-11-06T14:33:20.036272+02:00",
        "documentType": "contractSigned",
        "dateModified": "2018-11-06T14:33:20.036272+02:00",
        "id": "0065439c0b84448f83f9c2ae8c7d598d"
      }
    ],
    "signingPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-05T23:59:00+02:00"
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "dateSigned": "2018-11-06T14:33:23.435376+02:00",
    "value": {
      "currency": "UAH",
      "amount": 200.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2018-11-05T16:00:00+02:00",
    "awardID": "8f124f792d19402aae70b68bf0f37e05",
    "id": "b86ec3fd2be144eabf04076471e99131",
    "contractID": "UA-EA-2018-09-20-000001-1"
  }
}

Auction owner can activate contract, after patching contract with dateSigned :

PATCH /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/contracts/b86ec3fd2be144eabf04076471e99131?acc_token=2bf83e2d5c58424e83e48d3e6e3ed6b3
Authorization: Basic YnJva2VyOg==
Content-Type: application/json

{
  "data": {
    "status": "active"
  }
}


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "auction_owner",
        "title": "Auction Contract",
        "url": "http://localhost/get/ec59520826574794a52ab4e1e2768d4f?KeyID=172d32c8&Signature=YNMV1qHNv2Jys3OhHPlrX44eio8qLm5nW7AOuasefwQiV03CKhIeoIesXmxub7jF1PT8oQGMFtr%252ByocDj%2FrKCg%253D%253D",
        "format": "application/msword",
        "documentOf": "auction",
        "datePublished": "2018-11-06T14:33:20.036272+02:00",
        "documentType": "contractSigned",
        "dateModified": "2018-11-06T14:33:20.036272+02:00",
        "id": "0065439c0b84448f83f9c2ae8c7d598d"
      }
    ],
    "signingPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-05T23:59:00+02:00"
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "dateSigned": "2018-11-06T14:33:23.435376+02:00",
    "value": {
      "currency": "UAH",
      "amount": 200.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2018-11-06T14:33:23.647386+02:00",
    "awardID": "8f124f792d19402aae70b68bf0f37e05",
    "id": "b86ec3fd2be144eabf04076471e99131",
    "contractID": "UA-EA-2018-09-20-000001-1"
  }
}

Contract after its activation:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817/contracts/b86ec3fd2be144eabf04076471e99131
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "status": "active",
    "documents": [
      {
        "hash": "md5:00000000000000000000000000000000",
        "author": "auction_owner",
        "title": "Auction Contract",
        "url": "http://localhost/get/ec59520826574794a52ab4e1e2768d4f?KeyID=172d32c8&Signature=YNMV1qHNv2Jys3OhHPlrX44eio8qLm5nW7AOuasefwQiV03CKhIeoIesXmxub7jF1PT8oQGMFtr%252ByocDj%2FrKCg%253D%253D",
        "format": "application/msword",
        "documentOf": "auction",
        "datePublished": "2018-11-06T14:33:20.036272+02:00",
        "documentType": "contractSigned",
        "dateModified": "2018-11-06T14:33:20.036272+02:00",
        "id": "0065439c0b84448f83f9c2ae8c7d598d"
      }
    ],
    "signingPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-05T23:59:00+02:00"
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "suppliers": [
      {
        "contactPoint": {
          "name": "Державне управління справами",
          "telephone": "0440000000"
        },
        "identifier": {
          "scheme": "UA-EDR",
          "id": "00037256",
          "uri": "http://www.dus.gov.ua/"
        },
        "name": "Державне управління справами",
        "address": {
          "postalCode": "01220",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова, 11, корпус 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        }
      }
    ],
    "dateSigned": "2018-11-06T14:33:23.435376+02:00",
    "value": {
      "currency": "UAH",
      "amount": 200.0,
      "valueAddedTaxIncluded": true
    },
    "date": "2018-11-06T14:33:23.647386+02:00",
    "awardID": "8f124f792d19402aae70b68bf0f37e05",
    "id": "b86ec3fd2be144eabf04076471e99131",
    "contractID": "UA-EA-2018-09-20-000001-1"
  }
}

Auction after award activation:

GET /api/2.5/auctions/ef8ee87d4c8e4fe0950dfad142792817
Authorization: Basic YnJva2VyOg==


200 OK
Content-Type: application/json

{
  "data": {
    "bankAccount": {
      "description": "Test Bank Account",
      "accountIdentification": [
        {
          "scheme": "UA-EDR",
          "id": "66113000-5",
          "description": "Test"
        }
      ],
      "bankName": "Test bank name"
    },
    "auctionID": "UA-EA-2018-09-20-000001",
    "minNumberOfQualifiedBids": 2,
    "awardPeriod": {
      "startDate": "2018-11-05T16:00:00+02:00",
      "endDate": "2018-11-05T17:00:00+02:00"
    },
    "enquiryPeriod": {
      "startDate": "2018-10-17T17:00:00+02:00",
      "endDate": "2018-11-03T20:00:00+02:00"
    },
    "registrationFee": {
      "currency": "UAH",
      "amount": 700.87
    },
    "submissionMethod": "electronicAuction",
    "procuringEntity": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "owner": "broker",
    "id": "ef8ee87d4c8e4fe0950dfad142792817",
    "tenderPeriod": {
      "startDate": "2018-10-21T17:00:00+02:00",
      "endDate": "2018-11-01T17:00:00+02:00"
    },
    "title": "футляри до державних нагород",
    "tenderAttempts": 1,
    "auctionParameters": {
      "type": "texas"
    },
    "guarantee": {
      "currency": "UAH",
      "amount": 35
    },
    "dateModified": "2018-11-06T14:33:20.039212+02:00",
    "status": "complete",
    "lotHolder": {
      "contactPoint": {
        "name": "Державне управління справами",
        "telephone": "0440000000"
      },
      "identifier": {
        "scheme": "UA-EDR",
        "id": "00037256",
        "uri": "http://www.dus.gov.ua/"
      },
      "name": "Державне управління справами",
      "address": {
        "postalCode": "01220",
        "countryName": "Україна",
        "streetAddress": "вул. Банкова, 11, корпус 1",
        "region": "м. Київ",
        "locality": "м. Київ"
      }
    },
    "description": "test procuredure",
    "contracts": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "author": "auction_owner",
            "title": "Auction Contract",
            "url": "http://localhost/get/ec59520826574794a52ab4e1e2768d4f?KeyID=172d32c8&Signature=YNMV1qHNv2Jys3OhHPlrX44eio8qLm5nW7AOuasefwQiV03CKhIeoIesXmxub7jF1PT8oQGMFtr%252ByocDj%2FrKCg%253D%253D",
            "format": "application/msword",
            "documentOf": "auction",
            "datePublished": "2018-11-06T14:33:20.036272+02:00",
            "documentType": "contractSigned",
            "dateModified": "2018-11-06T14:33:20.036272+02:00",
            "id": "0065439c0b84448f83f9c2ae8c7d598d"
          }
        ],
        "signingPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T23:59:00+02:00"
        },
        "items": [
          {
            "description": "Земля для військовослужбовців",
            "classification": {
              "scheme": "CAV-PS",
              "id": "06110000-6",
              "description": "Земельні ділянки"
            },
            "additionalClassifications": [
              {
                "scheme": "kvtspz",
                "id": "01.04",
                "description": "Test"
              },
              {
                "scheme": "cadastralNumber",
                "id": "42",
                "description": "Test"
              }
            ],
            "address": {
              "postalCode": "79000",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            },
            "id": "3e1b5bec9f3846eea93e02c70c95d693",
            "unit": {
              "code": "44617100-9",
              "name": "item"
            },
            "quantity": 5.0001
          }
        ],
        "suppliers": [
          {
            "contactPoint": {
              "name": "Державне управління справами",
              "telephone": "0440000000"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00037256",
              "uri": "http://www.dus.gov.ua/"
            },
            "name": "Державне управління справами",
            "address": {
              "postalCode": "01220",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова, 11, корпус 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            }
          }
        ],
        "dateSigned": "2018-11-06T14:33:23.435376+02:00",
        "value": {
          "currency": "UAH",
          "amount": 200.0,
          "valueAddedTaxIncluded": true
        },
        "date": "2018-11-06T14:33:23.647386+02:00",
        "awardID": "8f124f792d19402aae70b68bf0f37e05",
        "id": "b86ec3fd2be144eabf04076471e99131",
        "contractID": "UA-EA-2018-09-20-000001-1"
      }
    ],
    "auctionPeriod": {
      "startDate": "2018-11-05T10:00:00+02:00",
      "endDate": "2018-11-05T16:00:00+02:00"
    },
    "procurementMethodType": "landlease",
    "awards": [
      {
        "status": "pending",
        "verificationPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T17:00:00+02:00"
        },
        "signingPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T23:59:00+02:00"
        },
        "suppliers": [
          {
            "contactPoint": {
              "name": "Державне управління справами",
              "telephone": "0440000000"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00037256",
              "uri": "http://www.dus.gov.ua/"
            },
            "name": "Державне управління справами",
            "address": {
              "postalCode": "01220",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова, 11, корпус 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            }
          }
        ],
        "complaintPeriod": {
          "startDate": "2018-11-05T16:00:00+02:00",
          "endDate": "2018-11-05T17:00:00+02:00"
        },
        "bid_id": "8ef6c80be5f440329695167c7b81499b",
        "value": {
          "currency": "UAH",
          "amount": 200.0,
          "valueAddedTaxIncluded": true
        },
        "date": "2018-11-05T16:00:00+02:00",
        "id": "8f124f792d19402aae70b68bf0f37e05"
      }
    ],
    "date": "2018-11-06T14:33:23.647386+02:00",
    "budgetSpent": {
      "currency": "UAH",
      "amount": 35,
      "valueAddedTaxIncluded": true
    },
    "lotIdentifier": "219560",
    "rectificationPeriod": {
      "startDate": "2018-10-17T17:00:00+02:00",
      "endDate": "2018-10-21T17:00:00+02:00"
    },
    "contractTerms": {
      "type": "lease",
      "leaseTerms": {
        "leaseDuration": "P10Y"
      }
    },
    "minimalStep": {
      "currency": "UAH",
      "amount": 42,
      "valueAddedTaxIncluded": true
    },
    "items": [
      {
        "description": "Земля для військовослужбовців",
        "classification": {
          "scheme": "CAV-PS",
          "id": "06110000-6",
          "description": "Земельні ділянки"
        },
        "additionalClassifications": [
          {
            "scheme": "kvtspz",
            "id": "01.04",
            "description": "Test"
          },
          {
            "scheme": "cadastralNumber",
            "id": "42",
            "description": "Test"
          }
        ],
        "address": {
          "postalCode": "79000",
          "countryName": "Україна",
          "streetAddress": "вул. Банкова 1",
          "region": "м. Київ",
          "locality": "м. Київ"
        },
        "id": "3e1b5bec9f3846eea93e02c70c95d693",
        "unit": {
          "code": "44617100-9",
          "name": "item"
        },
        "quantity": 5.0001
      }
    ],
    "bids": [
      {
        "status": "active",
        "documents": [
          {
            "hash": "md5:00000000000000000000000000000000",
            "title": "укр.doc",
            "url": "http://localhost/api/2.5/auctions/d1bc378e15ae4e319a9154001a7c703b/bids/1775e5e75f924a879545379d4dc7b642/documents/ae4b1e94961742e4bacd4c695ecad43f?download=dd2c4773c24148bcafb37c15e48b788d",
            "format": "application/msword",
            "documentOf": "bid",
            "datePublished": "2018-11-06T14:33:20.036272+02:00",
            "documentType": "eligibilityDocuments",
            "dateModified": "2018-11-06T14:33:20.036272+02:00",
            "id": "beff27f2339342b78124ac5db1ba8519"
          }
        ],
        "bidNumber": 1,
        "value": {
          "currency": "UAH",
          "amount": 100.0,
          "valueAddedTaxIncluded": true
        },
        "qualified": true,
        "owner_token": "8fcf9c79ba8342b9b8a9a256489346f5",
        "tenderers": [
          {
            "contactPoint": {
              "name": "Державне управління справами",
              "telephone": "0440000000"
            },
            "identifier": {
              "scheme": "UA-EDR",
              "id": "00037256",
              "uri": "http://www.dus.gov.ua/"
            },
            "name": "Державне управління справами",
            "address": {
              "postalCode": "01220",
              "countryName": "Україна",
              "streetAddress": "вул. Банкова, 11, корпус 1",
              "region": "м. Київ",
              "locality": "м. Київ"
            }
          }
        ],
        "owner": "broker",
        "id": "8ef6c80be5f440329695167c7b81499b"
      }
    ],
    "procurementMethod": "open",
    "value": {
      "currency": "UAH",
      "amount": 100.0,
      "valueAddedTaxIncluded": true
    },
    "numberOfBids": 1,
    "awardCriteria": "highestCost"
  }
}