-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-schema.json
83 lines (83 loc) · 2.78 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
{
"definitions": {
"PerformanceFailure": {
"title": "Performance failure disclosure",
"description": "Details of the performance failures for a given period and category. Details of the associated penalties and abatements provided for in the contract, imposed and paid can also be provided.",
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"title": "Identifier",
"description": "A local identifier for this specific category and period of performance failure. This field is used to keep track of revisions of a charge across multiple OCDS releases.",
"type": "string",
"minLength": 1
},
"period": {
"title": "Performance failure period",
"description": "The reporting period for the performance failures.",
"$ref": "#/definitions/Period"
},
"category": {
"title": "Performance failure category",
"description": "The category of the performance failures.",
"type": [
"string",
"null"
],
"minLength": 1
},
"events": {
"title": "Number of events",
"description": "The number of performance failures for this period and category.",
"type": [
"number",
"null"
]
},
"penaltyContracted": {
"title": "Contracted penalty",
"description": "A description of the penalty or abatement provided for in the contract for this period, category and number of performance failures.",
"type": [
"string",
"null"
],
"minLength": 1
},
"penaltyImposed": {
"title": "Penalty imposed",
"description": "A description of the penalty or abatement imposed for this period, category and number of performance failures.",
"type": [
"string",
"null"
],
"minLength": 1
},
"penaltyPaid": {
"title": "Penalty paid",
"description": "Whether the penalty imposed for this period, category and number of performance failures has been paid.",
"type": [
"boolean",
"null"
]
}
},
"minProperties": 1
},
"Implementation": {
"properties": {
"performanceFailures": {
"title": "Performance failure disclosures",
"description": "An array of performance failure disclosures, detailing performance failures for different periods and categories.",
"type": "array",
"items": {
"$ref": "#/definitions/PerformanceFailure"
},
"uniqueItems": true,
"minItems": 1
}
}
}
}
}