@dvsa/cvs-type-definitions 8.1.0 → 9.1.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/enums/euVehicleCategory.enum.json +44 -0
- package/json-schemas/enums/vehicleSize.enum.json +12 -0
- package/json-schemas/enums/vehicleSubclass.enum.json +26 -0
- package/json-schemas/enums/vehicleType.enum.json +20 -0
- package/json-schemas/required-standards/defects/get/index.json +1 -72
- package/json-schemas/test-type/enums/testTypeClassification.enum.json +14 -0
- package/json-schemas/test-type/get/index.json +572 -0
- package/json-schemas/test-type/nextTestTypesOrCategory.json +416 -0
- package/json-schemas/test-type/testCode.json +266 -0
- package/json-schemas/v1/activity/index.json +12 -0
- package/json-schemas/v1/defect-category-reference-data/index.json +2 -192
- package/json-schemas/v1/enums/closureReason.enum.json +12 -0
- package/json-schemas/v1/tech-record/index.json +1 -19
- package/json-schemas/v1/test/index.json +438 -21
- package/json-schemas/v1/test-result/index.json +1128 -1
- package/json-schemas/v1/{test-type → test-result-test-type}/index.json +1 -1
- package/json-schemas/v1/vehicle/index.json +438 -21
- package/json-schemas/v1/vehicle-tech-record/index.json +1 -19
- package/json-schemas/v1/visit/index.json +438 -21
- package/json-schemas/v3/tech-record/get/psv/complete/index.json +1 -10
- package/json-schemas/v3/tech-record/get/psv/skeleton/index.json +1 -10
- package/json-schemas/v3/tech-record/get/psv/testable/index.json +1 -10
- package/json-schemas/v3/tech-record/put/psv/complete/index.json +1 -10
- package/json-schemas/v3/tech-record/put/psv/skeleton/index.json +1 -10
- package/json-schemas/v3/tech-record/put/psv/testable/index.json +1 -10
- package/package.json +2 -1
- package/schemas.d.ts +1 -1
- package/schemas.js +11 -2
- package/types/enums/euVehicleCategory.enum.d.ts +25 -0
- package/types/enums/euVehicleCategory.enum.js +30 -0
- package/types/enums/euVehicleCategory.enum.ts +27 -0
- package/types/enums/vehicleSize.enum.d.ts +9 -0
- package/types/enums/vehicleSize.enum.js +14 -0
- package/types/enums/vehicleSize.enum.ts +11 -0
- package/types/enums/vehicleSubclass.enum.d.ts +16 -0
- package/types/enums/vehicleSubclass.enum.js +21 -0
- package/types/enums/vehicleSubclass.enum.ts +18 -0
- package/types/enums/vehicleType.enum.d.ts +13 -0
- package/types/enums/vehicleType.enum.js +18 -0
- package/types/enums/vehicleType.enum.ts +15 -0
- package/types/test-type/enums/testTypeClassification.enum.d.ts +10 -0
- package/types/test-type/enums/testTypeClassification.enum.js +15 -0
- package/types/test-type/enums/testTypeClassification.enum.ts +12 -0
- package/types/test-type/get/index.d.ts +128 -0
- package/types/test-type/nextTestTypesOrCategory.d.ts +124 -0
- package/types/test-type/testCode.d.ts +79 -0
- package/types/v1/activity/index.d.ts +5 -0
- package/types/v1/enums/closureReason.enum.d.ts +9 -0
- package/types/v1/enums/closureReason.enum.js +14 -0
- package/types/v1/enums/closureReason.enum.ts +11 -0
- package/types/v1/test/index.d.ts +3 -3
- package/types/v1/test-result/index.d.ts +2 -2
- package/types/v1/{test-type → test-result-test-type}/index.d.ts +1 -1
- package/types/v1/vehicle/index.d.ts +3 -3
- package/types/v1/visit/index.d.ts +3 -3
- /package/json-schemas/{v3/tech-record/enums → enums}/vehicleConfiguration.enum.json +0 -0
- /package/types/{v3/tech-record/enums → enums}/vehicleConfiguration.enum.d.ts +0 -0
- /package/types/{v3/tech-record/enums → enums}/vehicleConfiguration.enum.js +0 -0
- /package/types/{v3/tech-record/enums → enums}/vehicleConfiguration.enum.ts +0 -0
|
@@ -0,0 +1,572 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "GET Test Type Schema",
|
|
3
|
+
"type": "object",
|
|
4
|
+
"additionalProperties": false,
|
|
5
|
+
"required": [
|
|
6
|
+
"id",
|
|
7
|
+
"sortId",
|
|
8
|
+
"linkedIds",
|
|
9
|
+
"name",
|
|
10
|
+
"forVehicleType",
|
|
11
|
+
"forVehicleSize",
|
|
12
|
+
"forVehicleConfiguration",
|
|
13
|
+
"forVehicleAxles",
|
|
14
|
+
"forEuVehicleCategory",
|
|
15
|
+
"forVehicleClass",
|
|
16
|
+
"forVehicleSubclass",
|
|
17
|
+
"forVehicleWheels"
|
|
18
|
+
],
|
|
19
|
+
"properties": {
|
|
20
|
+
"typeOfTest": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
},
|
|
23
|
+
"id": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
},
|
|
26
|
+
"sortId": {
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"linkedIds": {
|
|
30
|
+
"type": [
|
|
31
|
+
"array",
|
|
32
|
+
"null"
|
|
33
|
+
],
|
|
34
|
+
"items": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
}
|
|
37
|
+
},
|
|
38
|
+
"suggestedTestTypeIds": {
|
|
39
|
+
"type": "array",
|
|
40
|
+
"items": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"name": {
|
|
45
|
+
"type": "string"
|
|
46
|
+
},
|
|
47
|
+
"testTypeName": {
|
|
48
|
+
"type": "string"
|
|
49
|
+
},
|
|
50
|
+
"suggestedTestTypeDisplayName": {
|
|
51
|
+
"type": "string"
|
|
52
|
+
},
|
|
53
|
+
"suggestedTestTypeDisplayOrder": {
|
|
54
|
+
"type": "string"
|
|
55
|
+
},
|
|
56
|
+
"forVehicleType": {
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"title": "Vehicle Type",
|
|
60
|
+
"type": "string",
|
|
61
|
+
"tsEnumNames": [
|
|
62
|
+
"HGV",
|
|
63
|
+
"PSV",
|
|
64
|
+
"TRL",
|
|
65
|
+
"LGV",
|
|
66
|
+
"CAR",
|
|
67
|
+
"MOTORCYCLE"
|
|
68
|
+
],
|
|
69
|
+
"enum": [
|
|
70
|
+
"hgv",
|
|
71
|
+
"psv",
|
|
72
|
+
"trl",
|
|
73
|
+
"lgv",
|
|
74
|
+
"car",
|
|
75
|
+
"motorcycle"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
"forProvisionalStatus": {
|
|
80
|
+
"type": "boolean"
|
|
81
|
+
},
|
|
82
|
+
"forProvisionalStatusOnly": {
|
|
83
|
+
"type": "boolean"
|
|
84
|
+
},
|
|
85
|
+
"forVehicleSize": {
|
|
86
|
+
"type": [
|
|
87
|
+
"array",
|
|
88
|
+
"null"
|
|
89
|
+
],
|
|
90
|
+
"items": {
|
|
91
|
+
"title": "Vehicle Size",
|
|
92
|
+
"type": "string",
|
|
93
|
+
"tsEnumNames": [
|
|
94
|
+
"LARGE",
|
|
95
|
+
"SMALL"
|
|
96
|
+
],
|
|
97
|
+
"enum": [
|
|
98
|
+
"large",
|
|
99
|
+
"small"
|
|
100
|
+
]
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"forVehicleConfiguration": {
|
|
104
|
+
"type": [
|
|
105
|
+
"array",
|
|
106
|
+
"null"
|
|
107
|
+
],
|
|
108
|
+
"items": {
|
|
109
|
+
"title": "Vehicle Configuration",
|
|
110
|
+
"type": "string",
|
|
111
|
+
"tsEnumNames": [
|
|
112
|
+
"RIGID",
|
|
113
|
+
"ARTICULATED",
|
|
114
|
+
"CENTRE_AXLE_DRAWBAR",
|
|
115
|
+
"SEMI_CAR_TRANSPORTER",
|
|
116
|
+
"SEMI_TRAILER",
|
|
117
|
+
"LONG_SEMI_TRAILER",
|
|
118
|
+
"LOW_LOADER",
|
|
119
|
+
"OTHER",
|
|
120
|
+
"DRAWBAR",
|
|
121
|
+
"FOUR_IN_LINE",
|
|
122
|
+
"DOLLY",
|
|
123
|
+
"FULL_DRAWBAR"
|
|
124
|
+
],
|
|
125
|
+
"enum": [
|
|
126
|
+
"rigid",
|
|
127
|
+
"articulated",
|
|
128
|
+
"centre axle drawbar",
|
|
129
|
+
"semi-car transporter",
|
|
130
|
+
"semi-trailer",
|
|
131
|
+
"long semi-trailer",
|
|
132
|
+
"low loader",
|
|
133
|
+
"other",
|
|
134
|
+
"drawbar",
|
|
135
|
+
"four-in-line",
|
|
136
|
+
"dolly",
|
|
137
|
+
"full drawbar"
|
|
138
|
+
]
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
"forVehicleAxles": {
|
|
142
|
+
"type": [
|
|
143
|
+
"array",
|
|
144
|
+
"null"
|
|
145
|
+
],
|
|
146
|
+
"items": {
|
|
147
|
+
"type": "integer"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"forEuVehicleCategory": {
|
|
151
|
+
"type": [
|
|
152
|
+
"array",
|
|
153
|
+
"null"
|
|
154
|
+
],
|
|
155
|
+
"items": {
|
|
156
|
+
"title": "EU Vehicle Category",
|
|
157
|
+
"type": "string",
|
|
158
|
+
"tsEnumNames": [
|
|
159
|
+
"M1",
|
|
160
|
+
"M2",
|
|
161
|
+
"M3",
|
|
162
|
+
"N1",
|
|
163
|
+
"N2",
|
|
164
|
+
"N3",
|
|
165
|
+
"O1",
|
|
166
|
+
"O2",
|
|
167
|
+
"O3",
|
|
168
|
+
"O4",
|
|
169
|
+
"L1E_A",
|
|
170
|
+
"L1E",
|
|
171
|
+
"L2E",
|
|
172
|
+
"L3E",
|
|
173
|
+
"L4E",
|
|
174
|
+
"L5E",
|
|
175
|
+
"L6E",
|
|
176
|
+
"L7E"
|
|
177
|
+
],
|
|
178
|
+
"enum": [
|
|
179
|
+
"m1",
|
|
180
|
+
"m2",
|
|
181
|
+
"m3",
|
|
182
|
+
"n1",
|
|
183
|
+
"n2",
|
|
184
|
+
"n3",
|
|
185
|
+
"o1",
|
|
186
|
+
"o2",
|
|
187
|
+
"o3",
|
|
188
|
+
"o4",
|
|
189
|
+
"l1e-a",
|
|
190
|
+
"l1e",
|
|
191
|
+
"l2e",
|
|
192
|
+
"l3e",
|
|
193
|
+
"l4e",
|
|
194
|
+
"l5e",
|
|
195
|
+
"l6e",
|
|
196
|
+
"l7e"
|
|
197
|
+
]
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"forVehicleClass": {
|
|
201
|
+
"type": [
|
|
202
|
+
"array",
|
|
203
|
+
"null"
|
|
204
|
+
],
|
|
205
|
+
"items": {
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"forVehicleSubclass": {
|
|
210
|
+
"type": [
|
|
211
|
+
"array",
|
|
212
|
+
"null"
|
|
213
|
+
],
|
|
214
|
+
"items": {
|
|
215
|
+
"title": "Vehicle Subclass",
|
|
216
|
+
"type": "string",
|
|
217
|
+
"tsEnumNames": [
|
|
218
|
+
"A",
|
|
219
|
+
"C",
|
|
220
|
+
"S",
|
|
221
|
+
"L",
|
|
222
|
+
"M",
|
|
223
|
+
"N",
|
|
224
|
+
"P",
|
|
225
|
+
"T",
|
|
226
|
+
"R"
|
|
227
|
+
],
|
|
228
|
+
"enum": [
|
|
229
|
+
"a",
|
|
230
|
+
"c",
|
|
231
|
+
"s",
|
|
232
|
+
"l",
|
|
233
|
+
"m",
|
|
234
|
+
"n",
|
|
235
|
+
"p",
|
|
236
|
+
"t",
|
|
237
|
+
"r"
|
|
238
|
+
]
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"forVehicleWheels": {
|
|
242
|
+
"type": [
|
|
243
|
+
"array",
|
|
244
|
+
"null"
|
|
245
|
+
],
|
|
246
|
+
"items": {
|
|
247
|
+
"type": "integer"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"testTypeClassification": {
|
|
251
|
+
"anyOf": [
|
|
252
|
+
{
|
|
253
|
+
"title": "Test Type Classification",
|
|
254
|
+
"type": "string",
|
|
255
|
+
"tsEnumNames": [
|
|
256
|
+
"ANNUAL_NO_CERTIFICATE",
|
|
257
|
+
"ANNUAL_WITH_CERTIFICATE",
|
|
258
|
+
"NON_ANNUAL"
|
|
259
|
+
],
|
|
260
|
+
"enum": [
|
|
261
|
+
"Annual NO CERTIFICATE",
|
|
262
|
+
"Annual With Certificate",
|
|
263
|
+
"NON ANNUAL"
|
|
264
|
+
]
|
|
265
|
+
}
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
"testCodes": {
|
|
269
|
+
"type": "array",
|
|
270
|
+
"items": {
|
|
271
|
+
"anyOf": [
|
|
272
|
+
{
|
|
273
|
+
"title": "TestCode Schema",
|
|
274
|
+
"type": "object",
|
|
275
|
+
"additionalProperties": false,
|
|
276
|
+
"required": [
|
|
277
|
+
"forVehicleType",
|
|
278
|
+
"forVehicleSize",
|
|
279
|
+
"forVehicleConfiguration",
|
|
280
|
+
"forVehicleAxles",
|
|
281
|
+
"forEuVehicleCategory",
|
|
282
|
+
"forVehicleClass",
|
|
283
|
+
"forVehicleSubclass",
|
|
284
|
+
"forVehicleWheels",
|
|
285
|
+
"defaultTestCode",
|
|
286
|
+
"linkedTestCode"
|
|
287
|
+
],
|
|
288
|
+
"properties": {
|
|
289
|
+
"forVehicleType": {
|
|
290
|
+
"anyOf": [
|
|
291
|
+
{
|
|
292
|
+
"$ref": "#/properties/forVehicleType/items"
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"type": "array",
|
|
296
|
+
"items": {
|
|
297
|
+
"$ref": "#/properties/forVehicleType/items"
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
"forVehicleSize": {
|
|
303
|
+
"anyOf": [
|
|
304
|
+
{
|
|
305
|
+
"$ref": "#/properties/forVehicleSize/items"
|
|
306
|
+
},
|
|
307
|
+
{
|
|
308
|
+
"type": "null"
|
|
309
|
+
}
|
|
310
|
+
]
|
|
311
|
+
},
|
|
312
|
+
"forVehicleConfiguration": {
|
|
313
|
+
"anyOf": [
|
|
314
|
+
{
|
|
315
|
+
"$ref": "#/properties/forVehicleConfiguration/items"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"type": "null"
|
|
319
|
+
}
|
|
320
|
+
]
|
|
321
|
+
},
|
|
322
|
+
"forVehicleAxles": {
|
|
323
|
+
"anyOf": [
|
|
324
|
+
{
|
|
325
|
+
"type": "integer"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"type": "array",
|
|
329
|
+
"items": {
|
|
330
|
+
"type": "integer"
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"type": "null"
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
},
|
|
338
|
+
"forEuVehicleCategory": {
|
|
339
|
+
"anyOf": [
|
|
340
|
+
{
|
|
341
|
+
"$ref": "#/properties/forEuVehicleCategory/items"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"type": "array",
|
|
345
|
+
"items": {
|
|
346
|
+
"$ref": "#/properties/forEuVehicleCategory/items"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"type": "null"
|
|
351
|
+
}
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
"forVehicleClass": {
|
|
355
|
+
"anyOf": [
|
|
356
|
+
{
|
|
357
|
+
"type": "string"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"type": "array",
|
|
361
|
+
"items": {
|
|
362
|
+
"type": "string"
|
|
363
|
+
}
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"type": "null"
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
},
|
|
370
|
+
"forVehicleSubclass": {
|
|
371
|
+
"anyOf": [
|
|
372
|
+
{
|
|
373
|
+
"$ref": "#/properties/forVehicleSubclass/items"
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"type": "array",
|
|
377
|
+
"items": {
|
|
378
|
+
"$ref": "#/properties/forVehicleSubclass/items"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"type": "null"
|
|
383
|
+
}
|
|
384
|
+
]
|
|
385
|
+
},
|
|
386
|
+
"forVehicleWheels": {
|
|
387
|
+
"anyOf": [
|
|
388
|
+
{
|
|
389
|
+
"type": "integer"
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"type": "array",
|
|
393
|
+
"items": {
|
|
394
|
+
"type": "integer"
|
|
395
|
+
}
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"type": "null"
|
|
399
|
+
}
|
|
400
|
+
]
|
|
401
|
+
},
|
|
402
|
+
"defaultTestCode": {
|
|
403
|
+
"type": "string"
|
|
404
|
+
},
|
|
405
|
+
"linkedTestCode": {
|
|
406
|
+
"type": [
|
|
407
|
+
"string",
|
|
408
|
+
"null"
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
"forProvisionalStatus": {
|
|
412
|
+
"type": "boolean"
|
|
413
|
+
},
|
|
414
|
+
"forProvisionalStatusOnly": {
|
|
415
|
+
"type": "boolean"
|
|
416
|
+
}
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
]
|
|
420
|
+
}
|
|
421
|
+
},
|
|
422
|
+
"nextTestTypesOrCategories": {
|
|
423
|
+
"type": "array",
|
|
424
|
+
"items": {
|
|
425
|
+
"anyOf": [
|
|
426
|
+
{
|
|
427
|
+
"title": "NextTestTypesOrCategory Schema",
|
|
428
|
+
"type": "object",
|
|
429
|
+
"additionalProperties": false,
|
|
430
|
+
"required": [
|
|
431
|
+
"id",
|
|
432
|
+
"linkedIds",
|
|
433
|
+
"name",
|
|
434
|
+
"forVehicleType",
|
|
435
|
+
"forVehicleSize",
|
|
436
|
+
"forVehicleConfiguration",
|
|
437
|
+
"forVehicleAxles",
|
|
438
|
+
"forEuVehicleCategory",
|
|
439
|
+
"forVehicleClass",
|
|
440
|
+
"forVehicleSubclass",
|
|
441
|
+
"forVehicleWheels"
|
|
442
|
+
],
|
|
443
|
+
"properties": {
|
|
444
|
+
"typeOfTest": {
|
|
445
|
+
"type": "string"
|
|
446
|
+
},
|
|
447
|
+
"id": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
},
|
|
450
|
+
"linkedIds": {
|
|
451
|
+
"type": [
|
|
452
|
+
"array",
|
|
453
|
+
"null"
|
|
454
|
+
],
|
|
455
|
+
"items": {
|
|
456
|
+
"type": "string"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"name": {
|
|
460
|
+
"type": "string"
|
|
461
|
+
},
|
|
462
|
+
"testTypeName": {
|
|
463
|
+
"type": "string"
|
|
464
|
+
},
|
|
465
|
+
"forVehicleType": {
|
|
466
|
+
"anyOf": [
|
|
467
|
+
{
|
|
468
|
+
"$ref": "#/properties/forVehicleType/items"
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"type": "array",
|
|
472
|
+
"items": {
|
|
473
|
+
"$ref": "#/properties/forVehicleType/items"
|
|
474
|
+
}
|
|
475
|
+
}
|
|
476
|
+
]
|
|
477
|
+
},
|
|
478
|
+
"forProvisionalStatus": {
|
|
479
|
+
"type": "boolean"
|
|
480
|
+
},
|
|
481
|
+
"forProvisionalStatusOnly": {
|
|
482
|
+
"type": "boolean"
|
|
483
|
+
},
|
|
484
|
+
"forVehicleSize": {
|
|
485
|
+
"type": [
|
|
486
|
+
"array",
|
|
487
|
+
"null"
|
|
488
|
+
],
|
|
489
|
+
"items": {
|
|
490
|
+
"$ref": "#/properties/forVehicleSize/items"
|
|
491
|
+
}
|
|
492
|
+
},
|
|
493
|
+
"forVehicleConfiguration": {
|
|
494
|
+
"type": [
|
|
495
|
+
"array",
|
|
496
|
+
"null"
|
|
497
|
+
],
|
|
498
|
+
"items": {
|
|
499
|
+
"$ref": "#/properties/forVehicleConfiguration/items"
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
"forVehicleAxles": {
|
|
503
|
+
"type": [
|
|
504
|
+
"array",
|
|
505
|
+
"null"
|
|
506
|
+
],
|
|
507
|
+
"items": {
|
|
508
|
+
"type": "integer"
|
|
509
|
+
}
|
|
510
|
+
},
|
|
511
|
+
"forEuVehicleCategory": {
|
|
512
|
+
"type": [
|
|
513
|
+
"array",
|
|
514
|
+
"null"
|
|
515
|
+
],
|
|
516
|
+
"items": {
|
|
517
|
+
"$ref": "#/properties/forEuVehicleCategory/items"
|
|
518
|
+
}
|
|
519
|
+
},
|
|
520
|
+
"forVehicleClass": {
|
|
521
|
+
"type": [
|
|
522
|
+
"array",
|
|
523
|
+
"null"
|
|
524
|
+
],
|
|
525
|
+
"items": {
|
|
526
|
+
"type": "string"
|
|
527
|
+
}
|
|
528
|
+
},
|
|
529
|
+
"forVehicleSubclass": {
|
|
530
|
+
"type": [
|
|
531
|
+
"array",
|
|
532
|
+
"null"
|
|
533
|
+
],
|
|
534
|
+
"items": {
|
|
535
|
+
"$ref": "#/properties/forVehicleSubclass/items"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"forVehicleWheels": {
|
|
539
|
+
"type": [
|
|
540
|
+
"array",
|
|
541
|
+
"null"
|
|
542
|
+
],
|
|
543
|
+
"items": {
|
|
544
|
+
"type": "integer"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"testTypeClassification": {
|
|
548
|
+
"anyOf": [
|
|
549
|
+
{
|
|
550
|
+
"$ref": "#/properties/testTypeClassification/anyOf/0"
|
|
551
|
+
}
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
"testCodes": {
|
|
555
|
+
"type": "array",
|
|
556
|
+
"items": {
|
|
557
|
+
"$ref": "#/properties/testCodes/items/anyOf/0"
|
|
558
|
+
}
|
|
559
|
+
},
|
|
560
|
+
"nextTestTypesOrCategories": {
|
|
561
|
+
"type": "array",
|
|
562
|
+
"items": {
|
|
563
|
+
"$ref": "#/properties/nextTestTypesOrCategories/items/anyOf/0"
|
|
564
|
+
}
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
}
|
|
572
|
+
}
|