-
Notifications
You must be signed in to change notification settings - Fork 1
/
release-schema.json
110 lines (110 loc) · 3.06 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
{
"definitions": {
"Tender": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s).",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract(s).",
"$ref": "#/definitions/Renewal"
}
}
},
"Award": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s).",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract(s).",
"$ref": "#/definitions/Renewal"
}
}
},
"Contract": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer reserves the right to renew the contract.",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract.",
"$ref": "#/definitions/Renewal"
}
}
},
"Lot": {
"properties": {
"hasRenewal": {
"title": "Has renewal",
"description": "Whether the buyer is expected to reserve the right to renew the future contract(s) related to the lot.",
"type": [
"boolean",
"null"
]
},
"renewal": {
"title": "Renewal",
"description": "The options for the renewal of the contract(s) related to the lot.",
"$ref": "#/definitions/Renewal"
}
}
},
"Renewal": {
"title": "Renewal",
"description": "Information about the options for the renewal of a contract.",
"type": "object",
"properties": {
"description": {
"title": "Description",
"description": "A description of the options for the renewal of the contract.",
"type": [
"string",
"null"
],
"minLength": 1
},
"minimumRenewals": {
"title": "Minimum renewal",
"description": "The minimum number of renewals.",
"type": [
"number",
"null"
]
},
"maximumRenewals": {
"title": "Maximum renewal",
"description": "The maximum number of renewals. If there is no maximum, set to 1e9999 (which parses to infinity).",
"type": [
"number",
"null"
]
},
"period": {
"title": "Renewal period",
"description": "The period over which the contract can be renewed.",
"$ref": "#/definitions/Period"
}
},
"minProperties": 1
}
}
}