https://github.com/openprocurement/ocds_auction_extension
https://github.com/openprocurement/ocds_auction_extension
ocds ocds-community-extension ocds-extension
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/openprocurement/ocds_auction_extension
- Owner: openprocurement
- License: apache-2.0
- Created: 2019-01-21T12:45:36.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-27T11:38:47.000Z (over 7 years ago)
- Last Synced: 2025-02-23T03:42:39.146Z (over 1 year ago)
- Topics: ocds, ocds-community-extension, ocds-extension
- Size: 11.7 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Auction
Auction extension which shows all auction properties of lots and tender
## Overview
Auction can be represented using an array of auction blocks in the
auctions field of the tender and a web address for participation in auction in
bid of an OCDS release.
The web address for view auction can be represented as string using the
auctions/url field.
The period when auction is conducted should be provided using the
auctions/period field. The value of it must be Period object.
The minimal step for this auction should be represented as
value of auctions/minimalStep field. The value of it must be
Value object.
A web address for participation in auction can be provided as string using
the participationUrl field in bid.
## Examples
The example below shows a auction in tender and a auction link in bid.
```
{
"tender": {
"auctions": [
{
"url": "https://auction.openprocurement.org/tenders/001b2c1c3c4f42b4a17b2c565fb86a2f_a361be2dfd9df53ab70764e4caab6a47",
"period": {
"startDate": "2018-01-09T14:49:48+02:00",
"endDate": "2018-01-09T15:16:49.199756+02:00"
},
"minimalStep": {
"currency": "UAH",
"amount": 1208090.2,
"valueAddedTaxIncluded": true
}
}
]
},
"bids": [
{
"participationUrl": "https://auction.openprocurement.org/tenders/001b2c1c3c4f42b4a17b2c565fb86a2f_a361be2dfd9df53ab70764e4caab6a47/login?bidder_id=e18852575cbe46c497d7925c73bebc2d&hash=395ff2e48e5d8b00c2d22dd272bcd3ebf961a157"
}
]
}
```