-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuilding-blocks.json
More file actions
123 lines (122 loc) · 5.51 KB
/
building-blocks.json
File metadata and controls
123 lines (122 loc) · 5.51 KB
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
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "Schema for an Open Contracting Release under Procuriosity implementation",
"type": "object",
"doc":{
"application":{
"pcr":{
"parties":{
"description":"",
"class":"[Organization]"
},
"tender":{
"description":"The tender section of the FE-release includes details of the announcement that Procuring Entity intends to source some goods or services and to for these requests a pre-award catalogues from a number of suppliers, selected under separate prequalification round.",
"class":"[Tender.PCR]"
},
"relatedProcesses":{
"description":"",
"class":"[RelatedProcess]"
},
"bids":{
"description":"",
"class":"[Bids]"
}
},
"fe":{
"parties":{
"description":"",
"class":"[Organization]"
},
"planning":{
"description":"",
"class":"[Planning.FE]"
},
"tender":{
"description":"The tender section of the FE-release includes details of the announcement that Procuring Entity intends to source some goods or services and to for these requests a pre-award catalogues from a number of suppliers, selected under separate prequalification round.",
"class":"[Tender.FE]"
},
"relatedProcesses":{
"description":"",
"class":"[RelatedProcess]"
}
},
"ppq":{
"tender":{},
"preQualification":{},
"bids":{},
"parties":{},
"relatedProcesses":{}
},
"po":{
"tender":{},
"bids":{},
"awards":{},
"parties":{},
"relatedProcesses":{}
},
"ssc":{}
}
},
"properties":{
"parties": {
"description": "Information on the parties (organisations, economic operators and other participants) who are involved in the contracting process and their roles, e.g. buyer, procuring entity, supplier etc. Organization references elsewhere in the schema are used to refer back to this entries in this list.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Organization"
},
"uniqueItems": true
},
"planning": {
"description": "Information from the planning phase of the contracting process. This includes information related to the process of deciding what to contract for, when and how.",
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Planning"
},
"tender": {
"description": "The activities undertaken in order to enter into a contract.",
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Tender"
},
"preQualification": {
"title": "Pre-qualification",
"description": "The activities undertaken in order to qualify suppliers to participate in the tender.",
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/PreQualification"
},
"awards": {
"description": "Information from the award phase of the contracting process. There may be more than one award per contracting process e.g. because the contract is split amongst different providers, or because it is a standing offer.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Award"
},
"uniqueItems": true
},
"contracts": {
"description": "Information from the contract creation phase of the procurement process.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Contract"
},
"uniqueItems": true
},
"relatedProcesses": {
"description": "If this process follows on from one or more prior process, represented under a separate open contracting identifier (ocid) then details of the related process can be provided here. This is commonly used to relate mini-competitions to their parent frameworks, full tenders to a pre-qualification phase, or individual tenders to a broad planning process.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/RelatedProcess"
},
"uniqueItems": true
},
"bids": {
"description": "The bid section is used to publish summary statistics, and where applicable, individual bid information.",
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Bids"
},
"auctions":{
"description": "Information from the award phase of the contracting process. There may be more than one award per contracting process e.g. because the contract is split amongst different providers, or because it is a standing offer.",
"type": "array",
"items": {
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/Auction"
}
},
"reviewProceedings":{
"description": "The bid section is used to publish summary statistics, and where applicable, individual bid information.",
"$ref": "https://raw.githubusercontent.com/procuriosity/data-models/master/definitions.json#/definitions/ReviewProceedings"
}
}
}