Skip to content

Commit

Permalink
feat(cb2-12692): added testStationStatus
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-cs committed Nov 8, 2024
1 parent 92fe7cc commit ac06fac
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 5 additions & 1 deletion json-definitions/v1/test-station/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
},
"testStationCountry": {
"type": "string"
},
"testStationStatus": {
"type": "string"
}
},
"required": [
Expand All @@ -64,7 +67,8 @@
"testStationLongitude",
"testStationLatitude",
"testStationType",
"testStationEmails"
"testStationEmails",
"testStationStatus"
],
"additionalProperties": false
}
6 changes: 5 additions & 1 deletion json-schemas/v1/test-station/index.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@
},
"testStationCountry": {
"type": "string"
},
"testStationStatus": {
"type": "string"
}
},
"required": [
Expand All @@ -64,7 +67,8 @@
"testStationLongitude",
"testStationLatitude",
"testStationType",
"testStationEmails"
"testStationEmails",
"testStationStatus"
],
"additionalProperties": false
}
1 change: 1 addition & 0 deletions types/v1/test-station/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@ export interface TestStationSchema {
testStationEmails: string[];
searchProperty?: string;
testStationCountry?: string;
testStationStatus: string;
}

0 comments on commit ac06fac

Please sign in to comment.