-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-schema.json
42 lines (42 loc) · 1.53 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
{
"definitions": {
"Guarantee": {
"title": "Guarantee",
"description": "A sum of money which the Economic Operator may set out in tender documentation and which the Participant (Award of Tender/Lot) shall pay in case of a refusal to sign the Contract, or in other cases foreseen in the Law.",
"type": "object",
"required": [
"currency"
],
"properties": {
"amount": {
"title": "Amount",
"description": "Amount of the guarantee as a number",
"type": "number"
},
"currency": {
"title": "Currency",
"description": "Currency of the guarantee in a 3-letter ISO 4217 format.",
"type": "string"
}
}
},
"Tender": {
"properties": {
"guarantee": {
"title": "Guarantee",
"description": "A sum of money which the Economic Operator may set out in tender documentation and which the Participant (Award of Tender/Lot) shall pay in case of a refusal to sign the Contract, or in other cases foreseen in the Law.",
"$ref": "#/definitions/Guarantee"
}
}
},
"Lot": {
"properties": {
"guarantee": {
"title": "Guarantee",
"description": "A sum of money which the Economic Operator may set out in tender documentation and which the Participant (Award of Tender/Lot) shall pay in case of a refusal to sign the Contract, or in other cases foreseen in the Law.",
"$ref": "#/definitions/Guarantee"
}
}
}
}
}