Skip to content

Commit 19b92f2

Browse files
authored
Merge pull request #9 from open-contracting/indent
2 parents e7abd62 + a4f8679 commit 19b92f2

File tree

1 file changed

+59
-32
lines changed

1 file changed

+59
-32
lines changed

release-schema.json

Lines changed: 59 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
"Tender": {
44
"properties": {
55
"enquiries": {
6-
"title":"Enquiries",
7-
"type": ["array","null"],
6+
"title": "Enquiries",
7+
"type": [
8+
"array",
9+
"null"
10+
],
811
"description": "Questions sent to the procuring entity, and the answers given",
912
"items": {
1013
"$ref": "#/definitions/Enquiry"
@@ -14,62 +17,86 @@
1417
},
1518
"Enquiry": {
1619
"type": "object",
17-
"title":"Enquiry",
20+
"title": "Enquiry",
1821
"description": "A question related to this contracting process, generally sent during the enquiry period.",
1922
"properties": {
2023
"id": {
21-
"title":"Identifier",
24+
"title": "Identifier",
2225
"description": "A unique identifier for the enquiry.",
23-
"type": ["string","null"]
26+
"type": [
27+
"string",
28+
"null"
29+
]
2430
},
2531
"date": {
2632
"type": "string",
27-
"title":"Date",
33+
"title": "Date",
2834
"description": "The date the enquiry was received or processed.",
29-
"format":"date-time"
35+
"format": "date-time"
3036
},
3137
"author": {
32-
"title":"Question author",
38+
"title": "Question author",
3339
"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.",
3440
"$ref": "#/definitions/Organization"
3541
},
3642
"title": {
37-
"title":"Question title",
43+
"title": "Question title",
3844
"description": "The subject line of the question.",
39-
"type": ["string","null"]
45+
"type": [
46+
"string",
47+
"null"
48+
]
4049
},
4150
"description": {
42-
"title":"Description",
51+
"title": "Description",
4352
"description": "The body of the question.",
44-
"type": ["string","null"]
53+
"type": [
54+
"string",
55+
"null"
56+
]
4557
},
4658
"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+
]
5065
},
5166
"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"
5674
},
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+
]
6182
},
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+
]
6690
},
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.",
94+
"type": [
95+
"string",
96+
"null"
97+
]
7198
}
7299
}
73100
}
74101
}
75-
}
102+
}

0 commit comments

Comments
 (0)