File tree Expand file tree Collapse file tree 9 files changed +85
-0
lines changed Expand file tree Collapse file tree 9 files changed +85
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "title" : " Recalls Schema" ,
3
+ "type" : " object" ,
4
+ "properties" : {
5
+ "hasRecall" : {
6
+ "type" : [
7
+ " boolean" ,
8
+ " null"
9
+ ]
10
+ },
11
+ "manufacturer" : {
12
+ "type" : [
13
+ " string" ,
14
+ " null"
15
+ ]
16
+ }
17
+ },
18
+ "additionalProperties" : false ,
19
+ "required" : [
20
+ " hasRecall" ,
21
+ " manufacturer"
22
+ ]
23
+ }
Original file line number Diff line number Diff line change 278
278
},
279
279
"deletionFlag" : {
280
280
"type" : " boolean"
281
+ },
282
+ "recalls" : {
283
+ "anyOf" : [
284
+ {
285
+ "$ref" : " ../recalls/index.json"
286
+ }
287
+ ]
281
288
}
282
289
},
283
290
"additionalProperties" : false ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "title" : " Recalls Schema" ,
3
+ "type" : " object" ,
4
+ "properties" : {
5
+ "hasRecall" : {
6
+ "type" : [
7
+ " boolean" ,
8
+ " null"
9
+ ]
10
+ },
11
+ "manufacturer" : {
12
+ "type" : [
13
+ " string" ,
14
+ " null"
15
+ ]
16
+ }
17
+ },
18
+ "additionalProperties" : false ,
19
+ "required" : [
20
+ " hasRecall" ,
21
+ " manufacturer"
22
+ ]
23
+ }
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ export const schemas = [
17
17
"v1/enums/typeOfTest.enum.json" ,
18
18
"v1/enums/waitReason.enum.json" ,
19
19
"v1/reason-item/index.json" ,
20
+ "v1/recalls/index.json" ,
20
21
"v1/tech-record/index.json" ,
21
22
"v1/test/index.json" ,
22
23
"v1/test-result/index.json" ,
Original file line number Diff line number Diff line change
1
+ /* tslint:disable */
2
+ /**
3
+ * This file was automatically generated by json-schema-to-typescript.
4
+ * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
5
+ * and run json-schema-to-typescript to regenerate this file.
6
+ */
7
+
8
+ export interface RecallsSchema {
9
+ hasRecall : boolean | null ;
10
+ manufacturer : string | null ;
11
+ }
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ export interface TestResultSchema {
61
61
testHistory ?: TestResultSchema [ ] ;
62
62
testVersion ?: string ;
63
63
deletionFlag ?: boolean ;
64
+ recalls ?: RecallsSchema ;
64
65
}
65
66
export interface VehicleClassSchema {
66
67
code : string ;
@@ -203,6 +204,10 @@ export interface BodyTypeSchema {
203
204
code ?: string | null ;
204
205
description ?: string | null ;
205
206
}
207
+ export interface RecallsSchema {
208
+ hasRecall : boolean | null ;
209
+ manufacturer : string | null ;
210
+ }
206
211
207
212
export enum TestStationTypes {
208
213
ATF = "atf" ,
Original file line number Diff line number Diff line change @@ -282,6 +282,7 @@ export interface TestResultSchema {
282
282
testHistory ?: TestResultSchema [ ] ;
283
283
testVersion ?: string ;
284
284
deletionFlag ?: boolean ;
285
+ recalls ?: RecallsSchema ;
285
286
}
286
287
export interface TestTypeSchema {
287
288
testTypeName : string | null ;
@@ -420,6 +421,10 @@ export interface BodyTypeSchema {
420
421
code ?: string | null ;
421
422
description ?: string | null ;
422
423
}
424
+ export interface RecallsSchema {
425
+ hasRecall : boolean | null ;
426
+ manufacturer : string | null ;
427
+ }
423
428
424
429
export enum TestStationTypes {
425
430
ATF = "atf" ,
Original file line number Diff line number Diff line change @@ -274,6 +274,7 @@ export interface TestResultSchema {
274
274
testHistory ?: TestResultSchema [ ] ;
275
275
testVersion ?: string ;
276
276
deletionFlag ?: boolean ;
277
+ recalls ?: RecallsSchema ;
277
278
}
278
279
export interface TestTypeSchema {
279
280
testTypeName : string | null ;
@@ -412,6 +413,10 @@ export interface BodyTypeSchema {
412
413
code ?: string | null ;
413
414
description ?: string | null ;
414
415
}
416
+ export interface RecallsSchema {
417
+ hasRecall : boolean | null ;
418
+ manufacturer : string | null ;
419
+ }
415
420
416
421
export enum TestStationTypes {
417
422
ATF = "atf" ,
Original file line number Diff line number Diff line change @@ -295,6 +295,7 @@ export interface TestResultSchema {
295
295
testHistory ?: TestResultSchema [ ] ;
296
296
testVersion ?: string ;
297
297
deletionFlag ?: boolean ;
298
+ recalls ?: RecallsSchema ;
298
299
}
299
300
export interface TestTypeSchema {
300
301
testTypeName : string | null ;
@@ -433,6 +434,10 @@ export interface BodyTypeSchema {
433
434
code ?: string | null ;
434
435
description ?: string | null ;
435
436
}
437
+ export interface RecallsSchema {
438
+ hasRecall : boolean | null ;
439
+ manufacturer : string | null ;
440
+ }
436
441
437
442
export enum TestStationTypes {
438
443
ATF = "atf" ,
You can’t perform that action at this time.
0 commit comments