FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example Procedure/HCBS (Turtle)

Patient Care Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Encounter, Patient, Practitioner, RelatedPerson

Raw Turtle (+ also see Turtle/RDF Format Specification)

Example of personal care services provided at person's home

@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 -------------------------------------------------------------------

[a fhir:Procedure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "HCBS"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n			<p>\n				<b> Personal care services provided at person's home</b>\n			</p>\n			<p>\n				<b> Based On</b> : Peter's Long Term Services and Supports (LTSS) care plan</p>\n			<p>\n				<b> Status</b> : completed</p>\n			<p>\n				<b> Beneficiary</b> : Peter James</p>\n			<p>\n				<b> Service Name/Code</b> : Personal care services <span> (Details : {HCPCS code 'T1019' = 'Personal care services, per 15 minutes'})</span>\n			</p>\n			<p>\n				<b> Service Date</b> : Apr 5, 2018</p>\n			<p>\n				<b> Service Provider</b> : Adam Careful</p>\n			<p>\n				<b> Service Delivery Address</b> : Peter's home</p>\n			<p>\n				<b> Service Comment</b> : Assisted with bathing and dressing, doing laundry, and meal preparation</p>\n		</div>"
  ] ; # 
  fhir:basedOn ( [
     fhir:display [ fhir:v "Peter's Long Term Service and Supports (LTSS) Care Plan" ] #   <reference value=\"CarePlan\/example-HCBS\"\/>    
  ] ) ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "https://www.cms.gov/Medicare/Coding/HCPCSReleaseCodeSets/Alpha-Numeric-HCPCS.html"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "T1019" ] ;
       fhir:display [ fhir:v "Personal care services, per 15 minutes, not for an inpatient or resident of a hospital, nursing facility, icf/mr or imd, part of the individualized plan of treatment." ]
     ] ) ;
     fhir:text [ fhir:v "Personal care services" ]
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/example" ] ;
     fhir:display [ fhir:v "Peter James" ]
  ] ; # 
  fhir:occurrence [ fhir:v "2018-04-05"^^xsd:date] ; # 
  fhir:performer ( [
     fhir:actor [
       fhir:reference [ fhir:v "Practitioner/example" ] ;
       fhir:display [ fhir:v "Adam Careful" ]
     ]
  ] ) ; # 
  fhir:location [
     fhir:reference [ fhir:v "Location/ph" ] ;
     fhir:display [ fhir:v "Peter's Home" ]
  ] ; # 
  fhir:note ( [
     fhir:text [ fhir:v "Assisted with bathing and dressing, doing laundry, and meal preparation" ]
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.