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.2.0 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
: Example Baby Patient Resource
Raw ttl | Download
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "BabyPatientExample"] ; #
fhir:meta [
fhir:lastUpdated [ fhir:v "2025-10-28T18:30:40-07:00"^^xsd:dateTime ] ;
( fhir:profile [
fhir:v "http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-client"^^xsd:anyURI ;
fhir:l <http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-client> ] )
] ; #
fhir:language [ fhir:v "en"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Patient BabyPatientExample</b></p><a name=\"BabyPatientExample\"> </a><a name=\"hcBabyPatientExample\"> </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: 2025-10-28 18:30:40-0700; Language: en</p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-bha-client.html\">Colorado BHA Client Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Crystal Snow White Female, DoB: 2025-06-20 ( Medical record number (use: usual, ))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-MaritalStatus S}\">Never Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Race classification per BHA requirements\"><a href=\"StructureDefinition-bha-race.html\">BHA Race Extension</a></td><td colspan=\"3\"><span title=\"Codes:{http://bha.colorado.gov/fhir/bha-ig/CodeSystem/bha-race-cs 02}\">Asian</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"A code classifying the person's sex assigned at birth as specified by the [Office of the National Coordinator for Health IT (ONC)](https://www.healthit.gov/newsroom/about-onc). This extension aligns with the C-CDA Birth Sex Observation (LOINC 76689-9). After version 6.0.0, this extension is no longer a *USCDI Requirement*.\"><a href=\"http://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-birthsex.html\">US Core Birth Sex Extension</a></td><td colspan=\"3\">F</td></tr></table></div>"^^rdf:XMLLiteral ]
] ; #
fhir:extension ( [
fhir:url [
fhir:v "http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-race"^^xsd:anyURI ;
fhir:l <http://bha.colorado.gov/fhir/bha-ig/StructureDefinition/bha-race> ] ;
fhir:value [
a fhir:CodeableConcept ;
( fhir:coding [
fhir:system [
fhir:v "http://bha.colorado.gov/fhir/bha-ig/CodeSystem/bha-race-cs"^^xsd:anyURI ;
fhir:l <http://bha.colorado.gov/fhir/bha-ig/CodeSystem/bha-race-cs> ] ;
fhir:code [ fhir:v "02" ] ;
fhir:display [ fhir:v "Asian" ] ] ) ]
] [
fhir:url [
fhir:v "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex"^^xsd:anyURI ;
fhir:l <http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex> ] ;
fhir:value [
a fhir:Code ;
fhir:v "F" ]
] ) ; #
fhir:identifier ( [
fhir:use [ fhir:v "usual" ] ;
fhir:type [
( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203> ] ;
fhir:code [ fhir:v "MR" ] ] ) ] ;
fhir:system [
fhir:v "http://hospital.example.org"^^xsd:anyURI ;
fhir:l <http://hospital.example.org> ] ;
fhir:value [ fhir:v "123456" ]
] ) ; #
fhir:active [ fhir:v true] ; #
fhir:name ( [
fhir:family [ fhir:v "White" ] ;
( fhir:given [ fhir:v "Crystal" ] [ fhir:v "Snow" ] )
] ) ; #
fhir:gender [ fhir:v "female"] ; #
fhir:birthDate [ fhir:v "2025-06-20"^^xsd:date] ; #
fhir:maritalStatus [
( fhir:coding [
fhir:system [
fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ;
fhir:l <http://terminology.hl7.org/CodeSystem/v3-MaritalStatus> ] ;
fhir:code [ fhir:v "S" ] ] )
] . #