Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Below a JSON example is posted that can be used as a template to stub ClinicalImpression resources.

Points of Interest:

subject

A reference to the Patient.

context

A reference to the Patient's EpisodeOfCare.

investigation

This holds an array of investigations that have be carried out. Code  describes the kind of investigation and the item holds references to the resources that was investigated. Currently this can be Observation resources and QuestionnaireResponse resources.

Currently. references are not implemented, so only a Code can be stubbed.

finding

In this array the Processing service will state explicit findings from the investigations. This will be a set of Codeable concepts.

Currently. this is not implemented, so the element must be empty for now.

summary

This represents a text explaining the overall findings

Code Block
languagejava
titleClinicalImpression JSON example
{
  "resourceType": "ClinicalImpression",
  "meta": {
    "profile": [
      "http://ehealth.sundhed.dk/fhir/StructureDefinition/ehealth-clinicalimpression"
    ]
  },
  "status": "completed",
  "language": "da",
  "code": {
    "coding": [
      {
        "system": "http://ehealth.sundhed.dk/cs/clinicalimpression-codes",
        "code": "TriagingResult"
      }
    ]
  },
  "subject": {
    "reference": "https://vendortest2.ehealth.sundhed.dk/trifork-fhir-server/Patient/203"
  },
  "context": {
    "reference": "https://vendortest2.ehealth.sundhed.dk/hapi-fhir-server/fhir/EpisodeOfCare/67"
  },
 
  "investigation":[
      {
          "code": {
              "coding": [
                {
                  "system": "http://snomed.info/sct",
                  "code": "271336007"
                }
              ]
            },
            "item":[
            {
              "reference": "https://vendortest2.ehealth.sundhed.dk/measurement/fhir/Observation/402"
            }

            ]
      
      }
  ],

  "finding": [
    
  ],


  
  "summary": "Patients iltmætning er indenfor de normale grænseværdier"
}

...