From ac06fac39ef22146a598ab7cf00faa70bed09f51 Mon Sep 17 00:00:00 2001 From: Craig Broady Date: Fri, 8 Nov 2024 08:24:41 +0000 Subject: [PATCH] feat(cb2-12692): added testStationStatus --- json-definitions/v1/test-station/index.json | 6 +++++- json-schemas/v1/test-station/index.json | 6 +++++- types/v1/test-station/index.d.ts | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/json-definitions/v1/test-station/index.json b/json-definitions/v1/test-station/index.json index 73eb22e7..512785ca 100644 --- a/json-definitions/v1/test-station/index.json +++ b/json-definitions/v1/test-station/index.json @@ -49,6 +49,9 @@ }, "testStationCountry": { "type": "string" + }, + "testStationStatus": { + "type": "string" } }, "required": [ @@ -64,7 +67,8 @@ "testStationLongitude", "testStationLatitude", "testStationType", - "testStationEmails" + "testStationEmails", + "testStationStatus" ], "additionalProperties": false } diff --git a/json-schemas/v1/test-station/index.json b/json-schemas/v1/test-station/index.json index 7f7598ea..854f6589 100644 --- a/json-schemas/v1/test-station/index.json +++ b/json-schemas/v1/test-station/index.json @@ -49,6 +49,9 @@ }, "testStationCountry": { "type": "string" + }, + "testStationStatus": { + "type": "string" } }, "required": [ @@ -64,7 +67,8 @@ "testStationLongitude", "testStationLatitude", "testStationType", - "testStationEmails" + "testStationEmails", + "testStationStatus" ], "additionalProperties": false } \ No newline at end of file diff --git a/types/v1/test-station/index.d.ts b/types/v1/test-station/index.d.ts index 8a0a0aa1..74c2cb94 100644 --- a/types/v1/test-station/index.d.ts +++ b/types/v1/test-station/index.d.ts @@ -21,4 +21,5 @@ export interface TestStationSchema { testStationEmails: string[]; searchProperty?: string; testStationCountry?: string; + testStationStatus: string; }