US Behavioral Health Profiles Implementation Guide, published by . This guide is not an authorized publication; it is the continuous build for version 0.1.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/us-behavioral-health-profiles/ and changes regularly. See the Directory of published versions
: mental-health-progress-note-example - TTL Representation
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 -------------------------------------------------------------------
# Add an author and date and .category.text to all clinical note examples
a fhir:DocumentReference ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "mental-health-progress-example-1"] ; #
fhir:meta [
( fhir:profile [
fhir:v "http://hl7.org/fhir/us/bhp/StructureDefinition/mental-health-clinical-notes"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/us/bhp/StructureDefinition/mental-health-clinical-notes> ] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: DocumentReference mental-health-progress-example-1</b></p><a name=\"mental-health-progress-example-1\"> </a><a name=\"hcmental-health-progress-example-1\"> </a><a name=\"mental-health-progress-example-1-en-US\"> </a><p><b>status</b>: Current</p><p><b>type</b>: <span title=\"Codes:{http://loinc.org 78306-8}\">Mental Health Progress Note</span></p><p><b>category</b>: <span title=\"Codes:{http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category clinical-note}\">Clinical Note</span></p><p><b>subject</b>: <a href=\"Patient-bh-patient-example.html\">James Wolff</a></p><p><b>date</b>: 2024-01-01</p><p><b>author</b>: <a href=\"Practitioner-mental-health-provider-example-1.html\">Dr. Lazslo Cravensworth</a></p><blockquote><p><b>content</b></p><h3>Attachments</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>ContentType</b></td><td><b>Data</b></td></tr><tr><td style=\"display: none\">*</td><td>text/plain</td><td><code>Tm8gYWN0aXZpdHkgcmVzdHJpY3Rpb24sIHJlZ3VsYXIgZGlldCwgZm9sbG93IHVwIGluIHR3byB0byB0aHJlZSB3ZWVrcyB3aXRoIHByaW1hcnkgY2FyZSBwcm92aWRlci4=</code></td></tr></table></blockquote></div>"
] ; #
fhir:status [ fhir:v "current"] ; #
fhir:type [
( fhir:coding [
a loinc:78306-8 ;
fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
fhir:code [ fhir:v "78306-8" ] ;
fhir:display [ fhir:v "Mental Health Progress Note" ] ] ) ;
fhir:text [ fhir:v "Mental Health Progress Note" ]
] ; #
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 Note" ]
] ) ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/bh-patient-example" ] ;
fhir:display [ fhir:v "James Wolff" ]
] ; #
fhir:date [ fhir:v "2024-01-01"^^xsd:dateTime] ; #
fhir:author ( [
fhir:reference [ fhir:v "Practitioner/mental-health-provider-example-1" ] ;
fhir:display [ fhir:v "Dr. Lazslo Cravensworth" ]
] ) ; #
fhir:content ( [
fhir:attachment [
fhir:contentType [ fhir:v "text/plain" ] ;
fhir:data [ fhir:v "Tm8gYWN0aXZpdHkgcmVzdHJpY3Rpb24sIHJlZ3VsYXIgZGlldCwgZm9sbG93IHVwIGluIHR3byB0byB0aHJlZSB3ZWVrcyB3aXRoIHByaW1hcnkgY2FyZSBwcm92aWRlci4="^^xsd:base64Binary ] ]
] ) . #