-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-schema.json
158 lines (158 loc) · 5.68 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
{
"definitions": {
"Tender": {
"properties": {
"submissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids or expressions of interest for the procedure.",
"$ref": "#/definitions/SubmissionTerms"
}
}
},
"Lot": {
"properties": {
"submissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids or expressions of interest for the lot.",
"$ref": "#/definitions/SubmissionTerms"
}
}
},
"SubmissionTerms": {
"title": "Submission terms",
"description": "Information about the submission terms to describe how, when and where the tenderers need to submit their bids or expressions of interest.",
"type": "object",
"properties": {
"electronicSubmissionPolicy": {
"title": "Electronic submission policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids or expressions of interest electronically.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
},
"variantPolicy": {
"title": "Variant policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids which fulfill the buyer's needs differently than as proposed in the procurement documents.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
},
"electronicCatalogPolicy": {
"title": "Electronic catalog policy",
"description": "Whether tenderers are required, allowed or not allowed to submit bids as electronic catalogs. An electronic catalog is an electronic format (typically prescribed by the buyer) that participants in the contracting process need to follow when exchanging information about technical specifications, evaluation criteria, bids, lots, etc.",
"type": [
"string",
"null"
],
"codelist": "permission.csv",
"openCodelist": false,
"enum": [
"required",
"allowed",
"notAllowed",
null
]
},
"languages": {
"title": "Submission language",
"description": "One or more languages in which bids or expressions of interest can be submitted, using either two-letter [ISO639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes), or extended [BCP47 language tags](http://www.w3.org/International/articles/language-tags/). The use of lowercase two-letter codes from [ISO639-1](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) is recommended.",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true,
"minItems": 1
},
"bidValidityPeriod": {
"title": "Bid validity period",
"description": "The period, from the bid submission deadline, for which bids must remain valid.",
"$ref": "#/definitions/Period"
},
"depositsGuarantees": {
"title": "Deposits and guarantees",
"description": "Information about the deposits or guarantees required from the tenderers.",
"type": [
"string",
"null"
],
"minLength": 1
},
"advancedElectronicSignatureRequired": {
"title": "Advanced electronic signature required",
"description": "Whether an advanced or qualified electronic signature or seal is needed.",
"type": [
"boolean",
"null"
]
},
"multipleBidsAllowed": {
"title": "Multiple bids allowed",
"description": "Whether tenderers can submit more than one bid.",
"type": [
"boolean",
"null"
]
},
"subcontractingClauses": {
"title": "Subcontracting clauses",
"description": "The information about subcontracting that needs to be provided in the bid.",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 1
},
"uniqueItems": true,
"minItems": 1
},
"nonElectronicSubmission": {
"title": "Non-electronic submission",
"description": "Information about non-electronic submission requirements.",
"type": "object",
"properties": {
"rationale": {
"title": "Rationale",
"description": "The rationale for electronic submission not being allowed.",
"type": [
"string",
"null"
],
"minLength": 1
},
"address": {
"title": "Address",
"description": "The address to which non-electronic bids or expressions of interest should be submitted.",
"$ref": "#/definitions/Address"
}
},
"minProperties": 1
}
},
"minProperties": 1
}
}
}