From 9877da52811c122ffe3277b9459ae0531f191004 Mon Sep 17 00:00:00 2001 From: eitzenbe Date: Mon, 31 Mar 2025 19:48:09 +0200 Subject: [PATCH] adding new properties for vsdm2.0 (#4624) * TGR-1120: provide a schema for the tiger test environment configuration file * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * TGR-1120: accidentally removed some entries in catalog.json * TES-13: added deliveryaddress and gender property * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: t.eitzenberger Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- src/schemas/json/gematik-test-patients.json | 27 +++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/src/schemas/json/gematik-test-patients.json b/src/schemas/json/gematik-test-patients.json index 9bdc4fb08be..a6579d1d8cd 100644 --- a/src/schemas/json/gematik-test-patients.json +++ b/src/schemas/json/gematik-test-patients.json @@ -30,10 +30,16 @@ }, "family": { "type": "string" + }, + "alt": { + "type": "string" } }, "required": ["given", "family"] }, + "gender": { + "enum": ["w", "m", "d", "x"] + }, "birthDate": { "anyOf": [ { @@ -66,6 +72,27 @@ } } }, + "deliveryAddress": { + "type": "object", + "additionalProperties": false, + "properties": { + "houseNumber": { + "type": "string" + }, + "streetName": { + "type": "string" + }, + "postalCode": { + "type": "string" + }, + "city": { + "type": "string" + }, + "country": { + "type": "string" + } + } + }, "kvnr": { "type": "string" },