Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/openprocurement/ocds_pendingcancellation_extension
https://github.com/openprocurement/ocds_pendingcancellation_extension
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/openprocurement/ocds_pendingcancellation_extension
- Owner: openprocurement
- License: apache-2.0
- Created: 2019-01-23T13:38:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-23T13:59:32.000Z (almost 6 years ago)
- Last Synced: 2024-11-09T11:35:21.270Z (2 months ago)
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pending Cancellation
The extension shows whether a lot is pending for cancellation.
## Overview
The fields introduced by this extension are:
- `tender/pendingCancellation` - Yes or No field showing whether a lot is pending for cancellation.
It should be boolean value.
- `lots/pendingCancellation` - Yes or No field showing whether a lot is pending for cancellation.
It should be boolean value.
## Examples
The following extract illustrates these properties in use within the
`tender` and `lots` blocks.
```
{
"tender": {
"id": "ocds-213czf-lots-00001-01-tender",
"title": "Architecture and engineering services",
"description": "The authority is seeking support to construct a new public building.",
"procurementMethod": "open",
"status": "active",
"pendingCancellation": true,
"items": [
{
"id": "0001",
"description": "Architectural advice",
"classification": {
"scheme": "CPV",
"id": "71210000",
"description": "Advisory architectural services"
},
"relatedLot": "lot-1"
},
{
"id": "0002",
"description": "Architectural design",
"classification": {
"scheme": "CPV",
"id": "71220000",
"description": "Architectural design services"
},
"relatedLot": "lot-1"
},
{
"id": "0003",
"description": "Civil engineering consultant",
"classification": {
"scheme": "CPV",
"id": "71311000",
"description": "Civil engineering consultancy services"
},
"relatedLot": "lot-2"
},
{
"id": "0004",
"description": "Structural engineering services",
"classification": {
"scheme": "CPV",
"id": "71312000",
"description": "Structural engineering consultancy services"
},
"relatedLot": "lot-1"
}
],
"value": {
"amount": 1200000,
"currency": "GBP"
},
"lots": [
{
"id": "lot-1",
"title": "Architectural services",
"description": "For architectural services delivered in the project",
"status": "active",
"value": {
"currency": "GBP",
"amount": 200000
},
"pendingCancellation": true
}
]
}
}
```