Colorado BHA FHIR Implementation Guide
0.3.0-current - ci-build United States of America flag

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

: Example Pregnancy Status Observation

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Observation/BHAObservationPregnancyStatusExample> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "BHAObservationPregnancyStatusExample"] ;
  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: Observation BHAObservationPregnancyStatusExample</b></p><a name=\"BHAObservationPregnancyStatusExample\"> </a><a name=\"hcBHAObservationPregnancyStatusExample\"> </a><p><b>status</b>: Final</p><p><b>category</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/observation-category social-history}\">Social History</span></p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 82810-3}\">Pregnancy Status</span></p><p><b>subject</b>: <a href=\"Patient-BHAClientExample.html\">Emma Jones</a></p><p><b>effective</b>: 2025-08-24 10:39:52+0000</p><p><b>performer</b>: <a href=\"Organization-BHAOrganizationExample.html\">Community Health Clinic</a></p><p><b>value</b>: <span title=\"Codes:{http://snomed.info/sct 77386006}\">Pregnant</span></p></div>"
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.category [
     fhir:index -1 ;
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ] ;
       fhir:Coding.code [ fhir:value "social-history" ] ;
       fhir:Coding.display [ fhir:value "Social History" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Social History" ]
  ] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a loinc:82810-3 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "82810-3" ] ;
       fhir:Coding.display [ fhir:value "Pregnancy status" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Pregnancy Status" ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/BHAClientExample> ;
     fhir:Reference.reference [ fhir:value "Patient/BHAClientExample" ] ;
     fhir:Reference.display [ fhir:value "Emma Jones" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2025-08-24T10:39:52Z"^^xsd:dateTime] ;
  fhir:Observation.performer [
     fhir:index -1 ;
     fhir:link <http://hl7.org/fhir/Organization/BHAOrganizationExample> ;
     fhir:Reference.reference [ fhir:value "Organization/BHAOrganizationExample" ] ;
     fhir:Reference.display [ fhir:value "Community Health Clinic" ]
  ] ;
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a sct:77386006 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.version [ fhir:value "http://snomed.info/sct/731000124108" ] ;
       fhir:Coding.code [ fhir:value "77386006" ] ;
       fhir:Coding.display [ fhir:value "Pregnant" ]
     ] ;
     fhir:CodeableConcept.text [ fhir:value "Pregnant" ]
  ] .

<http://hl7.org/fhir/Patient/BHAClientExample> a fhir:Patient .

<http://hl7.org/fhir/Organization/BHAOrganizationExample> a fhir:Organization .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Observation/BHAObservationPregnancyStatusExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Observation/BHAObservationPregnancyStatusExample.ttl> .