-
Notifications
You must be signed in to change notification settings - Fork 2
/
release-schema.json
167 lines (167 loc) · 5.21 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
{
"definitions": {
"Award": {
"properties": {
"evaluationIndicators": {
"title": "Evaluation of PPP option",
"description": "Key indicators that describe how the PPP option has been evaluated by government.",
"$ref": "#/definitions/EvaluationIndicators"
}
}
},
"Contract": {
"properties": {
"financeSummary": {
"title": "Finance summary",
"description": "Key indicators that describe the financial model of the PPP.",
"$ref": "#/definitions/FinanceSummary"
}
}
},
"EvaluationIndicators": {
"title": "Evaluation indicators",
"description": "Key indicators that describe how the PPP option has been evaluated by government.",
"type": "object",
"properties": {
"riskPremium": {
"title": "Risk premium",
"description": "The risk premium used by government when evaluating the PPP option, expressed as a decimal (for example, 0.1) and not as a percentage (for example, 10).",
"type": [
"number",
"null"
]
},
"riskPremiumDetails": {
"title": "Risk premium details",
"description": "Additional details on the risk premium used: for example, the rationale.",
"type": [
"string",
"null"
],
"minLength": 1
},
"discountRate": {
"title": "Discount rate",
"description": "The discount rate used by government when evaluating the PPP option, expressed as a decimal (for example, 0.1) and not as a percentage (for example, 10).",
"type": [
"number",
"null"
]
},
"discountRateDetails": {
"title": "Discount rate details",
"description": "Additional details on the discount rate used.",
"type": [
"string",
"null"
],
"minLength": 1
},
"netPresentValue": {
"title": "Net present value",
"description": "The discounted value of an investment's cash inflows minus the discounted value of its cash outflows.",
"$ref": "#/definitions/Value"
},
"netPresentValueDetails": {
"title": "Net present value details",
"description": "Additional details on the calculation of the net present value.",
"type": [
"string",
"null"
],
"minLength": 1
}
},
"minProperties": 1
},
"FinanceSummary": {
"title": "Finance summary",
"description": "Key indicators that describe the financial model of the PPP.",
"type": "object",
"properties": {
"debtEquityRatio": {
"title": "Debt-equity ratio",
"description": "The debt-equity ratio of the project, expressed as a decimal (for example, 0.1). Also called gearing or leverage.",
"type": [
"number",
"null"
]
},
"debtEquityRatioDetails": {
"title": "Debt-equity ratio details",
"description": "Additional details on the calculation of the debt equity ratio.",
"type": [
"string",
"null"
],
"minLength": 1
},
"shareCapital": {
"title": "Share capital",
"description": "The value of the capital in the project that comes from the issue of shares.",
"$ref": "#/definitions/Value"
},
"shareCapitalDetails": {
"title": "Share capital details",
"description": "Additional details on the calculation of the share capital.",
"type": [
"string",
"null"
],
"minLength": 1
},
"subsidyRatio": {
"title": "Subsidy ratio",
"description": "The subsidy's proportion of the project value, expressed as a decimal between 0 and 1.",
"type": [
"number",
"null"
]
},
"subsidyRatioDetails": {
"title": "Subsidy ratio details",
"description": "Additional details on the calculation of the subsidy ratio.",
"type": [
"string",
"null"
],
"minLength": 1
},
"projectIRR": {
"title": "Internal rate of return",
"description": "The internal rate of return of the project, expressed as a decimal (for example, 0.1) and not as a percentage (for example, 10).",
"type": [
"number",
"null"
]
},
"projectIRRDetails": {
"title": "Internal rate of return details",
"description": "Additional details on the calculation of the project IRR.",
"type": [
"string",
"null"
],
"minLength": 1
}
},
"minProperties": 1
},
"Metric": {
"properties": {
"id": {
"codelist": "metricID.csv",
"openCodelist": true
}
}
},
"Milestone": {
"properties": {
"code": {
"codelist": "milestoneCode.csv",
"openCodelist": true
}
}
}
}
}