CH EMED EPR
1.0.1-ci-build - ci-build
CH EMED EPR, published by CARA. This guide is not an authorized publication; it is the continuous build for version 1.0.1-ci-build built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/CARA-ch/ch-emed-epr/ and changes regularly. See the Directory of published versions
Those are generic guidances that apply to all documents.
The patient body weight can be specified by adding a Body Weight Observation to the Bundle in the entry "ObsBodyWeight". It must be referenced from the Composition too, in the section "vitalSigns".
Both ids and identifiers are mentionned in this documentation. Although they might seem similar, they differ in the fact that id
is relative to a given FHIR document, while identifier
is absolute for a resource.
A given ressource (for instance a pratician) might have a different id
in different FHIR document, but it will always have the same identifier
(eg. its GLN).
For instance, in the following resource :
{
"fullUrl": "http://test.fhir.ch/r4/Practitioner/FamilienHausarzt",
"resource": {
"resourceType": "Practitioner",
"id": "FamilienHausarzt",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Practitioner</b><a name=\"FamilienHausarzt\"> ... Familien Hausarzt </p></div>"
},
"identifier": [
{
"system": "urn:oid:2.51.1.3",
"value": "7601000234438"
}
],
"name": [
{
"family": "Hausarzt",
"given": [
"Familien"
]
}
]
}
}
The id
of the practitionner is FamilienHausarzt
. This value is used in the fullUrl
for internal references within the FIHR document (see also compositions guidance).
The identifier
, composed of a system
and a value
is absolute : it's the practitionner's GLN, that is valid outside the FHIR document.
The use of the meta/profile
tag is encouraged in development because it enables better feedback / response codes. This profile can be omitted in a production environment.
"meta": {
"lastUpdated": "2020-03-09T12:31:59.738+00:00",
"profile": [
"http://fhir.ch/ig/ch-emed/StructureDefinition/ch-emed-document-medicationtreatmentplan"
]
}