-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrelease-schema.json
177 lines (177 loc) · 6.13 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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
{
"properties": {
"preQualification": {
"title": "Pre-qualification",
"description": "The activities undertaken in order to qualify suppliers to participate in the tender.",
"$ref": "#/definitions/PreQualification"
}
},
"definitions": {
"PreQualification": {
"title": "Pre-qualification",
"description": "Data regarding pre-qualification process - limiting the number of qualified bidders by reviewing each bidder's qualifications against a set of criteria.",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"title": "Pre-qualification ID",
"description": "An identifier for this pre-qualification process. This may be the same as the ocid, or may be drawn from an internally held identifier for this process.",
"type": [
"string",
"integer"
],
"minLength": 1
},
"title": {
"title": "Pre-qualification title",
"description": "Pre-qualification title",
"type": [
"string",
"null"
],
"minLength": 1
},
"description": {
"title": "Pre-qualification description",
"description": "Pre-qualification description",
"type": [
"string",
"null"
],
"minLength": 1
},
"status": {
"title": "Pre-qualification status",
"description": "The current status of the pre-qualification.",
"type": [
"string",
"null"
],
"codelist": "preQualificationStatus.csv",
"openCodelist": false,
"enum": [
"planned",
"active",
"cancelled",
"unsuccessful",
"complete",
null
]
},
"submissionMethod": {
"title": "Submission method",
"description": "The methods by which bids are submitted.",
"type": [
"array",
"null"
],
"items": {
"type": "string",
"minLength": 1
},
"codelist": "submissionMethod.csv",
"openCodelist": true,
"uniqueItems": true,
"minItems": 1
},
"submissionMethodDetails": {
"title": "Submission method details",
"description": "Any detailed or further information on the submission method. This may include the address, e-mail address or online service to which bids should be submitted, and any special requirements to be followed for submissions.",
"type": [
"string",
"null"
],
"minLength": 1
},
"period": {
"title": "Pre-qualification period",
"description": "The period when the pre-qualification is open for submissions. The end date is the closing date for pre-qualification submissions.",
"$ref": "#/definitions/Period"
},
"enquiryPeriod": {
"title": "Enquiry period",
"description": "The period during which enquiries regarding the pre-qualification may be made and answered.",
"$ref": "#/definitions/Period"
},
"hasEnquiries": {
"title": "Has enquiries?",
"description": "A true/false field to indicate whether any enquiries were received during the pre-qualification process",
"type": [
"boolean",
"null"
]
},
"eligibilityCriteria": {
"title": "Eligibility criteria",
"description": "A description of any eligibility criteria for bidders to participate in the pre-qualification.",
"type": [
"string",
"null"
],
"minLength": 1
},
"qualificationPeriod": {
"title": "Qualification period",
"description": "The date or period when candidates will are anticipated to be qualified or pre-selected (shortlisted).",
"$ref": "#/definitions/Period"
},
"numberOfTenderers": {
"title": "Number of tenderers",
"description": "The number of entities who submit a response to the pre-qualification.",
"type": [
"integer",
"null"
]
},
"tenderers": {
"title": "Tenderers",
"description": "All entities who submit a response to the pre-qualification.",
"type": "array",
"items": {
"$ref": "#/definitions/OrganizationReference"
},
"uniqueItems": true,
"minItems": 1
},
"procuringEntity": {
"title": "Procuring entity",
"description": "The entity managing the procurement, which may be different from the buyer who is paying / using the items being procured.",
"$ref": "#/definitions/OrganizationReference"
},
"documents": {
"title": "Documents",
"description": "All documents and attachments related to the pre-qualification, including any notices. See the `documentType.csv` codelist for details of potential documents to include.",
"type": "array",
"items": {
"$ref": "#/definitions/Document"
},
"uniqueItems": true,
"minItems": 1
},
"milestones": {
"title": "Milestones",
"description": "A list of milestones associated with the pre-qualification.",
"type": "array",
"items": {
"$ref": "#/definitions/Milestone"
},
"uniqueItems": true,
"minItems": 1
},
"amendments": {
"title": "Amendments",
"description": "An amendment is a formal change to the pre-qualification process, and generally involves the publication of a new RFQ notice/release. The rationale and a description of the changes made can be provided here.",
"type": "array",
"items": {
"$ref": "#/definitions/Amendment"
},
"uniqueItems": true,
"minItems": 1
}
},
"minProperties": 1
}
}
}