CH EKM (R4)
0.0.1 - ci-build Switzerland flag

CH EKM (R4), published by Federal Office of Public Health FOPH. This guide is not an authorized publication; it is the continuous build for version 0.0.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/ahdis/ch-ekm/ and changes regularly. See the Directory of published versions

FHIR Document (Bundle)

The CH EKM exchange format defines a FHIR document representing a coherent set of information specific to the transmission of a clinical findings report for a communicable infectious disease. This FHIR document is based on the CH EKM-Document profile.

The exchange format expects a separate FHIR document per patient, disease, and report.

The FHIR document consists of a bundle-resource of type "document" (the terms "FHIR document" and "Bundle" are synonymous in the context of the CH EKM project).

The bundle resource contains a consistent set of entries representing FHIR resources specific for the transmission of a clinical findings report. The CH EKM-Composition is the first entry of the bundle and structures the report into sections (diagnosis, laboratory, hospitalization, medication, immunization, risk factors, social history, cause of death), each of which references the resources carrying the relevant data:

{
"resourceType": "Bundle",
"entry": [
    {
        "resourceType": "Composition"
    },
the report itself: parameters like date, language, title, author, and sections referencing the different resources
    {
        "resourceType": "Patient"
    },
the person affected by the communicable infectious disease (referenced by Composition.subject)
    {
        "resourceType": "PractitionerRole"
    },
the author of the report (referenced by Composition.author): either the treating physician or a private service provider ("broker") who transmits the report on behalf of the treating physician
    {
        "resourceType": "Practitioner"
    },
the treating physician, referenced by the author's PractitionerRole
    {
        "resourceType": "Practitioner"
    },
alternatively, the broker submitting the report on behalf of the treating physician, referenced by the author's PractitionerRole
    {
        "resourceType": "Organization"
    },
the organization of the treating physician (e.g. the practice or hospital)
    {
        "resourceType": "Organization"
    },
alternatively, the organization of the broker submitting the report
    {
        "resourceType": "Condition"
    },
the diagnosed communicable infectious disease ("diagnosis" section), with onset date and supporting evidence
    {
        "resourceType": "QuestionnaireResponse"
    },
optional, structured answers complementing the diagnosis (e.g. course of disease) ("diagnosis" section)
    {
        "resourceType": "ServiceRequest"
    },
the laboratory order ("laboratory" section), with the laboratory order ID, the requester, and the performing laboratory
    {
        "resourceType": "Organization"
    },
the performing laboratory, referenced by the ServiceRequest
    {
        "resourceType": "Specimen"
    },
the specimen material with collection date, referenced by the ServiceRequest
    {
        "resourceType": "Observation"
    },
laboratory result values, e.g. a seroconversion ("laboratory" section)
    {
        "resourceType": "Encounter"
    },
a hospitalization or outpatient visit related to the disease ("hospitalization" section)
    {
        "resourceType": "Observation"
    },
medication relevant to the disease, e.g. antiviral therapy ("medication" section)
    {
        "resourceType": "Immunization"
    },
one or more vaccine doses relevant to the disease ("immunization" section)
    {
        "resourceType": "Condition"
    },
a risk factor relevant to the disease, e.g. immunosuppression ("risk-factors" section)
    {
        "resourceType": "Observation"
    },
an exposure to the infectious disease, e.g. sexual contact or travel abroad ("social-history" section)
    {
        "resourceType": "Condition"
    }
the cause of death, if applicable ("cause-death" section)
]
}

The FHIR document is generic and applicable for the different communicable infectious diseases in scope of the CH EKM project. For each resource within the FHIR document, a resource profile is defined to meet specific data needs depending on the context and the reported disease.

Resource profiles

Resource profiles are a way to customize and constrain FHIR resources to meet specific requirements depending on a particular context. These rules might restrict the allowable values for certain elements, specify additional mandatory elements, or define extensions to capture additional data beyond the standard FHIR resources. In the CH EKM Implementation Guide multiple profiles can exist based on the same FHIR resource.

Example: the FHIR resource «Organization» is used to map the organization of the treating physician, the organization of the broker, and the performing laboratory – each of which having its own profile.

Disease-specific profiles for the CH EKM-Document, Composition and Condition further constrain these base profiles, e.g. fixing the diagnosis code or required sections for a particular disease (see Gonorrhoea, Hepatitis C and Invasive Pneumococcal Disease).

See the profiles page for the full resource overview, and the examples page for example FHIR documents per disease.

Example FHIR documents

See the examples page for the list of example FHIR documents (one per supported disease), together with the diagnosed condition, the document profile they conform to, the related logical models (forms) and questionnaires.