Skip to content

Commit 9877da5

Browse files
eitzenbet.eitzenbergerpre-commit-ci[bot]
authored
adding new properties for vsdm2.0 (SchemaStore#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 <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 4bda5d4 commit 9877da5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/schemas/json/gematik-test-patients.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,16 @@
3030
},
3131
"family": {
3232
"type": "string"
33+
},
34+
"alt": {
35+
"type": "string"
3336
}
3437
},
3538
"required": ["given", "family"]
3639
},
40+
"gender": {
41+
"enum": ["w", "m", "d", "x"]
42+
},
3743
"birthDate": {
3844
"anyOf": [
3945
{
@@ -66,6 +72,27 @@
6672
}
6773
}
6874
},
75+
"deliveryAddress": {
76+
"type": "object",
77+
"additionalProperties": false,
78+
"properties": {
79+
"houseNumber": {
80+
"type": "string"
81+
},
82+
"streetName": {
83+
"type": "string"
84+
},
85+
"postalCode": {
86+
"type": "string"
87+
},
88+
"city": {
89+
"type": "string"
90+
},
91+
"country": {
92+
"type": "string"
93+
}
94+
}
95+
},
6996
"kvnr": {
7097
"type": "string"
7198
},

0 commit comments

Comments
 (0)