Colorado BHA FHIR Implementation Guide, published by Colorado Behavioral Health Administration. This guide is not an authorized publication; it is the continuous build for version 0.3.0-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/CoBHA/CoBHRM-FHIR-IG/ and changes regularly. See the Directory of published versions
| Page standards status: Informative |
@prefix fhir: <http://hl7.org/fhir/> .
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/EpisodeOfCare/EpisodeOfCareExamplePG> a fhir:EpisodeOfCare ;
fhir:nodeRole fhir:treeRoot ;
fhir:Resource.id [ fhir:value "EpisodeOfCareExamplePG"] ;
fhir:Resource.meta [
fhir:Meta.lastUpdated [ fhir:value "2024-01-01T12:00:00Z"^^xsd:dateTime ]
] ;
fhir:Resource.language [ fhir:value "en"] ;
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ] ;
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: EpisodeOfCare EpisodeOfCareExamplePG</b></p><a name=\"EpisodeOfCareExamplePG\"> </a><a name=\"hcEpisodeOfCareExamplePG\"> </a><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Last updated: 2024-01-01 12:00:00+0000</p></div><p><b>status</b>: Finished</p><blockquote><p><b>statusHistory</b></p><p><b>status</b>: Active</p><p><b>period</b>: 2024-01-01 --> (ongoing)</p></blockquote><blockquote><p><b>statusHistory</b></p><p><b>status</b>: Finished</p><p><b>period</b>: 2024-01-01 --> 2024-01-15</p></blockquote><p><b>type</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/episodeofcare-type cacp}\">Community-based aged care</span></p><h3>Diagnoses</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Condition</b></td><td><b>Role</b></td></tr><tr><td style=\"display: none\">*</td><td><a href=\"Condition-PregnancyConditionExample.html\">Pregnancy Diagnosis</a></td><td><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/diagnosis-role AD}\">Admission diagnosis</span></td></tr></table><p><b>patient</b>: <a href=\"Patient-BHAClientExample.html\">Emma Jones</a></p><p><b>managingOrganization</b>: <a href=\"Organization-BHAOrganizationExample.html\">Community Health Clinic</a></p><p><b>period</b>: 2024-01-01 --> 2024-01-15</p></div>"
] ;
fhir:EpisodeOfCare.status [ fhir:value "finished"] ;
fhir:EpisodeOfCare.statusHistory [
fhir:index -1 ;
fhir:EpisodeOfCare.statusHistory.status [ fhir:value "active" ] ;
fhir:EpisodeOfCare.statusHistory.period [
fhir:Period.start [ fhir:value "2024-01-01"^^xsd:date ]
]
], [
fhir:index -1 ;
fhir:EpisodeOfCare.statusHistory.status [ fhir:value "finished" ] ;
fhir:EpisodeOfCare.statusHistory.period [
fhir:Period.start [ fhir:value "2024-01-01"^^xsd:date ] ;
fhir:Period.end [ fhir:value "2024-01-15"^^xsd:date ]
]
] ;
fhir:EpisodeOfCare.type [
fhir:index -1 ;
fhir:CodeableConcept.coding [
fhir:index -1 ;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/episodeofcare-type" ] ;
fhir:Coding.code [ fhir:value "cacp" ]
]
] ;
fhir:EpisodeOfCare.diagnosis [
fhir:index -1 ;
fhir:EpisodeOfCare.diagnosis.condition [
fhir:link <http://hl7.org/fhir/Condition/PregnancyConditionExample> ;
fhir:Reference.reference [ fhir:value "Condition/PregnancyConditionExample" ] ;
fhir:Reference.display [ fhir:value "Pregnancy Diagnosis" ]
] ;
fhir:EpisodeOfCare.diagnosis.role [
fhir:CodeableConcept.coding [
fhir:index -1 ;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/diagnosis-role" ] ;
fhir:Coding.code [ fhir:value "AD" ]
]
]
] ;
fhir:EpisodeOfCare.patient [
fhir:link <http://hl7.org/fhir/Patient/BHAClientExample> ;
fhir:Reference.reference [ fhir:value "Patient/BHAClientExample" ] ;
fhir:Reference.display [ fhir:value "Emma Jones" ]
] ;
fhir:EpisodeOfCare.managingOrganization [
fhir:link <http://hl7.org/fhir/Organization/BHAOrganizationExample> ;
fhir:Reference.reference [ fhir:value "Organization/BHAOrganizationExample" ] ;
fhir:Reference.identifier [
fhir:Identifier.system [ fhir:value "http://hl7.org/fhir/sid/us-npi" ] ;
fhir:Identifier.value [ fhir:value "1234567893" ]
] ;
fhir:Reference.display [ fhir:value "Community Health Clinic" ]
] ;
fhir:EpisodeOfCare.period [
fhir:Period.start [ fhir:value "2024-01-01"^^xsd:date ] ;
fhir:Period.end [ fhir:value "2024-01-15"^^xsd:date ]
] .
<http://hl7.org/fhir/Condition/PregnancyConditionExample> a fhir:Condition .
<http://hl7.org/fhir/Patient/BHAClientExample> a fhir:Patient .
<http://hl7.org/fhir/Organization/BHAOrganizationExample> a fhir:Organization .
# - ontology header ------------------------------------------------------------
<http://hl7.org/fhir/EpisodeOfCare/EpisodeOfCareExamplePG.ttl> a owl:Ontology ;
owl:imports fhir:fhir.ttl ;
owl:versionIRI <http://build.fhir.org/EpisodeOfCare/EpisodeOfCareExamplePG.ttl> .
IG © 2025+ Colorado Behavioral Health Administration.
Package us.co.bha-ig#0.3.0-current based on FHIR 4.0.1.
Generated
2026-07-06
Links: Table of Contents |
QA Report
|