-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUse Case - Sally Person's Long Term Services and Supports (LTSS) Service Plan XML.txt
1216 lines (1216 loc) · 102 KB
/
Use Case - Sally Person's Long Term Services and Supports (LTSS) Service Plan XML.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--
Original : 5/22/2018
Updated :
FHIR version : 3.4
-->
<Bundle xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ./FHIR%203.4.0-14355/bundle.xsd">
<type value="transaction"/>
<!-- eLTSS Service Plan / FHIR Care Plan -->
<entry>
<resource>
<CarePlan>
<id value="careplan1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Sally Person's Long Term Services and Supports (LTSS) Service Plan</b>
</p>
<p>
<b>Plan Effective Date:</b> 2018-05-01 - 2018-12-31</p>
<p>
<b>Step or Action:</b> client action - manage diet</p>
<p>
<b>Step or Action:</b> client action - exercise / join a fitness club</p>
</div>
</text>
<status value="active"/>
<intent value="plan"/>
<subject>
<reference value="Patient/patient1"/>
</subject>
<context>
<reference value="EpisodeOfCare/episode1"/>
</context>
<!-- [eLTSS Plan Effective Date] -->
<period>
<start value="2018-05-01"/>
<end value="2018-12-31"/>
</period>
<author>
<reference value="Practitioner/planner1"/>
</author>
<addresses>
<reference value="Condition/need1"/>
</addresses>
<addresses>
<reference value="Condition/need2"/>
</addresses>
<addresses>
<reference value="Condition/need3"/>
</addresses>
<supportingInfo>
<reference value="Observation/strength1"/>
</supportingInfo>
<supportingInfo>
<reference value="Questionnaire/questionnaire1"/>
</supportingInfo>
<supportingInfo>
<reference value="Contract/contract1"/>
</supportingInfo>
<supportingInfo>
<reference value="RiskAssessment/risk1"/>
</supportingInfo>
<goal>
<reference value="Goal/goal1"/>
</goal>
<goal>
<reference value="Goal/goal2"/>
</goal>
<activity>
<!-- [eLTSS Step or Action] -->
<detail>
<goal>
<reference value="Goal/goal1"/>
</goal>
<status value="not-started"/>
<description value="manage diet"/>
</detail>
</activity>
<activity>
<!-- [eLTSS Step or Action] -->
<detail>
<goal>
<reference value="Goal/goal2"/>
</goal>
<status value="not-started"/>
<description value="exercise / join a fitness club"/>
</detail>
</activity>
<activity>
<reference>
<reference value="ServiceRequest/service1"/>
</reference>
</activity>
<activity>
<reference>
<reference value="ServiceRequest/service2"/>
</reference>
</activity>
<activity>
<reference>
<reference value="ServiceRequest/service3"/>
</reference>
</activity>
</CarePlan>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="CarePlan"/>
</request>
</entry>
<!-- Support Planner (CarePlan author) -->
<entry>
<resource>
<Practitioner>
<id value="planner1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Support Planner / Phone:</b> Mark Planner / (678) 555 1221</p>
</div>
</text>
<!-- identifier is required by US Core -->
<identifier>
<system value="http://www.acme.org/practitioners"/>
<value value="23"/>
</identifier>
<!-- [eLTSS Support Planner Name] -->
<name>
<text value="Mark Planner"/>
<family value="Planner"/>
<given value="Mark"/>
</name>
<!-- [eLTSS Support Planner Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(678) 555 1221"/>
</telecom>
</Practitioner>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Practitioner"/>
</request>
</entry>
<entry>
<resource>
<Practitioner>
<id value="caremgr1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Plan Monitor / Phone:</b> Sam Monitor / (770) 224 1599</p>
</div>
</text>
<!-- identifier is required by US Core -->
<identifier>
<system value="http://www.acme.org/practitioners"/>
<value value="24"/>
</identifier>
<!-- [eLTSS Plan Monitor Name] -->
<name>
<text value="Sam Monitor"/>
<family value="Monitor"/>
<given value="Sam"/>
</name>
<!-- [eLTSS Plan Monitor Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(770) 224 1599"/>
</telecom>
</Practitioner>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Practitioner"/>
</request>
</entry>
<!-- The person (Patient) who is the subject of the document. -->
<entry>
<resource>
<Patient>
<id value="patient1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Person Name:</b> Sally Person</p>
<p>
<b>Person Identifier | Type:</b> 123456ABC | MRN</p>
<p>
<b>Person Phone:</b> (404) 555 1212</p>
<p>
<b>Person Date of Birth:</b> 1935-05-01</p>
<p>
<b>Person Address:</b> 2222 Peachtree Street, Atlanta GA, 30318</p>
<p>
<b>Emergency Contact Name:</b> Jane Daughter</p>
<p>
<b>Emergency Contact Relationship:</b> daughter</p>
<p>
<b>Emergency Contact Phone Number:</b> (770) 224 1544</p>
</div>
</text>
<!-- [eLTSS Person Identifier] & [eLTSS Person Identifier Type] -->
<identifier>
<type>
<text value="MRN"/>
</type>
<value value="123456ABC"/>
</identifier>
<!-- [eLTSS Person Name] -->
<name>
<text value="Sally Person"/>
<family value="Person"/>
<given value="Sally"/>
</name>
<!-- [eLTSS Person Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(404) 555 1212"/>
</telecom>
<!-- [eLTSS Person Date of Birth] -->
<birthDate value="1935-05-01"/>
<!-- [eLTSS Person Address] -->
<address>
<text value="2222 Peachtree Street, Atlanta GA, 30318"/>
<line value="2222 Peachtree Street"/>
<city value="Atlanta"/>
<district value="Fulton"/>
<state value="GA"/>
<postalCode value="30318"/>
</address>
<!-- [eLTSS Emergency Contact Name] & [eLTSS Emergency Contact Relationship] & [eLTSS Emergency Contact Phone Number] -->
<contact>
<relationship>
<!-- code value indicates emergency contact -->
<coding>
<system value="http://hl7.org/fhir/v2/0131"/>
<code value="C"/>
</coding>
</relationship>
<relationship>
<!-- code value indicates daughter -->
<coding>
<system value="http://hl7.org/fhir/v3/RoleCode"/>
<code value="DAUG"/>
</coding>
</relationship>
<name>
<text value="Jane Daughter"/>
<family value="Daughter"/>
<given value="Jane"/>
</name>
<telecom>
<system value="phone"/>
<value value="(770) 224 1544"/>
</telecom>
</contact>
</Patient>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Patient"/>
</request>
</entry>
<entry>
<resource>
<!-- links the care plan to the plan monitor/case manager -->
<!-- [eLTSS Plan Monitor Name] & [eLTSS Plan Monitor Phone Number] -->
<EpisodeOfCare>
<id value="episode1"/>
<status value="active"/>
<patient>
<reference value="Patient/patient1"/>
</patient>
<careManager>
<reference value="Practitioner/caremgr1"/>
</careManager>
</EpisodeOfCare>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="EpisodeOfCare"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Emergency Backup Plan] -->
<CarePlan>
<id value="careplan2"/>
<!-- reference to the "main" care plan -->
<partOf>
<reference value="CarePlan/careplan1"/>
</partOf>
<status value="active"/>
<intent value="plan"/>
<description value="Snow Emergencies: A shelf stable blizzard meal is delivered to Meals On Wheels clients in early winter. It is to be eaten in the unlikely event of cancellation. Blizzard meals are donated by the Sheboygan Service Club."/>
<subject>
<reference value="Patient/patient1"/>
</subject>
</CarePlan>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="CarePlan"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Goal] -->
<Goal>
<id value="goal1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Person Goal:</b> lose weight</p>
</div>
</text>
<status value="accepted"/>
<description>
<text value="lose weight"/>
</description>
<subject>
<reference value="Patient/patient1"/>
</subject>
</Goal>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Goal"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Goal] -->
<Goal>
<id value="goal2"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Person Goal:</b> dance at daughter's wedding</p>
</div>
</text>
<status value="accepted"/>
<description>
<text value="dance at daughter's wedding"/>
</description>
<subject>
<reference value="Patient/patient1"/>
</subject>
</Goal>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Goal"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Assessed Need] -->
<Condition>
<id value="need1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Assessed Need:</b> lack of transportation</p>
</div>
</text>
<!-- US Core requires the use of the Condition Category Codes valueset, which does not have a value -->
<!-- corresponding to "assessed need". The code list is extensible, but for the purposes of this sample -->
<!-- just using the text data element. -->
<category>
<text value="assessed-need"/>
</category>
<code>
<text value="lack of transportation"/>
</code>
<subject>
<reference value="Patient/patient1"/>
</subject>
</Condition>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Condition"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Assessed Need] -->
<Condition>
<id value="need2"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Assessed Need:</b> difficulty in bathing</p>
</div>
</text>
<category>
<text value="assessed-need"/>
</category>
<code>
<text value="difficulty in bathing"/>
</code>
<subject>
<reference value="Patient/patient1"/>
</subject>
</Condition>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Condition"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Assessed Need] -->
<Condition>
<id value="need3"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Assessed Need:</b> difficulty in dressing</p>
</div>
</text>
<category>
<text value="assessed-need"/>
</category>
<code>
<text value="difficulty in dressing"/>
</code>
<subject>
<reference value="Patient/patient1"/>
</subject>
</Condition>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Condition"/>
</request>
</entry>
<entry>
<resource>
<Practitioner>
<id value="provider1"/>
<!-- identifier is required by US Core -->
<identifier>
<system value="http://www.acme.org/practitioners"/>
<value value="987654"/>
</identifier>
<!-- [eLTSS Service Provider Name] -->
<name>
<text value="Lisa Performer"/>
<family value="Performer"/>
<given value="Lisa"/>
</name>
<!-- [eLTSS Service Provider Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(404) 555 1213"/>
</telecom>
</Practitioner>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Practitioner"/>
</request>
</entry>
<entry>
<resource>
<Organization>
<id value="provider2"/>
<!-- identifier is required by US Core -->
<identifier>
<value value="24680"/>
</identifier>
<!-- [eLTSS Service Provider Name] -->
<name value="The Transporter, Inc."/>
<!-- [eLTSS Service Provider Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(404) 555 1313"/>
</telecom>
<!-- address is required by US Core -->
<address>
<text value="111 Business Street, Atlanta GA, 30318"/>
</address>
</Organization>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Organization"/>
</request>
</entry>
<entry>
<!-- This practitioner is the person signing for the transportation provider organization -->
<resource>
<Practitioner>
<id value="provider3"/>
<!-- identifier is required by US Core -->
<identifier>
<system value="http://www.acme.org/practitioners"/>
<value value="11223344"/>
</identifier>
<!-- [eLTSS Service Provider Name] -->
<name>
<text value="Bill Driver"/>
<family value="Driver"/>
<given value="Bill"/>
</name>
<!-- [eLTSS Service Provider Phone Number] -->
<telecom>
<system value="phone"/>
<value value="(678) 111 2222"/>
</telecom>
</Practitioner>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Practitioner"/>
</request>
</entry>
<entry>
<resource>
<Organization>
<id value="funding1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Service Funding Source:</b> Georgia Department of Community Health</p>
</div>
</text>
<!-- identifier is required by US Core -->
<identifier>
<value value="ICWP"/>
</identifier>
<!-- [eLTSS Service Funding Source] -->
<name value="Georgia Department of Community Health"/>
<!-- address is required by US Core -->
<address>
<text value="2 Main Street, Atlanta GA, 30318"/>
</address>
</Organization>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Organization"/>
</request>
</entry>
<!-- daughter, who is emergency contact and performing a non-paid service -->
<entry>
<resource>
<RelatedPerson>
<id id="daughter1"/>
<patient>
<reference value="Patient/patient1"/>
</patient>
<relationship>
<!-- [eLTSS Non-Paid Service Provider Relationship] -->
<!-- code value indicates daughter -->
<coding>
<system value="http://hl7.org/fhir/v3/RoleCode"/>
<code value="DAUG"/>
</coding>
</relationship>
<name>
<text value="Jane Daughter"/>
<family value="Daughter"/>
<given value="Jane"/>
</name>
</RelatedPerson>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="RelatedPerson"/>
</request>
</entry>
<!-- person's legal guardian -->
<entry>
<resource>
<RelatedPerson>
<id id="guardian1"/>
<patient>
<reference value="Patient/patient1"/>
</patient>
<name>
<text value="William Barrister"/>
<family value="Barrister"/>
<given value="William"/>
</name>
</RelatedPerson>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="RelatedPerson"/>
</request>
</entry>
<entry>
<resource>
<!-- Service #1 -->
<ServiceRequest>
<id id="service1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Service Name:</b> Personal care services, per 15 minutes - 5 units per week</p>
<p>
<b>Service Start Date / End Date:</b> 2018-05-01 / 2018-12-31</p>
</div>
</text>
<status value="active"/>
<intent value="plan"/>
<!-- [eLTSS Service Name] -->
<code>
<coding>
<system value="2.16.840.1.113883.6.14"/>
<code value="T1019"/>
</coding>
<text value="Personal care services, per 15 minutes"/>
</code>
<!-- Data below represents 5 quarter hours of service per week -->
<quantityRatio>
<numerator>
<!-- [eLTSS Service Unit Quantity] -->
<value value="5"/>
<!-- [eLTSS Unit of Service Type] -->
<unit value="quarter hour"/>
</numerator>
<!-- [eLTSS Service Unit Quantity Interval] -->
<denominator>
<value value="1"/>
<unit value="week"/>
</denominator>
</quantityRatio>
<!-- subject is required by FHIR -->
<subject>
<reference value="Patient/patient1"/>
</subject>
<occurrencePeriod>
<!-- [eLTSS Service Start Date] -->
<start value="2018-05-01"/>
<!-- [eLTSS Service End Date] -->
<end value="2018-12-31"/>
</occurrencePeriod>
<performer>
<reference value="Practitioner/provider1"/>
</performer>
<!-- [eLTSS Service Delivery Address] -->
<locationReference>
<reference value="Location/location1"/>
</locationReference>
</ServiceRequest>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="ServiceRequest"/>
</request>
</entry>
<entry>
<resource>
<!-- Service #2 -->
<ServiceRequest>
<id id="service2"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Service Name:</b> Non-emergency transportation; encounter/trip - 10 trips total</p>
<p>
<b>Service Start Date / End Date:</b> 2018-07-01 / 2018-12-31</p>
</div>
</text>
<!-- [eLTSS Self-directed Service Indicator] -->
<extension url="http://hl7.org/fhir/StructureDefinition/procedure-directedBy">
<valueCodeableConcept>
<text value="self"/>
</valueCodeableConcept>
</extension>
<status value="active"/>
<intent value="plan"/>
<!-- [eLTSS Service Name] -->
<code>
<coding>
<system value="2.16.840.1.113883.6.14"/>
<code value="T2003"/>
</coding>
<text value="Non-emergency transportation; encounter/trip"/>
</code>
<quantityQuantity>
<!-- [eLTSS Service Unit Quantity] -->
<value value="10"/>
<!-- [eLTSS Unit of Service Type] -->
<unit value="trips"/>
</quantityQuantity>
<!-- subject is required by FHIR -->
<subject>
<reference value="Patient/patient1"/>
</subject>
<occurrencePeriod>
<!-- [eLTSS Service Start Date] -->
<start value="2018-07-01"/>
<!-- [eLTSS Service End Date] -->
<end value="2018-12-31"/>
</occurrencePeriod>
<performer>
<reference value="Organization/provider2"/>
</performer>
<insurance>
<reference value="Coverage/coverage1"/>
</insurance>
<supportingInfo>
<reference value="Claim/claim1"/>
</supportingInfo>
<!-- [eLTSS Service Comment] -->
<note>
<text value="Service provider will provide a reminder the business day before the trip, and will call when on the way."/>
</note>
</ServiceRequest>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="ServiceRequest"/>
</request>
</entry>
<entry>
<resource>
<!-- Service #3 -->
<ServiceRequest>
<id id="service3"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Service Name:</b> House cleaning - one per week</p>
<p>
<b>Service Start Date / End Date:</b> 2018-05-01 / 2018-12-31</p>
</div>
</text>
<status value="active"/>
<intent value="plan"/>
<!-- [eLTSS Service Name] -->
<code>
<text value="House cleaning"/>
</code>
<!-- Data below represents 1 visit per 1 week -->
<quantityRatio>
<numerator>
<!-- [eLTSS Service Unit Quantity] -->
<value value="1"/>
<!-- [eLTSS Unit of Service Type] -->
<unit value="visit"/>
</numerator>
<!-- [eLTSS Service Unit Quantity Interval] -->
<denominator>
<value value="1"/>
<unit value="week"/>
</denominator>
</quantityRatio>
<!-- subject is required by FHIR -->
<subject>
<reference value="Patient/patient1"/>
</subject>
<occurrencePeriod>
<!-- [eLTSS Service Start Date] -->
<start value="2018-05-01"/>
<!-- [eLTSS Service End Date] -->
<end value="2018-12-31"/>
</occurrencePeriod>
<performer>
<reference value="RelatedPerson/daughter1"/>
</performer>
</ServiceRequest>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="ServiceRequest"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Strength] -->
<Observation>
<id id="strength1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Person Strength:</b> Able to manage her bills. Has strong family support.</p>
</div>
</text>
<status value="final"/>
<code>
<text value="Strength"/>
</code>
<valueString value="Able to manage her bills. Has strong family support."/>
</Observation>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Observation"/>
</request>
</entry>
<entry>
<resource>
<!-- [eLTSS Preference] -->
<Observation>
<id id="pref1"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<p>
<b>Person Preference:</b> Accessing the ICWP Waiver for her current service needs, and would like to remain on ICWP and continue with her current services.</p>
</div>
</text>
<status value="final"/>
<code>
<!-- code and system indicates "discussion about preferences" -->
<coding>
<system value="2.16.840.1.113883.3.88.12.80.28"/>
<code value="223486007"/>
</coding>
</code>
<valueString value="Accessing the ICWP Waiver for her current service needs, and would like to remain on ICWP and continue with her current services."/>
</Observation>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Observation"/>
</request>
</entry>
<entry>
<resource>
<RiskAssessment>
<id id="risk1"/>
<status value="final"/>
<!-- subject is required by FHIR (starting with 3.4.0) -->
<subject>
<reference value="Patient/patient1"/>
</subject>
<!-- [eLTSS Identified Risk] -->
<prediction>
<outcome>
<coding>
<!-- code indicates at risk for falls -->
<system value="2.16.840.1.113883.6.96"/>
<code value="129839007"/>
</coding>
</outcome>
</prediction>
<!-- [eLTSS Risk Management Plan] -->
<mitigation value="risk management plan text goes here"/>
</RiskAssessment>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="RiskAssessment"/>
</request>
</entry>
<entry>
<resource>
<Questionnaire>
<id value="questionnaire1"/>
<status value="active"/>
<!-- [eLTSS Person Setting Choice Indicator] -->
<item>
<linkId value="q1"/>
<text value="Did you choose the setting in which you reside?"/>
<type value="boolean"/>
</item>
<!-- [eLTSS Person Setting Choice Options] -->
<item>
<linkId value="q2"/>
<text value="What alternative home and community-based settings were considered?"/>
<type value="string"/>
</item>
<!-- [eLTSS Service Options Given Indicator] -->
<item>
<linkId value="q3"/>
<text value="Were you given a choice of services outlined in the plan?"/>
<type value="boolean"/>
</item>
<!-- [eLTSS Service Selection Indicator] -->
<item>
<linkId value="q4"/>
<text value="Did you participate in the selection of services outlined in the plan?"/>
<type value="boolean"/>
</item>
<!-- [eLTSS Service Plan Agreement Indicator] -->
<item>
<linkId value="q5"/>
<text value="Do you agree to the services outlined in the plan?"/>
<type value="boolean"/>
</item>
<!-- [eLTSS Service Provider Options Given Indicator] -->
<item>
<linkId value="q6"/>
<text value="Were you offerred a choice of providers for each service?"/>
<type value="boolean"/>
</item>
<!-- [eLTSS Service Provider Selection Agreement Indicator] -->
<item>
<linkId value="q7"/>
<text value="Do you feel you made an informed choice in selecting the provider for each service?"/>
<type value="boolean"/>
</item>
</Questionnaire>
</resource>
<!-- Action to create this resource in a FHIR server -->
<request>
<method value="POST"/>
<url value="Questionnaire"/>
</request>
</entry>
<entry>
<resource>
<QuestionnaireResponse>
<id value="questionnaireresponse1"/>
<questionnaire value="Questionnaire/questionnaire1"/>
<status value="completed"/>
<!-- [eLTSS Person Setting Choice Indicator] -->
<item>
<linkId value="q1"/>
<answer>
<valueBoolean value="true"/>
</answer>
</item>
<!-- [eLTSS Person Setting Choice Options] -->
<item>
<linkId value="q2"/>
<answer>
<valueString value="Assisted living facility"/>
</answer>
</item>
<!-- [eLTSS Service Options Given Indicator] -->
<item>
<linkId value="q3"/>
<answer>
<valueBoolean value="true"/>
</answer>
</item>
<!-- [eLTSS Service Selection Indicator] -->
<item>
<linkId value="q4"/>
<answer>
<valueBoolean value="true"/>
</answer>
</item>
<!-- [eLTSS Service Plan Agreement Indicator] -->
<item>
<linkId value="q5"/>
<answer>
<valueBoolean value="true"/>
</answer>
</item>
<!-- [eLTSS Service Provider Options Given Indicator] -->
<item>
<linkId value="q6"/>
<answer>
<valueBoolean value="true"/>
</answer>
</item>
<!-- [eLTSS Service Provider Selection Agreement Indicator] -->
<item>
<linkId value="q7"/>
<answer>
<valueBoolean value="true"/>