https://github.com/devgateway/ocds_certificate_extension
Local extension for DNV Argentina project
https://github.com/devgateway/ocds_certificate_extension
Last synced: 7 days ago
JSON representation
Local extension for DNV Argentina project
- Host: GitHub
- URL: https://github.com/devgateway/ocds_certificate_extension
- Owner: devgateway
- License: apache-2.0
- Created: 2019-05-02T19:37:39.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T12:52:07.000Z (over 6 years ago)
- Last Synced: 2025-07-23T13:00:09.225Z (7 months ago)
- Size: 10.7 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Certificates
We need a local extension for Direccion Nacional de Vialidad Argentina (DNV) in which we can define specific information about the contracting process such as:
* Certificates
This extension will allow DNV to show more precise information about the certificates been made during the contracting implementation.
## Worked example
The "certificates" extension will be a field inside contracts.implementation, which mean that will be at the same level as transactions
```json
{
"certificates" : [
{
"_id" : "0002084/2016",
"status" : "EMITIDO",
"date" : "2015-12-01T11:00:00.000Z",
"certificateAmount" : {
"amount" : 1000,
"currency" : "ARS"
},
"totalAmount" : {
"amount" : 2000,
"currency" : "ARS"
}
},
{
"_id" : "0002447/2016",
"status" : "PAGADO",
"date" : "2016-01-01T11:00:00.000Z",
"certificateAmount" : {
"amount" : 2000,
"currency" : "ARS"
},
"totalAmount" : {
"amount" : 8000,
"currency" : "ARS"
}
}
]
}
```