US Core Implementation Guide
7.0.0 - STU7 United States of America flag

US Core Implementation Guide, published by HL7 International / Cross-Group Projects. This guide is not an authorized publication; it is the continuous build for version 7.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/US-Core/ and changes regularly. See the Directory of published versions

: Discharge Summary Example - JSON Representation

Page standards status: Informative

Raw json | Download


{
  "resourceType" : "DocumentReference",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference|7.0.0"
    ]
  },
  "status" : "current",
  "type" : {
    "coding" : [
      {
        "system" : "http://loinc.org",
        "code" : "18842-5",
        "display" : "Discharge Summary"
      }
    ],
    "text" : "Discharge Summary"
  },
  "category" : [
    {
      "coding" : [
        {
          "system" : "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category",
          "code" : "clinical-note",
          "display" : "Clinical Note"
        }
      ],
      "text" : "Clinical No"
    }
  ],
  "subject" : {
    🔗 "reference" : "Patient/example"
  },
  "content" : [
    {
      "attachment" : {
        "contentType" : "text/plain",
        "data" : "Tm8gYWN0aXZpdHkgcmVzdHJpY3Rpb24sIHJlZ3VsYXIgZGlldCwgZm9sbG93IHVwIGluIHR3byB0byB0aHJlZSB3ZWVrcyB3aXRoIHByaW1hcnkgY2FyZSBwcm92aWRlci4="
      }
    }
  ],
  "context" : {
    "encounter" : [
      {
        🔗 "reference" : "Encounter/example-1"
      }
    ]
  }
}