-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
major(cb2-12677): update test-results types (#174)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Leo <[email protected]>
- Loading branch information
1 parent
b89f3dc
commit f4f6334
Showing
49 changed files
with
4,074 additions
and
566 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"title": "Activity Type", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"VISIT", | ||
"WAIT" , | ||
"UNACCOUNTABLE_TIME" | ||
], | ||
"enum": [ | ||
"visit", | ||
"time", | ||
"unaccountable time" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"title": "Emission Standards", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"EURO3_PM", | ||
"EURO4_PM", | ||
"EURO3", | ||
"EURO4", | ||
"EURO5", | ||
"EURO6", | ||
"EUROV", | ||
"EUROVI", | ||
"FULL_ELECTRIC" | ||
], | ||
"enum": [ | ||
"0.10 g/kWh Euro 3 PM", | ||
"0.03 g/kWh Euro IV PM'", | ||
"Euro 3", | ||
"Euro 4", | ||
"Euro 5", | ||
"Euro 6", | ||
"Euro V", | ||
"Euro VI", | ||
"Full Electric" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"title": "Fuel Type", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"DIESEL", | ||
"GAS_CNG", | ||
"GAS_LNG", | ||
"GAS_LPG", | ||
"PETROL", | ||
"FUEL_CELL", | ||
"FULL_ELECTRIC" | ||
], | ||
"enum": [ | ||
"diesel", | ||
"gas-cng", | ||
"gas-lng", | ||
"gas-lpg", | ||
"petrol", | ||
"fuel cell", | ||
"full electric" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"title": "Odometer Reading Units", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"KILOMETRES", | ||
"MILES" | ||
], | ||
"enum": [ | ||
"kilometres", | ||
"miles" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"title": "Test Sources", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"VTM", | ||
"VTA" | ||
], | ||
"enum": [ | ||
"vtm", | ||
"vta" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"title": "Test Results", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"PASS", | ||
"PRS", | ||
"FAIL", | ||
"ABANDONED" | ||
], | ||
"enum": [ | ||
"pass", | ||
"prs", | ||
"fail", | ||
"abandoned" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"title": "Test Station Types", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"ATF", | ||
"GVTS", | ||
"HQ", | ||
"POTF" | ||
], | ||
"enum": [ | ||
"atf", | ||
"gvts", | ||
"hq", | ||
"potf" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"title": "Test Status", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"SUBMITTED", | ||
"CANCELLED" | ||
], | ||
"enum": [ | ||
"submitted", | ||
"cancelled" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"title": "Type of test", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"CONTINGENCY", | ||
"DESK_BASED", | ||
"COMPLETION" | ||
], | ||
"enum": [ | ||
"contingency", | ||
"desk-based", | ||
"completion" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"title": "Wait Reason", | ||
"type": "string", | ||
"tsEnumNames": [ | ||
"WAITING_FOR_VEHICLE", | ||
"BREAK" , | ||
"ADMIN", | ||
"SITE_ISSUE", | ||
"OTHER" | ||
], | ||
"enum": [ | ||
"Waiting for vehicle", | ||
"Break", | ||
"Admin", | ||
"Site issue", | ||
"Other" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"title": "Specialist Custom Defects Schema Put", | ||
"type": "object", | ||
"properties": { | ||
"sectionNumber": { | ||
"type": "string" | ||
}, | ||
"sectionDescription": { | ||
"type": "string" | ||
}, | ||
"additionalNotes": { | ||
"type": [ | ||
"string", | ||
"null" | ||
] | ||
}, | ||
"rsNumber": { | ||
"type": "integer" | ||
}, | ||
"requiredStandard": { | ||
"type": "string" | ||
}, | ||
"refCalculation": { | ||
"type": "string" | ||
}, | ||
"additionalInfo": { | ||
"type": "boolean" | ||
}, | ||
"inspectionTypes": { | ||
"type": "array", | ||
"items": { | ||
"anyOf": [ | ||
{ | ||
"$ref": "../../required-standards/defects/enums/inspectionType.ignore.json" | ||
} | ||
] | ||
} | ||
}, | ||
"prs": { | ||
"type": "boolean" | ||
} | ||
}, | ||
"additionalProperties": false, | ||
"required": [ | ||
"sectionNumber", | ||
"sectionDescription", | ||
"rsNumber", | ||
"requiredStandard", | ||
"refCalculation", | ||
"additionalInfo", | ||
"referenceNumber", | ||
"prs" | ||
] | ||
} |
Oops, something went wrong.