-
Notifications
You must be signed in to change notification settings - Fork 0
/
release-schema.json
41 lines (41 loc) · 1.49 KB
/
release-schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"definitions": {
"Planning": {
"properties": {
"requestingUnits": {
"title": "requestingUnit",
"description": "The specific units inside the buyer who require the acquisition or lease of goods, or the provision of services, or those that will benefit from the procurement.",
"type": "array",
"codelist": "+partyRole.csv",
"openCodelist": true,
"items": {
"$ref": "#/definitions/OrganizationReference"
},
"uniqueItems": true
},
"responsibleUnits": {
"title": "responsibleUnit",
"description": "The specific units inside the buyer who are responsible for the supervision of the contracts implementation. ",
"type": "array",
"codelist": "+partyRole.csv",
"openCodelist": true,
"items": {
"$ref": "#/definitions/OrganizationReference"
},
"uniqueItems": true
},
"contractingUnits": {
"title": "contractingUnit",
"description": "The specific units inside the buyer or the procuring entity who are responsible for carrying out the contracting process. They are gennerally involved in the tender, award and contract stages.",
"type": "array",
"codelist": "+partyRole.csv",
"openCodelist": true,
"items": {
"$ref": "#/definitions/OrganizationReference"
},
"uniqueItems": true
}
}
}
}
}