-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Condition, Encounter and Provenance fixes #103
Changes from all commits
b1aad23
27e6eb3
7bc278b
4380923
b3db7ab
a919c3c
17ee026
d93e912
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
Instance: LocationBedExample | ||
InstanceOf: FiBaseLocation | ||
Usage: #example | ||
Description: "Example of a bed." | ||
* id = "id-for-bed-3" | ||
* mode = #instance | ||
* name = "Vuode 3" | ||
* status = #active | ||
* physicalType.coding.system = #http://terminology.hl7.org/CodeSystem/location-physical-type | ||
* physicalType.coding.code = #bd |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Instance: OrganizationHospitalUnit | ||
InstanceOf: FiBaseOrganization | ||
Title: "Encounter - example primary care organization" | ||
// using partOf would cause warnings unless we add the full hierarchy in this repo. | ||
Description: "An example of a FI Base organization, a surgical ward. The partOf reference removed for brevity." | ||
Usage: #example | ||
* id = "1.2.246.10.8286189.10.100012" | ||
* identifier.use = #official | ||
* identifier.system = #urn:oid:1.2.246.537.6.202.2008 | ||
* identifier.value = "1.2.246.10.8286189.10.100012" | ||
* name = "Kirurgian vuodeosasto 4B, Länsi-Pohjan keskussairaala, LPSHP" | ||
* alias = "Kirurgian vuodeosasto 4B, LPKS, LPSHP" | ||
* address[0].type = #postal | ||
* address[0].line[0] = "Kauppakatu 25, 94100 KEMI" | ||
* address[0].postalCode = "94100" | ||
* address[0].city = "KEMI" | ||
* address[1].type = #physical | ||
* address[1].line[0] = "Kauppakatu 25, 94100 KEMI" | ||
* address[1].postalCode = "94100" | ||
* address[1].city = "KEMI" | ||
* active = true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Instance: OrganizationPrimaryCare | ||
InstanceOf: FiBaseOrganization | ||
Title: "Encounter - example primary care organization" | ||
Title: "Organization - example primary care organization" | ||
Description: "An example of a FI Base organization, a doctor's reception office. Data is from national SOTE-Rekisteri." | ||
Usage: #example | ||
* id = "1.2.246.10.2085212.10.1314" | ||
|
@@ -20,3 +20,17 @@ Usage: #example | |
* telecom[0].system = #phone | ||
* telecom[0].value = "0401578947" | ||
* active = true | ||
|
||
// Providing minimal info of the parent organization for the example above, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👍 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We could of course add this info in the description of the example too? |
||
// no need to express full hierarchy here. | ||
Instance: OrganizationPrimaryCareParent | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It may be hard to find the source for this instance from this file. I'd like to see one file per example. But that may just be a personal preference... |
||
InstanceOf: FiBaseOrganization | ||
Title: "Organization - example of a parent organization" | ||
Description: "An example of a FI Base organization. Acts as a parent organization for another." | ||
Usage: #example | ||
* id = "1.2.246.10.2085212.10.1306" | ||
* identifier.use = #official | ||
* identifier.system = #urn:oid:1.2.246.537.6.202.2008 | ||
* identifier.value = "1.2.246.10.2085212.10.1306" | ||
* name = "Vastaanotot, SoTe kuntayhtymä Saarikka" | ||
* active = true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we wanted to be really fancy, we could use the URL (
tel:+358401578947
) as value (see https://hl7.org/fhir/datatypes.html#ContactPoint):And then let it up to clients to format the phone numbers as they see fit.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd kind of like to see that kind of encouragement in the implementation guide...