US Core Implementation Guide 6.0.0 - STU6
This page is part of the US Core (v6.0.0: STU6) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> . @prefix loinc: <https://loinc.org/rdf/> . @prefix owl: <http://www.w3.org/2002/07/owl#> . @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . # - resource ------------------------------------------------------------------- a fhir:DocumentReference ; fhir:nodeRole fhir:treeRoot ; fhir:meta [ ( fhir:profile [ fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference"^^xsd:anyURI ; fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-documentreference> ] ) ] ; # fhir:status [ fhir:v "current"] ; # fhir:type [ ( fhir:coding [ a loinc:18842-5 ; fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ; fhir:code [ fhir:v "18842-5" ] ; fhir:display [ fhir:v "Discharge Summary" ] ] ) ; fhir:text [ fhir:v "Discharge Summary" ] ] ; # fhir:category ( [ ( fhir:coding [ fhir:system [ fhir:v "http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category"^^xsd:anyURI ] ; fhir:code [ fhir:v "clinical-note" ] ; fhir:display [ fhir:v "Clinical Note" ] ] ) ; fhir:text [ fhir:v "Clinical No" ] ] ) ; # fhir:subject [ fhir:reference [ fhir:v "Patient/example" ] ] ; # fhir:content ( [ fhir:attachment [ fhir:contentType [ fhir:v "text/plain" ] ; fhir:data [ fhir:v "Tm8gYWN0aXZpdHkgcmVzdHJpY3Rpb24sIHJlZ3VsYXIgZGlldCwgZm9sbG93IHVwIGluIHR3byB0byB0aHJlZSB3ZWVrcyB3aXRoIHByaW1hcnkgY2FyZSBwcm92aWRlci4="^^xsd:base64Binary ] ] ] ) ; # fhir:context [ ( fhir:encounter [ fhir:reference [ fhir:v "Encounter/example-1" ] ] ) ] . #