-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease-schema.json
58 lines (58 loc) · 1.63 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
{
"definitions": {
"Tender": {
"properties": {
"bidOpening": {
"title": "Bid opening",
"description": "The date, time, place and other details of the public bid opening.",
"$ref": "#/definitions/BidOpening"
}
}
},
"Lot": {
"properties": {
"bidOpening": {
"title": "Bid opening",
"description": "The date, time, place and other details of the public bid opening.",
"$ref": "#/definitions/BidOpening"
}
}
},
"BidOpening": {
"title": "Bid opening",
"description": "The date, time, place and other details of the public bid opening.",
"type": "object",
"properties": {
"date": {
"title": "Date and time",
"description": "The date and time of the bid opening.",
"type": [
"string",
"null"
],
"format": "date-time"
},
"location": {
"title": "Location",
"description": "The place where the bid opening occurs.",
"$ref": "#/definitions/Location"
},
"address": {
"title": "Address",
"description": "The address of the place where the bid opening occurs.",
"$ref": "#/definitions/Address"
},
"description": {
"title": "Details",
"description": "Any other details about the bid opening (who can participate, whether authorization is needed, etc.).",
"type": [
"string",
"null"
],
"minLength": 1
}
},
"minProperties": 1
}
}
}