@dvsa/cvs-type-definitions 3.0.44 → 3.0.45
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/v3/tech-record/get/hgv/skeleton/index.json +17 -25
- package/json-schemas/v3/tech-record/get/hgv/testable/index.json +7 -15
- package/json-schemas/v3/tech-record/get/lgv/complete/index.json +3 -5
- package/json-schemas/v3/tech-record/get/motorcycle/complete/index.json +17 -23
- package/json-schemas/v3/tech-record/put/car/complete/index.json +20 -1
- package/json-schemas/v3/tech-record/put/car/skeleton/index.json +25 -0
- package/json-schemas/v3/tech-record/put/hgv/skeleton/index.json +17 -25
- package/json-schemas/v3/tech-record/put/hgv/testable/index.json +6 -11
- package/json-schemas/v3/tech-record/put/lgv/complete/index.json +3 -5
- package/json-schemas/v3/tech-record/put/motorcycle/complete/index.json +16 -22
- package/json-schemas/v3/tech-record/put/psv/testable/index.json +3 -5
- package/json-schemas/v3/tech-record/put/small trl/complete/index.json +25 -18
- package/package.json +1 -1
- package/types/v3/tech-record/get/hgv/skeleton/index.d.ts +2 -2
- package/types/v3/tech-record/get/hgv/testable/index.d.ts +2 -2
- package/types/v3/tech-record/get/lgv/complete/index.d.ts +1 -1
- package/types/v3/tech-record/get/motorcycle/complete/index.d.ts +1 -1
- package/types/v3/tech-record/put/car/complete/index.d.ts +14 -0
- package/types/v3/tech-record/put/car/skeleton/index.d.ts +14 -0
- package/types/v3/tech-record/put/hgv/skeleton/index.d.ts +2 -2
- package/types/v3/tech-record/put/hgv/testable/index.d.ts +2 -2
- package/types/v3/tech-record/put/lgv/complete/index.d.ts +1 -1
- package/types/v3/tech-record/put/motorcycle/complete/index.d.ts +1 -1
- package/types/v3/tech-record/put/psv/testable/index.d.ts +1 -1
- package/types/v3/tech-record/put/small trl/complete/index.d.ts +1 -1
|
@@ -13,6 +13,8 @@
|
|
|
13
13
|
"techRecord_recordCompleteness",
|
|
14
14
|
"techRecord_statusCode",
|
|
15
15
|
"techRecord_vehicleType",
|
|
16
|
+
"techRecord_vehicleClass_description",
|
|
17
|
+
"techRecord_bodyType_description",
|
|
16
18
|
"primaryVrm",
|
|
17
19
|
"vin"
|
|
18
20
|
],
|
|
@@ -504,10 +506,7 @@
|
|
|
504
506
|
]
|
|
505
507
|
},
|
|
506
508
|
"techRecord_bodyType_description": {
|
|
507
|
-
"type":
|
|
508
|
-
"null",
|
|
509
|
-
"string"
|
|
510
|
-
]
|
|
509
|
+
"type": "string"
|
|
511
510
|
},
|
|
512
511
|
"techRecord_brakes_dtpNumber": {
|
|
513
512
|
"type": [
|
|
@@ -1028,27 +1027,20 @@
|
|
|
1028
1027
|
]
|
|
1029
1028
|
},
|
|
1030
1029
|
"techRecord_vehicleClass_description": {
|
|
1031
|
-
"
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
"3 wheelers",
|
|
1046
|
-
"heavy goods vehicle",
|
|
1047
|
-
"MOT class 4",
|
|
1048
|
-
"MOT class 7",
|
|
1049
|
-
"MOT class 5"
|
|
1050
|
-
]
|
|
1051
|
-
}
|
|
1030
|
+
"title": "Vehicle Class Description",
|
|
1031
|
+
"type": "string",
|
|
1032
|
+
"enum": [
|
|
1033
|
+
"motorbikes over 200cc or with a sidecar",
|
|
1034
|
+
"not applicable",
|
|
1035
|
+
"small psv (ie: less than or equal to 22 seats)",
|
|
1036
|
+
"motorbikes up to 200cc",
|
|
1037
|
+
"trailer",
|
|
1038
|
+
"large psv(ie: greater than 23 seats)",
|
|
1039
|
+
"3 wheelers",
|
|
1040
|
+
"heavy goods vehicle",
|
|
1041
|
+
"MOT class 4",
|
|
1042
|
+
"MOT class 7",
|
|
1043
|
+
"MOT class 5"
|
|
1052
1044
|
]
|
|
1053
1045
|
},
|
|
1054
1046
|
"techRecord_vehicleConfiguration": {
|
|
@@ -18,7 +18,9 @@
|
|
|
18
18
|
"techRecord_vehicleConfiguration",
|
|
19
19
|
"techRecord_vehicleClass_code",
|
|
20
20
|
"techRecord_vehicleClass_description",
|
|
21
|
-
"techRecord_numberOfWheelsDriven"
|
|
21
|
+
"techRecord_numberOfWheelsDriven",
|
|
22
|
+
"techRecord_noOfAxles",
|
|
23
|
+
"techRecord_bodyType_description"
|
|
22
24
|
],
|
|
23
25
|
"properties": {
|
|
24
26
|
"secondaryVrms": {
|
|
@@ -505,10 +507,7 @@
|
|
|
505
507
|
]
|
|
506
508
|
},
|
|
507
509
|
"techRecord_bodyType_description": {
|
|
508
|
-
"type":
|
|
509
|
-
"null",
|
|
510
|
-
"string"
|
|
511
|
-
]
|
|
510
|
+
"type": "string"
|
|
512
511
|
},
|
|
513
512
|
"techRecord_brakes_dtpNumber": {
|
|
514
513
|
"type": [
|
|
@@ -865,16 +864,9 @@
|
|
|
865
864
|
"type": "integer"
|
|
866
865
|
},
|
|
867
866
|
"techRecord_noOfAxles": {
|
|
868
|
-
"
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
"minimum": 0,
|
|
872
|
-
"maximum": 99
|
|
873
|
-
},
|
|
874
|
-
{
|
|
875
|
-
"type": "null"
|
|
876
|
-
}
|
|
877
|
-
]
|
|
867
|
+
"type": "integer",
|
|
868
|
+
"minimum": 0,
|
|
869
|
+
"maximum": 99
|
|
878
870
|
},
|
|
879
871
|
"techRecord_notes": {
|
|
880
872
|
"type": [
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"techRecord_createdAt",
|
|
12
12
|
"techRecord_createdById",
|
|
13
13
|
"techRecord_createdByName",
|
|
14
|
-
"techRecord_reasonForCreation"
|
|
14
|
+
"techRecord_reasonForCreation",
|
|
15
|
+
"techRecord_noOfAxles"
|
|
15
16
|
],
|
|
16
17
|
"properties": {
|
|
17
18
|
"techRecord_applicantDetails_name": {
|
|
@@ -161,10 +162,7 @@
|
|
|
161
162
|
]
|
|
162
163
|
},
|
|
163
164
|
"techRecord_noOfAxles": {
|
|
164
|
-
"type":
|
|
165
|
-
"null",
|
|
166
|
-
"integer"
|
|
167
|
-
]
|
|
165
|
+
"type": "integer"
|
|
168
166
|
},
|
|
169
167
|
"techRecord_notes": {
|
|
170
168
|
"type": [
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"techRecord_vehicleType",
|
|
16
16
|
"createdTimestamp",
|
|
17
17
|
"partialVin",
|
|
18
|
-
"vin"
|
|
18
|
+
"vin",
|
|
19
|
+
"techRecord_vehicleConfiguration"
|
|
19
20
|
],
|
|
20
21
|
"properties": {
|
|
21
22
|
"secondaryVrms": {
|
|
@@ -231,28 +232,21 @@
|
|
|
231
232
|
"type": "string"
|
|
232
233
|
},
|
|
233
234
|
"techRecord_vehicleConfiguration": {
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
"other",
|
|
250
|
-
"drawbar",
|
|
251
|
-
"four-in-line",
|
|
252
|
-
"dolly",
|
|
253
|
-
"full drawbar"
|
|
254
|
-
]
|
|
255
|
-
}
|
|
235
|
+
"title": "Vehicle Configuration",
|
|
236
|
+
"type": "string",
|
|
237
|
+
"enum": [
|
|
238
|
+
"rigid",
|
|
239
|
+
"articulated",
|
|
240
|
+
"centre axle drawbar",
|
|
241
|
+
"semi-car transporter",
|
|
242
|
+
"semi-trailer",
|
|
243
|
+
"long semi-trailer",
|
|
244
|
+
"low loader",
|
|
245
|
+
"other",
|
|
246
|
+
"drawbar",
|
|
247
|
+
"four-in-line",
|
|
248
|
+
"dolly",
|
|
249
|
+
"full drawbar"
|
|
256
250
|
]
|
|
257
251
|
},
|
|
258
252
|
"techRecord_vehicleType": {
|
|
@@ -8,7 +8,8 @@
|
|
|
8
8
|
"techRecord_vehicleType",
|
|
9
9
|
"techRecord_statusCode",
|
|
10
10
|
"techRecord_noOfAxles",
|
|
11
|
-
"techRecord_reasonForCreation"
|
|
11
|
+
"techRecord_reasonForCreation",
|
|
12
|
+
"techRecord_vehicleConfiguration"
|
|
12
13
|
],
|
|
13
14
|
"properties": {
|
|
14
15
|
"vin": {
|
|
@@ -94,6 +95,24 @@
|
|
|
94
95
|
"type": "string"
|
|
95
96
|
}
|
|
96
97
|
},
|
|
98
|
+
"techRecord_vehicleConfiguration": {
|
|
99
|
+
"title": "Vehicle Configuration",
|
|
100
|
+
"type": "string",
|
|
101
|
+
"enum": [
|
|
102
|
+
"rigid",
|
|
103
|
+
"articulated",
|
|
104
|
+
"centre axle drawbar",
|
|
105
|
+
"semi-car transporter",
|
|
106
|
+
"semi-trailer",
|
|
107
|
+
"long semi-trailer",
|
|
108
|
+
"low loader",
|
|
109
|
+
"other",
|
|
110
|
+
"drawbar",
|
|
111
|
+
"four-in-line",
|
|
112
|
+
"dolly",
|
|
113
|
+
"full drawbar"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
97
116
|
"techRecord_euVehicleCategory": {
|
|
98
117
|
"anyOf": [
|
|
99
118
|
{
|
|
@@ -95,6 +95,31 @@
|
|
|
95
95
|
]
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
|
+
"techRecord_vehicleConfiguration": {
|
|
99
|
+
"anyOf": [
|
|
100
|
+
{
|
|
101
|
+
"type": "null"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"title": "Vehicle Configuration",
|
|
105
|
+
"type": "string",
|
|
106
|
+
"enum": [
|
|
107
|
+
"rigid",
|
|
108
|
+
"articulated",
|
|
109
|
+
"centre axle drawbar",
|
|
110
|
+
"semi-car transporter",
|
|
111
|
+
"semi-trailer",
|
|
112
|
+
"long semi-trailer",
|
|
113
|
+
"low loader",
|
|
114
|
+
"other",
|
|
115
|
+
"drawbar",
|
|
116
|
+
"four-in-line",
|
|
117
|
+
"dolly",
|
|
118
|
+
"full drawbar"
|
|
119
|
+
]
|
|
120
|
+
}
|
|
121
|
+
]
|
|
122
|
+
},
|
|
98
123
|
"techRecord_euVehicleCategory": {
|
|
99
124
|
"anyOf": [
|
|
100
125
|
{
|
|
@@ -6,6 +6,8 @@
|
|
|
6
6
|
"techRecord_reasonForCreation",
|
|
7
7
|
"techRecord_statusCode",
|
|
8
8
|
"techRecord_vehicleType",
|
|
9
|
+
"techRecord_vehicleClass_description",
|
|
10
|
+
"techRecord_bodyType_description",
|
|
9
11
|
"vin"
|
|
10
12
|
],
|
|
11
13
|
"properties": {
|
|
@@ -490,10 +492,7 @@
|
|
|
490
492
|
]
|
|
491
493
|
},
|
|
492
494
|
"techRecord_bodyType_description": {
|
|
493
|
-
"type":
|
|
494
|
-
"null",
|
|
495
|
-
"string"
|
|
496
|
-
]
|
|
495
|
+
"type": "string"
|
|
497
496
|
},
|
|
498
497
|
"techRecord_brakes_dtpNumber": {
|
|
499
498
|
"type": [
|
|
@@ -987,27 +986,20 @@
|
|
|
987
986
|
"maxLength": 2
|
|
988
987
|
},
|
|
989
988
|
"techRecord_vehicleClass_description": {
|
|
990
|
-
"
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
"3 wheelers",
|
|
1005
|
-
"heavy goods vehicle",
|
|
1006
|
-
"MOT class 4",
|
|
1007
|
-
"MOT class 7",
|
|
1008
|
-
"MOT class 5"
|
|
1009
|
-
]
|
|
1010
|
-
}
|
|
989
|
+
"title": "Vehicle Class Description",
|
|
990
|
+
"type": "string",
|
|
991
|
+
"enum": [
|
|
992
|
+
"motorbikes over 200cc or with a sidecar",
|
|
993
|
+
"not applicable",
|
|
994
|
+
"small psv (ie: less than or equal to 22 seats)",
|
|
995
|
+
"motorbikes up to 200cc",
|
|
996
|
+
"trailer",
|
|
997
|
+
"large psv(ie: greater than 23 seats)",
|
|
998
|
+
"3 wheelers",
|
|
999
|
+
"heavy goods vehicle",
|
|
1000
|
+
"MOT class 4",
|
|
1001
|
+
"MOT class 7",
|
|
1002
|
+
"MOT class 5"
|
|
1011
1003
|
]
|
|
1012
1004
|
},
|
|
1013
1005
|
"techRecord_vehicleConfiguration": {
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
"techRecord_vehicleType",
|
|
9
9
|
"vin",
|
|
10
10
|
"techRecord_vehicleConfiguration",
|
|
11
|
-
"techRecord_vehicleClass_description"
|
|
11
|
+
"techRecord_vehicleClass_description",
|
|
12
|
+
"techRecord_noOfAxles",
|
|
13
|
+
"techRecord_bodyType_description"
|
|
12
14
|
],
|
|
13
15
|
"properties": {
|
|
14
16
|
"secondaryVrms": {
|
|
@@ -828,16 +830,9 @@
|
|
|
828
830
|
"maxLength": 30
|
|
829
831
|
},
|
|
830
832
|
"techRecord_noOfAxles": {
|
|
831
|
-
"
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
"minimum": 0,
|
|
835
|
-
"maximum": 99
|
|
836
|
-
},
|
|
837
|
-
{
|
|
838
|
-
"type": "null"
|
|
839
|
-
}
|
|
840
|
-
]
|
|
833
|
+
"type": "integer",
|
|
834
|
+
"minimum": 0,
|
|
835
|
+
"maximum": 99
|
|
841
836
|
},
|
|
842
837
|
"techRecord_notes": {
|
|
843
838
|
"type": [
|
|
@@ -7,7 +7,8 @@
|
|
|
7
7
|
"vin",
|
|
8
8
|
"techRecord_vehicleType",
|
|
9
9
|
"techRecord_statusCode",
|
|
10
|
-
"techRecord_reasonForCreation"
|
|
10
|
+
"techRecord_reasonForCreation",
|
|
11
|
+
"techRecord_noOfAxles"
|
|
11
12
|
],
|
|
12
13
|
"properties": {
|
|
13
14
|
"vin": {
|
|
@@ -131,10 +132,7 @@
|
|
|
131
132
|
]
|
|
132
133
|
},
|
|
133
134
|
"techRecord_noOfAxles": {
|
|
134
|
-
"type":
|
|
135
|
-
"integer",
|
|
136
|
-
"null"
|
|
137
|
-
]
|
|
135
|
+
"type": "integer"
|
|
138
136
|
},
|
|
139
137
|
"techRecord_notes": {
|
|
140
138
|
"type": "string"
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"techRecord_reasonForCreation",
|
|
9
9
|
"techRecord_vehicleType",
|
|
10
10
|
"techRecord_statusCode",
|
|
11
|
+
"techRecord_vehicleConfiguration",
|
|
11
12
|
"vin"
|
|
12
13
|
],
|
|
13
14
|
"properties": {
|
|
@@ -185,28 +186,21 @@
|
|
|
185
186
|
]
|
|
186
187
|
},
|
|
187
188
|
"techRecord_vehicleConfiguration": {
|
|
188
|
-
"
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
"other",
|
|
204
|
-
"drawbar",
|
|
205
|
-
"four-in-line",
|
|
206
|
-
"dolly",
|
|
207
|
-
"full drawbar"
|
|
208
|
-
]
|
|
209
|
-
}
|
|
189
|
+
"title": "Vehicle Configuration",
|
|
190
|
+
"type": "string",
|
|
191
|
+
"enum": [
|
|
192
|
+
"rigid",
|
|
193
|
+
"articulated",
|
|
194
|
+
"centre axle drawbar",
|
|
195
|
+
"semi-car transporter",
|
|
196
|
+
"semi-trailer",
|
|
197
|
+
"long semi-trailer",
|
|
198
|
+
"low loader",
|
|
199
|
+
"other",
|
|
200
|
+
"drawbar",
|
|
201
|
+
"four-in-line",
|
|
202
|
+
"dolly",
|
|
203
|
+
"full drawbar"
|
|
210
204
|
]
|
|
211
205
|
},
|
|
212
206
|
"techRecord_vehicleType": {
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"techRecord_noOfAxles",
|
|
13
13
|
"techRecord_statusCode",
|
|
14
14
|
"techRecord_reasonForCreation",
|
|
15
|
-
"techRecord_vehicleClass_description"
|
|
15
|
+
"techRecord_vehicleClass_description",
|
|
16
|
+
"techRecord_brakes_dtpNumber"
|
|
16
17
|
],
|
|
17
18
|
"properties": {
|
|
18
19
|
"vin": {
|
|
@@ -818,10 +819,7 @@
|
|
|
818
819
|
"maxLength": 255
|
|
819
820
|
},
|
|
820
821
|
"techRecord_brakes_dtpNumber": {
|
|
821
|
-
"type":
|
|
822
|
-
"string",
|
|
823
|
-
"null"
|
|
824
|
-
],
|
|
822
|
+
"type": "string",
|
|
825
823
|
"maxLength": 6
|
|
826
824
|
},
|
|
827
825
|
"techRecord_brakes_brakeCode": {
|
|
@@ -134,24 +134,31 @@
|
|
|
134
134
|
]
|
|
135
135
|
},
|
|
136
136
|
"techRecord_vehicleSubclass": {
|
|
137
|
-
"
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
137
|
+
"anyOf": [
|
|
138
|
+
{
|
|
139
|
+
"type": "null"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"title": "Vehicle Subclass",
|
|
143
|
+
"type": "array",
|
|
144
|
+
"items": {
|
|
145
|
+
"type": "string",
|
|
146
|
+
"enum": [
|
|
147
|
+
"n",
|
|
148
|
+
"p",
|
|
149
|
+
"a",
|
|
150
|
+
"s",
|
|
151
|
+
"c",
|
|
152
|
+
"l",
|
|
153
|
+
"t",
|
|
154
|
+
"e",
|
|
155
|
+
"m",
|
|
156
|
+
"r",
|
|
157
|
+
"w"
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
]
|
|
155
162
|
},
|
|
156
163
|
"techRecord_vehicleType": {
|
|
157
164
|
"const": "trl"
|
package/package.json
CHANGED
|
@@ -199,7 +199,7 @@ export interface TechRecordGETHGVSkeleton {
|
|
|
199
199
|
techRecord_applicationId?: string | null;
|
|
200
200
|
techRecord_axles?: null | HGVAxles[];
|
|
201
201
|
techRecord_bodyType_code?: null | string;
|
|
202
|
-
techRecord_bodyType_description
|
|
202
|
+
techRecord_bodyType_description: string;
|
|
203
203
|
techRecord_brakes_dtpNumber?: string | null;
|
|
204
204
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
205
205
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -251,7 +251,7 @@ export interface TechRecordGETHGVSkeleton {
|
|
|
251
251
|
techRecord_trainGbWeight?: number | null;
|
|
252
252
|
techRecord_tyreUseCode?: string | null;
|
|
253
253
|
techRecord_vehicleClass_code?: null | string;
|
|
254
|
-
techRecord_vehicleClass_description
|
|
254
|
+
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
255
255
|
techRecord_vehicleConfiguration?: VehicleConfiguration | null;
|
|
256
256
|
techRecord_approvalType?: ApprovalType | null;
|
|
257
257
|
techRecord_approvalTypeNumber?: string | null;
|
|
@@ -199,7 +199,7 @@ export interface TechRecordGETHGVTestable {
|
|
|
199
199
|
techRecord_applicationId?: string;
|
|
200
200
|
techRecord_axles?: null | HGVAxles[];
|
|
201
201
|
techRecord_bodyType_code?: null | string;
|
|
202
|
-
techRecord_bodyType_description
|
|
202
|
+
techRecord_bodyType_description: string;
|
|
203
203
|
techRecord_brakes_dtpNumber?: string | null;
|
|
204
204
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
205
205
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -235,7 +235,7 @@ export interface TechRecordGETHGVTestable {
|
|
|
235
235
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
236
236
|
techRecord_model?: string | null;
|
|
237
237
|
techRecord_numberOfWheelsDriven: number;
|
|
238
|
-
techRecord_noOfAxles
|
|
238
|
+
techRecord_noOfAxles: number;
|
|
239
239
|
techRecord_notes?: string | null;
|
|
240
240
|
techRecord_offRoad?: boolean | null;
|
|
241
241
|
techRecord_plates?: null | HGVPlates[];
|
|
@@ -62,7 +62,7 @@ export interface TechRecordGETLGVComplete {
|
|
|
62
62
|
techRecord_lastUpdatedByName?: string | null;
|
|
63
63
|
techRecord_manufactureYear?: number | null;
|
|
64
64
|
techRecord_recordCompleteness?: null | string;
|
|
65
|
-
techRecord_noOfAxles
|
|
65
|
+
techRecord_noOfAxles: number;
|
|
66
66
|
techRecord_notes?: null | string;
|
|
67
67
|
techRecord_reasonForCreation: string;
|
|
68
68
|
techRecord_regnDate?: string | null;
|
|
@@ -81,7 +81,7 @@ export interface TechRecordGETMotorcycleComplete {
|
|
|
81
81
|
techRecord_statusCode?: null | StatusCode;
|
|
82
82
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
83
83
|
techRecord_vehicleClass_code: string;
|
|
84
|
-
techRecord_vehicleConfiguration
|
|
84
|
+
techRecord_vehicleConfiguration: VehicleConfiguration;
|
|
85
85
|
techRecord_vehicleType: "motorcycle";
|
|
86
86
|
vin: string;
|
|
87
87
|
techRecord_numberOfWheelsDriven: number;
|
|
@@ -7,6 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
9
9
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
10
|
+
export type VehicleConfiguration =
|
|
11
|
+
| "rigid"
|
|
12
|
+
| "articulated"
|
|
13
|
+
| "centre axle drawbar"
|
|
14
|
+
| "semi-car transporter"
|
|
15
|
+
| "semi-trailer"
|
|
16
|
+
| "long semi-trailer"
|
|
17
|
+
| "low loader"
|
|
18
|
+
| "other"
|
|
19
|
+
| "drawbar"
|
|
20
|
+
| "four-in-line"
|
|
21
|
+
| "dolly"
|
|
22
|
+
| "full drawbar";
|
|
10
23
|
export type EUVehicleCategory =
|
|
11
24
|
| "m1"
|
|
12
25
|
| "m2"
|
|
@@ -41,6 +54,7 @@ export interface TechRecordPUTCarComplete {
|
|
|
41
54
|
techRecord_hiddenInVta?: null | boolean;
|
|
42
55
|
techRecord_updateType?: null | string;
|
|
43
56
|
secondaryVrms?: null | string[];
|
|
57
|
+
techRecord_vehicleConfiguration: VehicleConfiguration;
|
|
44
58
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
45
59
|
techRecord_applicantDetails_name?: string | null;
|
|
46
60
|
techRecord_applicantDetails_address1?: null | string;
|
|
@@ -7,6 +7,19 @@
|
|
|
7
7
|
|
|
8
8
|
export type StatusCode = "provisional" | "current" | "archived";
|
|
9
9
|
export type VehicleSubclass = ("n" | "p" | "a" | "s" | "c" | "l" | "t" | "e" | "m" | "r" | "w")[];
|
|
10
|
+
export type VehicleConfiguration =
|
|
11
|
+
| "rigid"
|
|
12
|
+
| "articulated"
|
|
13
|
+
| "centre axle drawbar"
|
|
14
|
+
| "semi-car transporter"
|
|
15
|
+
| "semi-trailer"
|
|
16
|
+
| "long semi-trailer"
|
|
17
|
+
| "low loader"
|
|
18
|
+
| "other"
|
|
19
|
+
| "drawbar"
|
|
20
|
+
| "four-in-line"
|
|
21
|
+
| "dolly"
|
|
22
|
+
| "full drawbar";
|
|
10
23
|
export type EUVehicleCategory =
|
|
11
24
|
| "m1"
|
|
12
25
|
| "m2"
|
|
@@ -41,6 +54,7 @@ export interface TechRecordPUTCarSkeleton {
|
|
|
41
54
|
techRecord_updateType?: null | string;
|
|
42
55
|
secondaryVrms?: null | string[];
|
|
43
56
|
techRecord_vehicleSubclass?: VehicleSubclass;
|
|
57
|
+
techRecord_vehicleConfiguration?: null | VehicleConfiguration;
|
|
44
58
|
techRecord_euVehicleCategory?: EUVehicleCategory | null;
|
|
45
59
|
techRecord_applicantDetails_name?: string | null;
|
|
46
60
|
techRecord_applicantDetails_address1?: null | string;
|
|
@@ -197,7 +197,7 @@ export interface TechRecordPUTHGVSkeleton {
|
|
|
197
197
|
techRecord_applicationId?: string | null;
|
|
198
198
|
techRecord_axles?: null | HGVAxles[];
|
|
199
199
|
techRecord_bodyType_code?: null | string;
|
|
200
|
-
techRecord_bodyType_description
|
|
200
|
+
techRecord_bodyType_description: string;
|
|
201
201
|
techRecord_brakes_dtpNumber?: string | null;
|
|
202
202
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
203
203
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -242,7 +242,7 @@ export interface TechRecordPUTHGVSkeleton {
|
|
|
242
242
|
techRecord_trainEecWeight?: number | null;
|
|
243
243
|
techRecord_trainGbWeight?: number | null;
|
|
244
244
|
techRecord_tyreUseCode?: string | null;
|
|
245
|
-
techRecord_vehicleClass_description
|
|
245
|
+
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
246
246
|
techRecord_vehicleConfiguration?: VehicleConfiguration | null;
|
|
247
247
|
techRecord_approvalType?: ApprovalType | null;
|
|
248
248
|
techRecord_approvalTypeNumber?: string | null;
|
|
@@ -197,7 +197,7 @@ export interface TechRecordPUTHGVTestable {
|
|
|
197
197
|
techRecord_applicationId?: null | string;
|
|
198
198
|
techRecord_axles?: HGVAxles[];
|
|
199
199
|
techRecord_bodyType_code?: string;
|
|
200
|
-
techRecord_bodyType_description
|
|
200
|
+
techRecord_bodyType_description: string;
|
|
201
201
|
techRecord_brakes_dtpNumber?: string | null;
|
|
202
202
|
techRecord_brakes_loadSensingValve?: boolean | null;
|
|
203
203
|
techRecord_conversionRefNo?: string | null;
|
|
@@ -228,7 +228,7 @@ export interface TechRecordPUTHGVTestable {
|
|
|
228
228
|
techRecord_microfilm_microfilmRollNumber?: string | null;
|
|
229
229
|
techRecord_microfilm_microfilmSerialNumber?: string | null;
|
|
230
230
|
techRecord_model?: string | null;
|
|
231
|
-
techRecord_noOfAxles
|
|
231
|
+
techRecord_noOfAxles: number;
|
|
232
232
|
techRecord_notes?: string | null;
|
|
233
233
|
techRecord_offRoad?: boolean | null;
|
|
234
234
|
techRecord_plates?: HGVPlates[];
|
|
@@ -44,7 +44,7 @@ export interface TechRecordPUTLGVComplete {
|
|
|
44
44
|
techRecord_statusCode: StatusCode;
|
|
45
45
|
techRecord_regnDate?: string | null;
|
|
46
46
|
techRecord_manufactureYear?: number | null;
|
|
47
|
-
techRecord_noOfAxles
|
|
47
|
+
techRecord_noOfAxles: number;
|
|
48
48
|
techRecord_notes?: string;
|
|
49
49
|
techRecord_vehicleSubclass: VehicleSubclass;
|
|
50
50
|
techRecord_hiddenInVta?: boolean;
|
|
@@ -73,7 +73,7 @@ export interface TechRecordPUTMotorcycleComplete {
|
|
|
73
73
|
techRecord_regnDate?: string | null;
|
|
74
74
|
techRecord_statusCode: StatusCode;
|
|
75
75
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
76
|
-
techRecord_vehicleConfiguration
|
|
76
|
+
techRecord_vehicleConfiguration: VehicleConfiguration;
|
|
77
77
|
techRecord_vehicleType: "motorcycle";
|
|
78
78
|
vin: string;
|
|
79
79
|
techRecord_numberOfWheelsDriven: number;
|
|
@@ -264,7 +264,7 @@ export interface TechRecordPUTPSVTestable {
|
|
|
264
264
|
techRecord_applicantDetails_postCode?: null | string;
|
|
265
265
|
techRecord_applicantDetails_telephoneNumber?: null | string;
|
|
266
266
|
techRecord_applicantDetails_emailAddress?: null | string;
|
|
267
|
-
techRecord_brakes_dtpNumber
|
|
267
|
+
techRecord_brakes_dtpNumber: string;
|
|
268
268
|
techRecord_brakes_brakeCode?: string | null;
|
|
269
269
|
techRecord_brakes_brakeCodeOriginal?: string | null;
|
|
270
270
|
techRecord_brakes_dataTrBrakeOne?: string | null;
|
|
@@ -50,7 +50,7 @@ export interface TechRecordPUTSmallTRLComplete {
|
|
|
50
50
|
techRecord_statusCode: StatusCode;
|
|
51
51
|
techRecord_vehicleClass_description: VehicleClassDescription;
|
|
52
52
|
techRecord_vehicleConfiguration: VehicleConfiguration;
|
|
53
|
-
techRecord_vehicleSubclass?: VehicleSubclass;
|
|
53
|
+
techRecord_vehicleSubclass?: null | VehicleSubclass;
|
|
54
54
|
techRecord_vehicleType: "trl";
|
|
55
55
|
vin: string;
|
|
56
56
|
trailerId?: string;
|