Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Fixes bug in ProfileGenerator where Coding slices lacked type informa…
Browse files Browse the repository at this point in the history
…tion.

This has no impact on generated protos.

PiperOrigin-RevId: 473102073
  • Loading branch information
nickgeorge committed Jan 4, 2023
1 parent ec8d980 commit 2d522b4
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions proto/google/fhir_examples/myprofile/myprofile.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"name": "DemoPatient",
"title": "DemoPatient",
"status": "draft",
"date": "2022-09-01",
"date": "2022-09-08",
"publisher": "Example Company LLC",
"description": "Extension of US Core Patient for FHIR Profile demo",
"fhirVersion": "4.0.1",
Expand Down Expand Up @@ -4480,6 +4480,11 @@
"min": 0,
"max": "*"
},
"type": [
{
"code": "Coding"
}
],
"condition": [
"ele-1"
],
Expand Down Expand Up @@ -4947,7 +4952,12 @@
"id": "Patient.maritalStatus.coding:v3",
"path": "Patient.maritalStatus.coding",
"sliceName": "v3",
"max": "1"
"max": "1",
"type": [
{
"code": "Coding"
}
]
},
{
"id": "Patient.maritalStatus.coding:v3.system",
Expand Down

0 comments on commit 2d522b4

Please sign in to comment.