Skip to content

Commit

Permalink
Merge branch 'example-resources' of https://github.com/gematik/spec-I…
Browse files Browse the repository at this point in the history
…SiK-Basismodul into example-resources
  • Loading branch information
leslieber committed Jan 8, 2025
2 parents 396408a + fb79a7d commit b70965f
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@
"system": "phone",
"value": "+49 170 1234567",
"use": "mobile",
"rank": 2
"rank": 1
},
{
"system": "email",
"value": "[email protected]",
"use": "work"
"use": "work",
"rank": 2
}
],
"gender": "female",
Expand All @@ -116,17 +117,14 @@
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber",
"valueString": "2"
}
]
},
{
"extension": [
},
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator",
"valueString": "3. Etage"
}
]
}
},
null
],
"city": "Demmin",
"postalCode": "17109",
Expand Down
34 changes: 34 additions & 0 deletions Resources/fsh-generated/resources/Patient-PatientinMinimal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
"resourceType": "Patient",
"id": "PatientinMinimal",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/StructureDefinition/ISiKPatient"
]
},
"identifier": [
{
"type": {
"coding": [
{
"code": "MR",
"system": "http://terminology.hl7.org/CodeSystem/v2-0203"
}
]
},
"system": "https://fhir.krankenhaus.example/sid/PID",
"value": "TestPID1"
}
],
"name": [
{
"use": "official",
"family": "Müller",
"given": [
"Anna"
]
}
],
"gender": "female",
"birthDate": "1957-08-12"
}
98 changes: 98 additions & 0 deletions Resources/fsh-generated/resources/Patient-PatientinNormal.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
{
"resourceType": "Patient",
"id": "PatientinNormal",
"meta": {
"profile": [
"https://gematik.de/fhir/isik/StructureDefinition/ISiKPatient"
]
},
"identifier": [
{
"type": {
"coding": [
{
"code": "MR",
"system": "http://terminology.hl7.org/CodeSystem/v2-0203"
}
]
},
"system": "https://fhir.krankenhaus.example/sid/PID",
"value": "TestPID1"
},
{
"type": {
"coding": [
{
"code": "KVZ10",
"system": "http://fhir.de/CodeSystem/identifier-type-de-basis"
}
]
},
"system": "http://fhir.de/sid/gkv/kvid-10",
"value": "A1234567890"
},
{
"type": {
"coding": [
{
"code": "GKV",
"system": "http://fhir.de/CodeSystem/identifier-type-de-basis"
},
{
"code": "KVZ10",
"system": "http://fhir.de/CodeSystem/identifier-type-de-basis"
}
]
},
"system": "http://fhir.de/sid/gkv/kvid-10",
"value": "A1234567890"
}
],
"name": [
{
"use": "official",
"family": "Müller",
"given": [
"Anna"
],
"prefix": [
"Dr."
]
},
{
"use": "maiden",
"family": "Weber"
}
],
"active": true,
"gender": "female",
"birthDate": "1957-08-12",
"address": [
{
"type": "physical",
"line": [
"Musterweg 2"
],
"city": "Demmin",
"postalCode": "17109",
"country": "DE"
},
{
"type": "postal",
"line": [
"Postfach 815"
],
"city": "Musterhausen",
"postalCode": "98764",
"country": "DE"
}
],
"link": [
{
"other": {
"reference": "Patient/9876"
},
"type": "seealso"
}
]
}

0 comments on commit b70965f

Please sign in to comment.