@dvsa/cvs-type-definitions 9.2.1 → 9.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/json-schemas/required-standards/defects/get/index.json +72 -1
- package/json-schemas/test-type/enums/testTypeClassification.enum.json +6 -2
- package/json-schemas/test-type/get/index.json +6 -2
- package/json-schemas/test-type/nextTestTypesOrCategory.json +6 -2
- package/json-schemas/test-type/testCode.json +84 -3
- package/json-schemas/v1/defect-category-reference-data/index.json +192 -2
- package/json-schemas/v1/tech-record/index.json +19 -1
- package/json-schemas/v1/test/index.json +41 -23
- package/json-schemas/v1/test-result/index.json +41 -23
- package/json-schemas/v1/test-result-test-type/index.json +25 -17
- package/json-schemas/v1/vehicle/index.json +41 -23
- package/json-schemas/v1/vehicle-tech-record/index.json +19 -1
- package/json-schemas/v1/visit/index.json +41 -23
- package/json-schemas/v3/tech-record/get/hgv/complete/index.json +1 -1
- package/json-schemas/v3/tech-record/get/hgv/skeleton/index.json +1 -1
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +1 -1
- package/json-schemas/v3/tech-record/get/psv/complete/index.json +11 -2
- package/json-schemas/v3/tech-record/get/psv/skeleton/index.json +11 -2
- package/json-schemas/v3/tech-record/get/psv/testable/index.json +11 -2
- package/json-schemas/v3/tech-record/put/hgv/complete/index.json +1 -1
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +1 -1
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +1 -1
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +11 -2
- package/json-schemas/v3/tech-record/put/psv/skeleton/index.json +11 -2
- package/json-schemas/v3/tech-record/put/psv/testable/index.json +11 -2
- package/package.json +2 -2
- package/types/test-type/enums/testTypeClassification.enum.d.ts +3 -1
- package/types/test-type/enums/testTypeClassification.enum.js +2 -0
- package/types/test-type/enums/testTypeClassification.enum.ts +3 -1
- package/types/test-type/get/index.d.ts +3 -1
- package/types/test-type/nextTestTypesOrCategory.d.ts +3 -1
- package/types/v1/test/index.d.ts +5 -27
- package/types/v1/test-result/index.d.ts +5 -27
- package/types/v1/test-result-test-type/index.d.ts +5 -27
- package/types/v1/vehicle/index.d.ts +5 -27
- package/types/v1/visit/index.d.ts +5 -27
|
@@ -145,7 +145,78 @@
|
|
|
145
145
|
"items": {
|
|
146
146
|
"anyOf": [
|
|
147
147
|
{
|
|
148
|
-
"
|
|
148
|
+
"title": "RequiredStandardTaxonomySection",
|
|
149
|
+
"type": "object",
|
|
150
|
+
"additionalProperties": false,
|
|
151
|
+
"required": [
|
|
152
|
+
"sectionNumber",
|
|
153
|
+
"sectionDescription",
|
|
154
|
+
"requiredStandards"
|
|
155
|
+
],
|
|
156
|
+
"properties": {
|
|
157
|
+
"sectionNumber": {
|
|
158
|
+
"type": [
|
|
159
|
+
"string"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"sectionDescription": {
|
|
163
|
+
"type": [
|
|
164
|
+
"string"
|
|
165
|
+
]
|
|
166
|
+
},
|
|
167
|
+
"requiredStandards": {
|
|
168
|
+
"type": "array",
|
|
169
|
+
"items": {
|
|
170
|
+
"title": "Required Standard",
|
|
171
|
+
"type": "object",
|
|
172
|
+
"additionalProperties": false,
|
|
173
|
+
"required": [
|
|
174
|
+
"rsNumber",
|
|
175
|
+
"requiredStandard",
|
|
176
|
+
"refCalculation",
|
|
177
|
+
"additionalInfo",
|
|
178
|
+
"inspectionTypes"
|
|
179
|
+
],
|
|
180
|
+
"properties": {
|
|
181
|
+
"rsNumber": {
|
|
182
|
+
"type": [
|
|
183
|
+
"integer"
|
|
184
|
+
]
|
|
185
|
+
},
|
|
186
|
+
"requiredStandard": {
|
|
187
|
+
"type": [
|
|
188
|
+
"string"
|
|
189
|
+
]
|
|
190
|
+
},
|
|
191
|
+
"refCalculation": {
|
|
192
|
+
"type": [
|
|
193
|
+
"string"
|
|
194
|
+
]
|
|
195
|
+
},
|
|
196
|
+
"additionalInfo": {
|
|
197
|
+
"type": [
|
|
198
|
+
"boolean"
|
|
199
|
+
]
|
|
200
|
+
},
|
|
201
|
+
"inspectionTypes": {
|
|
202
|
+
"type": "array",
|
|
203
|
+
"items": {
|
|
204
|
+
"anyOf": [
|
|
205
|
+
{
|
|
206
|
+
"title": "Inspection Type",
|
|
207
|
+
"type": "string",
|
|
208
|
+
"enum": [
|
|
209
|
+
"basic",
|
|
210
|
+
"normal"
|
|
211
|
+
]
|
|
212
|
+
}
|
|
213
|
+
]
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
}
|
|
149
220
|
}
|
|
150
221
|
]
|
|
151
222
|
}
|
|
@@ -4,11 +4,15 @@
|
|
|
4
4
|
"tsEnumNames": [
|
|
5
5
|
"ANNUAL_NO_CERTIFICATE",
|
|
6
6
|
"ANNUAL_WITH_CERTIFICATE",
|
|
7
|
-
"NON_ANNUAL"
|
|
7
|
+
"NON_ANNUAL",
|
|
8
|
+
"IVA_WITH_CERTIFICATE",
|
|
9
|
+
"MSVA_WITH_CERTIFICATE"
|
|
8
10
|
],
|
|
9
11
|
"enum": [
|
|
10
12
|
"Annual NO CERTIFICATE",
|
|
11
13
|
"Annual With Certificate",
|
|
12
|
-
"NON ANNUAL"
|
|
14
|
+
"NON ANNUAL",
|
|
15
|
+
"IVA With Certificate",
|
|
16
|
+
"MSVA With Certificate"
|
|
13
17
|
]
|
|
14
18
|
}
|
|
@@ -255,12 +255,16 @@
|
|
|
255
255
|
"tsEnumNames": [
|
|
256
256
|
"ANNUAL_NO_CERTIFICATE",
|
|
257
257
|
"ANNUAL_WITH_CERTIFICATE",
|
|
258
|
-
"NON_ANNUAL"
|
|
258
|
+
"NON_ANNUAL",
|
|
259
|
+
"IVA_WITH_CERTIFICATE",
|
|
260
|
+
"MSVA_WITH_CERTIFICATE"
|
|
259
261
|
],
|
|
260
262
|
"enum": [
|
|
261
263
|
"Annual NO CERTIFICATE",
|
|
262
264
|
"Annual With Certificate",
|
|
263
|
-
"NON ANNUAL"
|
|
265
|
+
"NON ANNUAL",
|
|
266
|
+
"IVA With Certificate",
|
|
267
|
+
"MSVA With Certificate"
|
|
264
268
|
]
|
|
265
269
|
}
|
|
266
270
|
]
|
|
@@ -246,12 +246,16 @@
|
|
|
246
246
|
"tsEnumNames": [
|
|
247
247
|
"ANNUAL_NO_CERTIFICATE",
|
|
248
248
|
"ANNUAL_WITH_CERTIFICATE",
|
|
249
|
-
"NON_ANNUAL"
|
|
249
|
+
"NON_ANNUAL",
|
|
250
|
+
"IVA_WITH_CERTIFICATE",
|
|
251
|
+
"MSVA_WITH_CERTIFICATE"
|
|
250
252
|
],
|
|
251
253
|
"enum": [
|
|
252
254
|
"Annual NO CERTIFICATE",
|
|
253
255
|
"Annual With Certificate",
|
|
254
|
-
"NON ANNUAL"
|
|
256
|
+
"NON ANNUAL",
|
|
257
|
+
"IVA With Certificate",
|
|
258
|
+
"MSVA With Certificate"
|
|
255
259
|
]
|
|
256
260
|
}
|
|
257
261
|
]
|
|
@@ -40,7 +40,24 @@
|
|
|
40
40
|
{
|
|
41
41
|
"type": "array",
|
|
42
42
|
"items": {
|
|
43
|
-
"
|
|
43
|
+
"title": "Vehicle Type",
|
|
44
|
+
"type": "string",
|
|
45
|
+
"tsEnumNames": [
|
|
46
|
+
"HGV",
|
|
47
|
+
"PSV",
|
|
48
|
+
"TRL",
|
|
49
|
+
"LGV",
|
|
50
|
+
"CAR",
|
|
51
|
+
"MOTORCYCLE"
|
|
52
|
+
],
|
|
53
|
+
"enum": [
|
|
54
|
+
"hgv",
|
|
55
|
+
"psv",
|
|
56
|
+
"trl",
|
|
57
|
+
"lgv",
|
|
58
|
+
"car",
|
|
59
|
+
"motorcycle"
|
|
60
|
+
]
|
|
44
61
|
}
|
|
45
62
|
}
|
|
46
63
|
]
|
|
@@ -168,7 +185,48 @@
|
|
|
168
185
|
{
|
|
169
186
|
"type": "array",
|
|
170
187
|
"items": {
|
|
171
|
-
"
|
|
188
|
+
"title": "EU Vehicle Category",
|
|
189
|
+
"type": "string",
|
|
190
|
+
"tsEnumNames": [
|
|
191
|
+
"M1",
|
|
192
|
+
"M2",
|
|
193
|
+
"M3",
|
|
194
|
+
"N1",
|
|
195
|
+
"N2",
|
|
196
|
+
"N3",
|
|
197
|
+
"O1",
|
|
198
|
+
"O2",
|
|
199
|
+
"O3",
|
|
200
|
+
"O4",
|
|
201
|
+
"L1E_A",
|
|
202
|
+
"L1E",
|
|
203
|
+
"L2E",
|
|
204
|
+
"L3E",
|
|
205
|
+
"L4E",
|
|
206
|
+
"L5E",
|
|
207
|
+
"L6E",
|
|
208
|
+
"L7E"
|
|
209
|
+
],
|
|
210
|
+
"enum": [
|
|
211
|
+
"m1",
|
|
212
|
+
"m2",
|
|
213
|
+
"m3",
|
|
214
|
+
"n1",
|
|
215
|
+
"n2",
|
|
216
|
+
"n3",
|
|
217
|
+
"o1",
|
|
218
|
+
"o2",
|
|
219
|
+
"o3",
|
|
220
|
+
"o4",
|
|
221
|
+
"l1e-a",
|
|
222
|
+
"l1e",
|
|
223
|
+
"l2e",
|
|
224
|
+
"l3e",
|
|
225
|
+
"l4e",
|
|
226
|
+
"l5e",
|
|
227
|
+
"l6e",
|
|
228
|
+
"l7e"
|
|
229
|
+
]
|
|
172
230
|
}
|
|
173
231
|
},
|
|
174
232
|
{
|
|
@@ -223,7 +281,30 @@
|
|
|
223
281
|
{
|
|
224
282
|
"type": "array",
|
|
225
283
|
"items": {
|
|
226
|
-
"
|
|
284
|
+
"title": "Vehicle Subclass",
|
|
285
|
+
"type": "string",
|
|
286
|
+
"tsEnumNames": [
|
|
287
|
+
"A",
|
|
288
|
+
"C",
|
|
289
|
+
"S",
|
|
290
|
+
"L",
|
|
291
|
+
"M",
|
|
292
|
+
"N",
|
|
293
|
+
"P",
|
|
294
|
+
"T",
|
|
295
|
+
"R"
|
|
296
|
+
],
|
|
297
|
+
"enum": [
|
|
298
|
+
"a",
|
|
299
|
+
"c",
|
|
300
|
+
"s",
|
|
301
|
+
"l",
|
|
302
|
+
"m",
|
|
303
|
+
"n",
|
|
304
|
+
"p",
|
|
305
|
+
"t",
|
|
306
|
+
"r"
|
|
307
|
+
]
|
|
227
308
|
}
|
|
228
309
|
},
|
|
229
310
|
{
|
|
@@ -127,7 +127,102 @@
|
|
|
127
127
|
"hgv": {
|
|
128
128
|
"properties": {
|
|
129
129
|
"location": {
|
|
130
|
-
"
|
|
130
|
+
"title": "Defect Location Metadata Schema",
|
|
131
|
+
"type": "object",
|
|
132
|
+
"properties": {
|
|
133
|
+
"vertical": {
|
|
134
|
+
"anyOf": [
|
|
135
|
+
{
|
|
136
|
+
"type": "array",
|
|
137
|
+
"items": {
|
|
138
|
+
"type": "string"
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"type": "null"
|
|
143
|
+
}
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"horizontal": {
|
|
147
|
+
"anyOf": [
|
|
148
|
+
{
|
|
149
|
+
"type": "array",
|
|
150
|
+
"items": {
|
|
151
|
+
"type": "string"
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"type": "null"
|
|
156
|
+
}
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
"lateral": {
|
|
160
|
+
"anyOf": [
|
|
161
|
+
{
|
|
162
|
+
"type": "array",
|
|
163
|
+
"items": {
|
|
164
|
+
"type": "string"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"type": "null"
|
|
169
|
+
}
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
"longitudinal": {
|
|
173
|
+
"anyOf": [
|
|
174
|
+
{
|
|
175
|
+
"type": "array",
|
|
176
|
+
"items": {
|
|
177
|
+
"type": "string"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"type": "null"
|
|
182
|
+
}
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"rowNumber": {
|
|
186
|
+
"anyOf": [
|
|
187
|
+
{
|
|
188
|
+
"type": "array",
|
|
189
|
+
"items": {
|
|
190
|
+
"type": "number"
|
|
191
|
+
}
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"type": "null"
|
|
195
|
+
}
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
"seatNumber": {
|
|
199
|
+
"anyOf": [
|
|
200
|
+
{
|
|
201
|
+
"type": "array",
|
|
202
|
+
"items": {
|
|
203
|
+
"type": "integer"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"type": "null"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"axleNumber": {
|
|
212
|
+
"anyOf": [
|
|
213
|
+
{
|
|
214
|
+
"type": "array",
|
|
215
|
+
"items": {
|
|
216
|
+
"type": "number"
|
|
217
|
+
}
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
"type": "null"
|
|
221
|
+
}
|
|
222
|
+
]
|
|
223
|
+
}
|
|
224
|
+
},
|
|
225
|
+
"additionalProperties": false
|
|
131
226
|
},
|
|
132
227
|
"notes": {
|
|
133
228
|
"type": "boolean"
|
|
@@ -138,7 +233,102 @@
|
|
|
138
233
|
"trl": {
|
|
139
234
|
"properties": {
|
|
140
235
|
"location": {
|
|
141
|
-
"
|
|
236
|
+
"title": "Defect Location Metadata Schema",
|
|
237
|
+
"type": "object",
|
|
238
|
+
"properties": {
|
|
239
|
+
"vertical": {
|
|
240
|
+
"anyOf": [
|
|
241
|
+
{
|
|
242
|
+
"type": "array",
|
|
243
|
+
"items": {
|
|
244
|
+
"type": "string"
|
|
245
|
+
}
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"type": "null"
|
|
249
|
+
}
|
|
250
|
+
]
|
|
251
|
+
},
|
|
252
|
+
"horizontal": {
|
|
253
|
+
"anyOf": [
|
|
254
|
+
{
|
|
255
|
+
"type": "array",
|
|
256
|
+
"items": {
|
|
257
|
+
"type": "string"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"type": "null"
|
|
262
|
+
}
|
|
263
|
+
]
|
|
264
|
+
},
|
|
265
|
+
"lateral": {
|
|
266
|
+
"anyOf": [
|
|
267
|
+
{
|
|
268
|
+
"type": "array",
|
|
269
|
+
"items": {
|
|
270
|
+
"type": "string"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"type": "null"
|
|
275
|
+
}
|
|
276
|
+
]
|
|
277
|
+
},
|
|
278
|
+
"longitudinal": {
|
|
279
|
+
"anyOf": [
|
|
280
|
+
{
|
|
281
|
+
"type": "array",
|
|
282
|
+
"items": {
|
|
283
|
+
"type": "string"
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"type": "null"
|
|
288
|
+
}
|
|
289
|
+
]
|
|
290
|
+
},
|
|
291
|
+
"rowNumber": {
|
|
292
|
+
"anyOf": [
|
|
293
|
+
{
|
|
294
|
+
"type": "array",
|
|
295
|
+
"items": {
|
|
296
|
+
"type": "number"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
{
|
|
300
|
+
"type": "null"
|
|
301
|
+
}
|
|
302
|
+
]
|
|
303
|
+
},
|
|
304
|
+
"seatNumber": {
|
|
305
|
+
"anyOf": [
|
|
306
|
+
{
|
|
307
|
+
"type": "array",
|
|
308
|
+
"items": {
|
|
309
|
+
"type": "integer"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"type": "null"
|
|
314
|
+
}
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
"axleNumber": {
|
|
318
|
+
"anyOf": [
|
|
319
|
+
{
|
|
320
|
+
"type": "array",
|
|
321
|
+
"items": {
|
|
322
|
+
"type": "number"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"type": "null"
|
|
327
|
+
}
|
|
328
|
+
]
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
"additionalProperties": false
|
|
142
332
|
},
|
|
143
333
|
"notes": {
|
|
144
334
|
"type": "boolean"
|
|
@@ -283,7 +283,25 @@
|
|
|
283
283
|
"additionalProperties": false
|
|
284
284
|
},
|
|
285
285
|
"brakeForceWheelsUpToHalfLocked": {
|
|
286
|
-
"
|
|
286
|
+
"title": "Brake Force Wheel",
|
|
287
|
+
"type": "object",
|
|
288
|
+
"properties": {
|
|
289
|
+
"serviceBrakeForce": {
|
|
290
|
+
"type": "integer"
|
|
291
|
+
},
|
|
292
|
+
"secondaryBrakeForce": {
|
|
293
|
+
"type": "integer"
|
|
294
|
+
},
|
|
295
|
+
"parkingBrakeForce": {
|
|
296
|
+
"type": "integer"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"required": [
|
|
300
|
+
"serviceBrakeForce",
|
|
301
|
+
"secondaryBrakeForce",
|
|
302
|
+
"parkingBrakeForce"
|
|
303
|
+
],
|
|
304
|
+
"additionalProperties": false
|
|
287
305
|
},
|
|
288
306
|
"dtpNumber": {
|
|
289
307
|
"type": "string"
|
|
@@ -923,9 +923,14 @@
|
|
|
923
923
|
"maxLength": 100
|
|
924
924
|
},
|
|
925
925
|
"createdAt": {
|
|
926
|
-
"
|
|
927
|
-
|
|
928
|
-
|
|
926
|
+
"anyOf": [
|
|
927
|
+
{
|
|
928
|
+
"type": "string",
|
|
929
|
+
"format": "date-time"
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"type": "null"
|
|
933
|
+
}
|
|
929
934
|
]
|
|
930
935
|
},
|
|
931
936
|
"createdByEmailAddress": {
|
|
@@ -938,9 +943,14 @@
|
|
|
938
943
|
"type": "string"
|
|
939
944
|
},
|
|
940
945
|
"lastUpdatedAt": {
|
|
941
|
-
"
|
|
942
|
-
|
|
943
|
-
|
|
946
|
+
"anyOf": [
|
|
947
|
+
{
|
|
948
|
+
"type": "string",
|
|
949
|
+
"format": "date-time"
|
|
950
|
+
},
|
|
951
|
+
{
|
|
952
|
+
"type": "null"
|
|
953
|
+
}
|
|
944
954
|
]
|
|
945
955
|
},
|
|
946
956
|
"lastUpdatedByEmailAddress": {
|
|
@@ -1161,9 +1171,6 @@
|
|
|
1161
1171
|
},
|
|
1162
1172
|
"testResult": {
|
|
1163
1173
|
"anyOf": [
|
|
1164
|
-
{
|
|
1165
|
-
"type:": "null"
|
|
1166
|
-
},
|
|
1167
1174
|
{
|
|
1168
1175
|
"title": "Test Results",
|
|
1169
1176
|
"type": "string",
|
|
@@ -1179,6 +1186,9 @@
|
|
|
1179
1186
|
"fail",
|
|
1180
1187
|
"abandoned"
|
|
1181
1188
|
]
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"type": "null"
|
|
1182
1192
|
}
|
|
1183
1193
|
]
|
|
1184
1194
|
},
|
|
@@ -1264,9 +1274,6 @@
|
|
|
1264
1274
|
},
|
|
1265
1275
|
"emissionStandard": {
|
|
1266
1276
|
"anyOf": [
|
|
1267
|
-
{
|
|
1268
|
-
"type:": "null"
|
|
1269
|
-
},
|
|
1270
1277
|
{
|
|
1271
1278
|
"title": "Emission Standards",
|
|
1272
1279
|
"type": "string",
|
|
@@ -1292,14 +1299,14 @@
|
|
|
1292
1299
|
"Euro VI",
|
|
1293
1300
|
"Full Electric"
|
|
1294
1301
|
]
|
|
1302
|
+
},
|
|
1303
|
+
{
|
|
1304
|
+
"type": "null"
|
|
1295
1305
|
}
|
|
1296
1306
|
]
|
|
1297
1307
|
},
|
|
1298
1308
|
"fuelType": {
|
|
1299
1309
|
"anyOf": [
|
|
1300
|
-
{
|
|
1301
|
-
"type:": "null"
|
|
1302
|
-
},
|
|
1303
1310
|
{
|
|
1304
1311
|
"title": "Fuel Type",
|
|
1305
1312
|
"type": "string",
|
|
@@ -1321,6 +1328,9 @@
|
|
|
1321
1328
|
"fuel cell",
|
|
1322
1329
|
"full electric"
|
|
1323
1330
|
]
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
"type": "null"
|
|
1324
1334
|
}
|
|
1325
1335
|
]
|
|
1326
1336
|
},
|
|
@@ -1736,17 +1746,25 @@
|
|
|
1736
1746
|
]
|
|
1737
1747
|
},
|
|
1738
1748
|
"lastUpdatedAt": {
|
|
1739
|
-
"
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1749
|
+
"anyOf": [
|
|
1750
|
+
{
|
|
1751
|
+
"type": "string",
|
|
1752
|
+
"format": "date-time"
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"type": "null"
|
|
1756
|
+
}
|
|
1743
1757
|
]
|
|
1744
1758
|
},
|
|
1745
1759
|
"createdAt": {
|
|
1746
|
-
"
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1760
|
+
"anyOf": [
|
|
1761
|
+
{
|
|
1762
|
+
"type": "string",
|
|
1763
|
+
"format": "date-time"
|
|
1764
|
+
},
|
|
1765
|
+
{
|
|
1766
|
+
"type": "null"
|
|
1767
|
+
}
|
|
1750
1768
|
]
|
|
1751
1769
|
},
|
|
1752
1770
|
"testTypeClassification": {
|