Skip to content

Commit 5d2d352

Browse files
author
Tim Davies
committed
Creating milestone documents extension
0 parents  commit 5d2d352

File tree

3 files changed

+41
-0
lines changed

3 files changed

+41
-0
lines changed

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Milestone Documents
2+
===================
3+
4+
In OCDS 1.1, core support for documents attached to individual milestones was removed from the milestones block to simplify the standard.
5+
6+
This extension re-introduces the ```documents``` block to ```milestones```, providing fields to detail the documents related to each individual milestone.
7+
8+
## Guidance
9+
10+
Publishers should consider that many consuming applications will only look at the ```tender/documents```, ```award/documents```, ```contracts/documents``` and ```contracts/implementation/documents``` section to access and display relevant documentation to users.
11+
12+
Document titles, document types, and descriptions can be used to indicate to human readers the particular nature of the documents and any milestones they relate to.
13+
14+
However, in cases where it is important to track documents on a milestone-by-milestone basis this extension can be introduced.
15+
16+
Depending on the nature of the documents, publishers should consider duplicating information in the parent sections documents block also.
17+

extension.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "Milestone documents",
3+
"description": "Documents at the milestone level were deprecated in OCDS 1.1. This extension re-introduces the ability to attach documents to each individual milestone.",
4+
"compatibility": ">=1.1.0",
5+
"dependencies": []
6+
}

release-schema.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"definitions": {
3+
"Milestone": {
4+
"properties": {
5+
"documents": {
6+
"title": "Documents",
7+
"description": "A list of documents specifically associated with this milestone.",
8+
"type": "array",
9+
"deprecated": null,
10+
"items": {
11+
"$ref": "#/definitions/Document"
12+
},
13+
"uniqueItems": true
14+
}
15+
}
16+
}
17+
}
18+
}

0 commit comments

Comments
 (0)