You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: release-schema.json
+59-32Lines changed: 59 additions & 32 deletions
Original file line number
Diff line number
Diff line change
@@ -3,8 +3,11 @@
3
3
"Tender": {
4
4
"properties": {
5
5
"enquiries": {
6
-
"title":"Enquiries",
7
-
"type": ["array","null"],
6
+
"title": "Enquiries",
7
+
"type": [
8
+
"array",
9
+
"null"
10
+
],
8
11
"description": "Questions sent to the procuring entity, and the answers given",
9
12
"items": {
10
13
"$ref": "#/definitions/Enquiry"
@@ -14,62 +17,86 @@
14
17
},
15
18
"Enquiry": {
16
19
"type": "object",
17
-
"title":"Enquiry",
20
+
"title":"Enquiry",
18
21
"description": "A question related to this contracting process, generally sent during the enquiry period.",
19
22
"properties": {
20
23
"id": {
21
-
"title":"Identifier",
24
+
"title":"Identifier",
22
25
"description": "A unique identifier for the enquiry.",
23
-
"type": ["string","null"]
26
+
"type": [
27
+
"string",
28
+
"null"
29
+
]
24
30
},
25
31
"date": {
26
32
"type": "string",
27
-
"title":"Date",
33
+
"title":"Date",
28
34
"description": "The date the enquiry was received or processed.",
29
-
"format":"date-time"
35
+
"format":"date-time"
30
36
},
31
37
"author": {
32
-
"title":"Question author",
38
+
"title":"Question author",
33
39
"description": "The identifier and name of the party asking this question. Questioners may be listed in the parties array with a role of 'enquirer'. Procurement policies vary on whether or not the identity of those asking questions should be disclosed, or at which stage this information may be disclosed. When the identity of the questioner cannot be disclosed leave the author section blank. Display systems should interpret this as an anonymous question.",
34
40
"$ref": "#/definitions/Organization"
35
41
},
36
42
"title": {
37
-
"title":"Question title",
43
+
"title":"Question title",
38
44
"description": "The subject line of the question.",
39
-
"type": ["string","null"]
45
+
"type": [
46
+
"string",
47
+
"null"
48
+
]
40
49
},
41
50
"description": {
42
-
"title":"Description",
51
+
"title":"Description",
43
52
"description": "The body of the question.",
44
-
"type": ["string","null"]
53
+
"type": [
54
+
"string",
55
+
"null"
56
+
]
45
57
},
46
58
"answer": {
47
-
"title":"Answer",
48
-
"description": "The answer to this question, when available.",
49
-
"type": ["string","null"]
59
+
"title": "Answer",
60
+
"description": "The answer to this question, when available.",
61
+
"type": [
62
+
"string",
63
+
"null"
64
+
]
50
65
},
51
66
"dateAnswered": {
52
-
"title":"Date answered",
53
-
"description": "The date the answer to the question was provided.",
54
-
"type": ["string","null"],
55
-
"format":"date-time"
67
+
"title": "Date answered",
68
+
"description": "The date the answer to the question was provided.",
69
+
"type": [
70
+
"string",
71
+
"null"
72
+
],
73
+
"format": "date-time"
56
74
},
57
-
"relatedItem":{
58
-
"title":"Related item",
59
-
"description":"If this question relates to a specific line-item, this field contains the line-item identifier.",
60
-
"type": ["string","null"]
75
+
"relatedItem": {
76
+
"title": "Related item",
77
+
"description": "If this question relates to a specific line-item, this field contains the line-item identifier.",
78
+
"type": [
79
+
"string",
80
+
"null"
81
+
]
61
82
},
62
-
"relatedLot":{
63
-
"title":"Related lot",
64
-
"description":"Where lots are used, if this question relates to a specific lot, this field contains the lot identifier.",
65
-
"type": ["string","null"]
83
+
"relatedLot": {
84
+
"title": "Related lot",
85
+
"description": "Where lots are used, if this question relates to a specific lot, this field contains the lot identifier.",
86
+
"type": [
87
+
"string",
88
+
"null"
89
+
]
66
90
},
67
-
"threadID":{
68
-
"title":"Thread identifier",
69
-
"description":"If this question and answer forms part of a discussion thread (e.g. the question is a follow up to a previous answer) an optional thread identifier can be used to associate together multiple enquiries.",
70
-
"type": ["string","null"]
91
+
"threadID": {
92
+
"title": "Thread identifier",
93
+
"description": "If this question and answer forms part of a discussion thread (e.g. the question is a follow up to a previous answer) an optional thread identifier can be used to associate together multiple enquiries.",
0 commit comments