Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add example #16

Merged
merged 4 commits into from
Apr 14, 2020
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,43 @@ However, in cases where it is important to track documents on a milestone-by-mil

Depending on the nature of the documents, publishers should consider duplicating information in the parent sections documents block also.

## Worked Example
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved

During the implementation of a contract, the buyer set different milestones that the supplier must met. Each of these milestone could has an associated document that offers more details about the met milestone, for example a consultancy report
jpmckinney marked this conversation as resolved.
Show resolved Hide resolved

```json
{
"contracts": [
{
"id": "CO-40002-18-166811",
"awardID": "354469-jorge-augusto-zarate-leiva-1",
"implementation": {
"milestones": [
{
"id": "fcrMXKIb3/o=",
"title": "Informe de Consultoria",
"type": "reporting",
"dueDate": "2020-02-13T00:00:00-04:00",
"dateMet": "2020-02-14T00:00:00-04:00",
"status": "met",
"documents": [
{
"id": "QQ1cjJZ82Rk=",
"url": "https://www.contrataciones.gov.py/documentos/download/contrato_detalle_entregable/vki7v5RKGrA%253D",
"datePublished": "2020-02-17T13:38:25-04:00",
"language": "es",
"title": "informe_n__13_1581957505348.pdf",
"format": "application/pdf"
}
]
}
]
}
}
]
}
```

## Issues

Report issues for this extension in the [ocds-extensions repository](https://github.com/open-contracting/ocds-extensions/issues), putting the extension's name in the issue's title.
Expand Down