-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathNL_core_patient_01.json
More file actions
4262 lines (4262 loc) · 196 KB
/
Copy pathNL_core_patient_01.json
File metadata and controls
4262 lines (4262 loc) · 196 KB
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
{
"resourceType": "Bundle",
"identifier": {
"system": "urn:ietf:rfc:4122",
"value": "8b559a07-8b4e-4ab3-a8e7-d3ce576457af"
},
"type": "document",
"timestamp": "2023-09-29T10:07:17.076+00:00",
"entry": [
{
"fullUrl": "urn:uuid:3898688c-df30-4d56-9c70-022e8a5cab0e",
"resource": {
"resourceType": "Composition",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><div><h1>Allergies and Intolerances</h1><div><div><table class=\"hapiPropertyTable\"><caption>Allergies And Intolerances</caption><thead><tr><th>Allergen</th><th>Status</th><th>Category</th><th>Reaction</th><th>Severity</th><th>Comments</th><th>Onset</th></tr></thead><tbody><tr id=\"AllergyIntolerance-urn:uuid:a680e936-a35a-4c07-97ef-a403034ef88a\"><td> Penicilline </td><td> active </td><td> MEDICATION </td><td> rode huiduitslag op armen </td><td> moderate </td><td> test toelichting </td><td>Sun Jan 01 00:00:00 UTC 1995</td></tr></tbody></table></div></div></div><div><h1>Medication List</h1><div><div><table class=\"hapiPropertyTable\"><caption>Medication Summary: Medication Requests</caption><thead><tr><th>Medication</th><th>Status</th><th>Route</th><th>Sig</th><th>Comments</th><th>Authored Date</th></tr></thead><tbody><tr id=\"MedicationRequest-urn:uuid:e2a330ac-084d-4c75-8295-8953f1340b32\"><td> METOCLOPRAMIDE 20MG ZETPIL </td><td>Unknown</td><td></td><td></td><td></td><td>Mon Jul 13 00:00:00 UTC 2015</td></tr><tr id=\"MedicationRequest-urn:uuid:a298394a-eae9-4ba7-8690-72d201ce5d6f\"><td> LISINOPRIL 10MG TABLET </td><td>Unknown</td><td></td><td></td><td></td><td>Thu Sep 08 16:00:00 UTC 2016</td></tr><tr id=\"MedicationRequest-urn:uuid:f00707a8-b5ee-4296-a4a0-6fdb050332f9\"><td> METHOTREXAAT INJVLST 15MG/0,6ML(25MG/ML) WWSP PA </td><td>Unknown</td><td></td><td></td><td></td><td>Sun Mar 06 08:12:30 UTC 2016</td></tr></tbody></table><table class=\"hapiPropertyTable\"><caption>Medication Summary: Medication Statements</caption><thead><tr><th>Medication</th><th>Status</th><th>Route</th><th>Sig</th><th>Date</th></tr></thead><tbody><tr id=\"MedicationStatement-urn:uuid:848c2cfb-0560-4761-8745-e0120ee296c4\"><td> PANTOPRAZOL 40MG INJPDR </td><td>Active</td><td></td><td></td><td></td></tr></tbody></table></div></div></div><div><h1>Problem List</h1><div><div><table class=\"hapiPropertyTable\"><caption>Problem List</caption><thead><tr><th>Medical Problems</th><th>Status</th><th>Comments</th><th>Onset Date</th></tr></thead><tbody><tr id=\"Condition-urn:uuid:5048222b-af51-44f2-aeac-2e18a41a643a\"><td> amyotrofische laterale sclerose </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:0c5bb4e1-8cb4-489c-8723-bd4c3eaa1812\"><td> vasculaire dementie </td><td> active </td><td> De laatste weken erg onrustig in de nacht </td><td></td></tr><tr id=\"Condition-urn:uuid:53f0e429-e8dc-4481-9975-84000b1c6eab\"><td> Hartfalen </td><td> active </td><td> Houdt veel vocht vast, kortademig </td><td></td></tr><tr id=\"Condition-urn:uuid:6fa73a5d-c8b3-459b-9218-e1ebd4cfa2bc\"><td> Geneesmiddel-interacties </td><td> active </td><td> Huiduitslag met veel jeuk door medicatie </td><td></td></tr><tr id=\"Condition-urn:uuid:958ecb9f-300a-4820-a4e2-ed0d56aae9fa\"><td> Voogdij </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:caba424e-4d7e-41b5-bf96-d7d38219bf54\"><td> Multiple sclerose </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:34064a3c-04d7-4145-adb7-e190cfe06127\"><td> Presbyacusis </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:e04ef9e8-13c3-4925-9705-5c298b940ddc\"><td> Paroxismaal boezemfibrilleren </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:762d22ad-ad90-4e9a-8870-bad694cd2618\"><td> abnormaal gewichtsverlies </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:392d5050-dfc8-494c-bd8e-f0291b837618\"><td> bevinding betreffende zwangerschap </td><td> active </td><td> Mevrouw is vaak misselijk in de ochtend. </td><td></td></tr><tr id=\"Condition-urn:uuid:eae3b0a2-9c9e-4a2c-bfe7-d5edb143fedd\"><td> Artrose </td><td> active </td><td> Beperking bij het bewegen van het gewricht, drukpijn door slijtage van twee compartimenten van de linker knie. </td><td></td></tr><tr id=\"Condition-urn:uuid:d22d2376-e553-405f-966e-d2abac7f3e5b\"><td> eindstandig colostoma </td><td> active </td><td> Pati\u00c3\u00abnt heeft veel last van dit type stoma. </td><td> Wed Jan 01 00:00:00 UTC 2014 </td></tr></tbody></table></div></div></div><div><h1>History of Procedures</h1><div><div><table class=\"hapiPropertyTable\"><caption>History Of Procedures</caption><thead><tr><th>Procedure</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Procedure-urn:uuid:fb193865-18fe-4eab-9118-29c4aa33afa9\"><td> Placing restraint using limb restraint </td><td></td><td> Wed May 01 00:00:00 UTC 2019-Sun May 05 00:00:00 UTC 2019 </td></tr><tr id=\"Procedure-urn:uuid:d0edb020-b78d-40c8-98b4-b936ae486508\"><td> implantatie van totale knieprothese </td><td></td><td></td></tr></tbody></table></div></div></div><div><h1>Medical Devices</h1><div><div><table class=\"hapiPropertyTable\"><caption>Medical Devices</caption><thead><tr><th>Device</th><th>Status</th><th>Comments</th><th>Date Recorded</th></tr></thead><tbody><tr id=\"DeviceUseStatement-urn:uuid:87b7bb8b-5875-4ebe-bb36-f5c5c136860c\"><td> elektrisch scheerapparaat </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:d06e7c55-5215-43c6-a24c-6a282c300380\"><td> rolstoel </td><td>ACTIVE</td><td> Kan korte afstanden lopen </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:b5a6a499-7c04-48b1-887e-a9006309d2e7\"><td> gehoorapparaat </td><td>COMPLETED</td><td> Apparaat niet zichtbaar (diep in de gehooringang) </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:75aa1407-651b-4b1b-9f89-0e7d48917ced\"><td> pacemaker </td><td>ACTIVE</td><td> Laatst doorgemeten in 2011 </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:f4549d6e-c124-4404-b2f7-951022402755\"><td> Rollator </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:090cc4b6-cdea-45be-940d-d4a740b2b482\"><td></td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:7108e2fd-7baf-46cd-ae16-9b78a350e24d\"><td> Stomazak </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:e0d826e2-3935-419f-854e-1522d3e63fcd\"><td> Enkelfocale leesbril </td><td>ACTIVE</td><td></td><td></td></tr></tbody></table></div></div></div><div><h1>Diagnostic Results</h1><div><div><table class=\"hapiPropertyTable\"><caption>Diagnostic Results: Observations</caption><thead><tr><th>Code</th><th>Result</th><th>Unit</th><th>Interpretation</th><th>Reference Range</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Observation-urn:uuid:6d20b8a3-d164-4118-9179-ad6bd3802153\"><td> Sodium [Moles/volume] in Blood </td><td> 138 </td><td> mmol/l </td><td></td><td> 136-146 </td><td></td><td> Sat Jun 12 11:15:00 UTC 2021 </td></tr><tr id=\"Observation-urn:uuid:e4f6a4ac-1c07-4779-9581-d4a0201c41a5\"><td> Hepatitis A virus IgM Ab [Presence] in Serum </td><td> hepatitis A-test negatief </td><td></td><td></td><td></td><td></td><td> Mon Jan 16 10:12:00 UTC 2012 </td></tr><tr id=\"Observation-urn:uuid:eace9807-27e7-4678-bdee-26fd9501b9a5\"><td> Hemoglobine </td><td> 11.5 </td><td> mmol/l </td><td> Onder referentiebereik </td><td> 12.0-16.0 </td><td></td><td> Sun Jan 02 11:00:00 UTC 2022 </td></tr><tr id=\"Observation-urn:uuid:cdf7de10-e357-47f1-9943-df12a07baa7d\"><td> Hematocriet </td><td> 45 </td><td> % </td><td></td><td> 39-51 </td><td></td><td> Sun Jan 02 11:00:02 UTC 2022 </td></tr><tr id=\"Observation-urn:uuid:a01671ef-c342-49ba-b136-61317e9235e6\"><td> hemoglobine & hematocriet panel </td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table><table class=\"hapiPropertyTable\"><caption>Diagnostic Results: Diagnostic Reports</caption><thead><tr><th>Code</th><th>Date</th></tr></thead><tbody></tbody></table></div></div></div><div><h1>Vital Signs</h1><div><div><table class=\"hapiPropertyTable\"><caption>Vital Signs</caption><thead><tr><th>Code</th><th>Result</th><th>Unit</th><th>Interpretation</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Observation-urn:uuid:df810fa6-672f-4f99-a486-af377fb3fa10\"><td> Blood pressure panel with all children optional </td><td></td><td></td><td></td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:693c48cc-9999-4ec3-80ee-45b35adee6f4\"><td> Body height </td><td> 153 </td><td> cm </td><td> Met schoenen aan </td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:6dcaa528-3206-49a4-8197-75270744aad7\"><td> Body temperature <br/> Tympanische temperatuur </td><td> 38.6 </td><td> Cel </td><td> Voeten voelen heel koud aan </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:f7a75155-0956-4936-9730-a4d678295d52\"><td> Body weight </td><td> 2400 </td><td> gram </td><td> Luier woog 320 gram </td><td> Wed Feb 06 00:00:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:657f29e3-3f2b-4c25-88a7-f3a390dc1760\"><td> Head Occipital-frontal circumference </td><td> 41 </td><td> cm </td><td> Gemeten bij 3 maanden </td><td> Tue Jun 22 00:00:00 UTC 2021 </td></tr><tr id=\"Observation-urn:uuid:26e3f779-2306-400e-a0e7-6ec4b96ca9e2\"><td> Heart rate </td><td> 126 </td><td> /min </td><td> Misschien bigeminie? </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:32df6424-3501-49e9-86a6-03726ffdfd94\"><td> Oxygen saturation in Arterial blood <br/> Oxygen saturation in Arterial blood by Pulse oximetry </td><td> 92 </td><td> % </td><td> Stijgt snel bij aanspreken </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:b4b9e6e6-ee8a-4190-93eb-0e784ddfc0d0\"><td> Heart rate Peripheral artery by palpation </td><td> 50 </td><td> /min </td><td> Sportvrouw </td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr></tbody></table></div></div></div><div><h1>History of Past Illness</h1><div></div></div><div><h1>Advance Directives</h1><div><div><table class=\"hapiPropertyTable\"><caption>Advance Directives</caption><thead><tr><th>Scope</th><th>Status</th><th>Action Controlled</th><th>Date</th></tr></thead><tbody><tr id=\"Consent-urn:uuid:24a4ce03-010c-4738-a52e-a2ffd5da99e3\"><td> Advanced Care Directive </td><td>Active</td><td></td><td>Mon Aug 15 00:00:00 UTC 2011</td></tr><tr id=\"Consent-urn:uuid:52908a34-bb07-45ae-b076-407571e8c155\"><td> Advanced Care Directive </td><td>Active</td><td></td><td>Thu May 06 00:00:00 UTC 2010</td></tr></tbody></table></div></div></div></div>"
},
"status": "final",
"type": {
"coding": [
{
"system": "http://loinc.org",
"code": "60591-5",
"display": "Patient Summary Document"
}
]
},
"subject": {
"reference": "urn:uuid:1691dac6-9e84-4767-8b4f-7b151539d755"
},
"date": "2023-09-29T10:07:16.525+00:00",
"author": [
{
"reference": "urn:uuid:27e569d9-8a02-4fe4-99f5-1679da1b50ff"
}
],
"title": "Patient Summary as of 09/29/2023",
"confidentiality": "N",
"section": [
{
"title": "Allergies and Intolerances",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "48765-2",
"display": "Allergies and adverse reactions Document"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Allergies And Intolerances</caption><thead><tr><th>Allergen</th><th>Status</th><th>Category</th><th>Reaction</th><th>Severity</th><th>Comments</th><th>Onset</th></tr></thead><tbody><tr id=\"AllergyIntolerance-urn:uuid:a680e936-a35a-4c07-97ef-a403034ef88a\"><td> Penicilline </td><td> active </td><td> MEDICATION </td><td> rode huiduitslag op armen </td><td> moderate </td><td> test toelichting </td><td>Sun Jan 01 00:00:00 UTC 1995</td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:a680e936-a35a-4c07-97ef-a403034ef88a"
}
]
},
{
"title": "Medication List",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "10160-0",
"display": "History of Medication use Narrative"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Medication Summary: Medication Requests</caption><thead><tr><th>Medication</th><th>Status</th><th>Route</th><th>Sig</th><th>Comments</th><th>Authored Date</th></tr></thead><tbody><tr id=\"MedicationRequest-urn:uuid:e2a330ac-084d-4c75-8295-8953f1340b32\"><td> METOCLOPRAMIDE 20MG ZETPIL </td><td>Unknown</td><td></td><td></td><td></td><td>Mon Jul 13 00:00:00 UTC 2015</td></tr><tr id=\"MedicationRequest-urn:uuid:a298394a-eae9-4ba7-8690-72d201ce5d6f\"><td> LISINOPRIL 10MG TABLET </td><td>Unknown</td><td></td><td></td><td></td><td>Thu Sep 08 16:00:00 UTC 2016</td></tr><tr id=\"MedicationRequest-urn:uuid:f00707a8-b5ee-4296-a4a0-6fdb050332f9\"><td> METHOTREXAAT INJVLST 15MG/0,6ML(25MG/ML) WWSP PA </td><td>Unknown</td><td></td><td></td><td></td><td>Sun Mar 06 08:12:30 UTC 2016</td></tr></tbody></table><table class=\"hapiPropertyTable\"><caption>Medication Summary: Medication Statements</caption><thead><tr><th>Medication</th><th>Status</th><th>Route</th><th>Sig</th><th>Date</th></tr></thead><tbody><tr id=\"MedicationStatement-urn:uuid:848c2cfb-0560-4761-8745-e0120ee296c4\"><td> PANTOPRAZOL 40MG INJPDR </td><td>Active</td><td></td><td></td><td></td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:848c2cfb-0560-4761-8745-e0120ee296c4"
},
{
"reference": "urn:uuid:e2a330ac-084d-4c75-8295-8953f1340b32"
},
{
"reference": "urn:uuid:a298394a-eae9-4ba7-8690-72d201ce5d6f"
},
{
"reference": "urn:uuid:f00707a8-b5ee-4296-a4a0-6fdb050332f9"
}
]
},
{
"title": "Problem List",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "11450-4",
"display": "Problem list - Reported"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Problem List</caption><thead><tr><th>Medical Problems</th><th>Status</th><th>Comments</th><th>Onset Date</th></tr></thead><tbody><tr id=\"Condition-urn:uuid:5048222b-af51-44f2-aeac-2e18a41a643a\"><td> amyotrofische laterale sclerose </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:0c5bb4e1-8cb4-489c-8723-bd4c3eaa1812\"><td> vasculaire dementie </td><td> active </td><td> De laatste weken erg onrustig in de nacht </td><td></td></tr><tr id=\"Condition-urn:uuid:53f0e429-e8dc-4481-9975-84000b1c6eab\"><td> Hartfalen </td><td> active </td><td> Houdt veel vocht vast, kortademig </td><td></td></tr><tr id=\"Condition-urn:uuid:6fa73a5d-c8b3-459b-9218-e1ebd4cfa2bc\"><td> Geneesmiddel-interacties </td><td> active </td><td> Huiduitslag met veel jeuk door medicatie </td><td></td></tr><tr id=\"Condition-urn:uuid:958ecb9f-300a-4820-a4e2-ed0d56aae9fa\"><td> Voogdij </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:caba424e-4d7e-41b5-bf96-d7d38219bf54\"><td> Multiple sclerose </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:34064a3c-04d7-4145-adb7-e190cfe06127\"><td> Presbyacusis </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:e04ef9e8-13c3-4925-9705-5c298b940ddc\"><td> Paroxismaal boezemfibrilleren </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:762d22ad-ad90-4e9a-8870-bad694cd2618\"><td> abnormaal gewichtsverlies </td><td> active </td><td></td><td></td></tr><tr id=\"Condition-urn:uuid:392d5050-dfc8-494c-bd8e-f0291b837618\"><td> bevinding betreffende zwangerschap </td><td> active </td><td> Mevrouw is vaak misselijk in de ochtend. </td><td></td></tr><tr id=\"Condition-urn:uuid:eae3b0a2-9c9e-4a2c-bfe7-d5edb143fedd\"><td> Artrose </td><td> active </td><td> Beperking bij het bewegen van het gewricht, drukpijn door slijtage van twee compartimenten van de linker knie. </td><td></td></tr><tr id=\"Condition-urn:uuid:d22d2376-e553-405f-966e-d2abac7f3e5b\"><td> eindstandig colostoma </td><td> active </td><td> Pati\u00c3\u00abnt heeft veel last van dit type stoma. </td><td> Wed Jan 01 00:00:00 UTC 2014 </td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:5048222b-af51-44f2-aeac-2e18a41a643a"
},
{
"reference": "urn:uuid:0c5bb4e1-8cb4-489c-8723-bd4c3eaa1812"
},
{
"reference": "urn:uuid:53f0e429-e8dc-4481-9975-84000b1c6eab"
},
{
"reference": "urn:uuid:6fa73a5d-c8b3-459b-9218-e1ebd4cfa2bc"
},
{
"reference": "urn:uuid:958ecb9f-300a-4820-a4e2-ed0d56aae9fa"
},
{
"reference": "urn:uuid:caba424e-4d7e-41b5-bf96-d7d38219bf54"
},
{
"reference": "urn:uuid:34064a3c-04d7-4145-adb7-e190cfe06127"
},
{
"reference": "urn:uuid:e04ef9e8-13c3-4925-9705-5c298b940ddc"
},
{
"reference": "urn:uuid:762d22ad-ad90-4e9a-8870-bad694cd2618"
},
{
"reference": "urn:uuid:392d5050-dfc8-494c-bd8e-f0291b837618"
},
{
"reference": "urn:uuid:eae3b0a2-9c9e-4a2c-bfe7-d5edb143fedd"
},
{
"reference": "urn:uuid:d22d2376-e553-405f-966e-d2abac7f3e5b"
}
]
},
{
"title": "History of Procedures",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "47519-4",
"display": "History of Procedures Document"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>History Of Procedures</caption><thead><tr><th>Procedure</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Procedure-urn:uuid:fb193865-18fe-4eab-9118-29c4aa33afa9\"><td> Placing restraint using limb restraint </td><td></td><td> Wed May 01 00:00:00 UTC 2019-Sun May 05 00:00:00 UTC 2019 </td></tr><tr id=\"Procedure-urn:uuid:d0edb020-b78d-40c8-98b4-b936ae486508\"><td> implantatie van totale knieprothese </td><td></td><td></td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:fb193865-18fe-4eab-9118-29c4aa33afa9"
},
{
"reference": "urn:uuid:d0edb020-b78d-40c8-98b4-b936ae486508"
}
]
},
{
"title": "Medical Devices",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "46264-8",
"display": "History of medical device use"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Medical Devices</caption><thead><tr><th>Device</th><th>Status</th><th>Comments</th><th>Date Recorded</th></tr></thead><tbody><tr id=\"DeviceUseStatement-urn:uuid:87b7bb8b-5875-4ebe-bb36-f5c5c136860c\"><td> elektrisch scheerapparaat </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:d06e7c55-5215-43c6-a24c-6a282c300380\"><td> rolstoel </td><td>ACTIVE</td><td> Kan korte afstanden lopen </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:b5a6a499-7c04-48b1-887e-a9006309d2e7\"><td> gehoorapparaat </td><td>COMPLETED</td><td> Apparaat niet zichtbaar (diep in de gehooringang) </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:75aa1407-651b-4b1b-9f89-0e7d48917ced\"><td> pacemaker </td><td>ACTIVE</td><td> Laatst doorgemeten in 2011 </td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:f4549d6e-c124-4404-b2f7-951022402755\"><td> Rollator </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:090cc4b6-cdea-45be-940d-d4a740b2b482\"><td></td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:7108e2fd-7baf-46cd-ae16-9b78a350e24d\"><td> Stomazak </td><td>ACTIVE</td><td></td><td></td></tr><tr id=\"DeviceUseStatement-urn:uuid:e0d826e2-3935-419f-854e-1522d3e63fcd\"><td> Enkelfocale leesbril </td><td>ACTIVE</td><td></td><td></td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:87b7bb8b-5875-4ebe-bb36-f5c5c136860c"
},
{
"reference": "urn:uuid:d06e7c55-5215-43c6-a24c-6a282c300380"
},
{
"reference": "urn:uuid:b5a6a499-7c04-48b1-887e-a9006309d2e7"
},
{
"reference": "urn:uuid:75aa1407-651b-4b1b-9f89-0e7d48917ced"
},
{
"reference": "urn:uuid:f4549d6e-c124-4404-b2f7-951022402755"
},
{
"reference": "urn:uuid:090cc4b6-cdea-45be-940d-d4a740b2b482"
},
{
"reference": "urn:uuid:7108e2fd-7baf-46cd-ae16-9b78a350e24d"
},
{
"reference": "urn:uuid:e0d826e2-3935-419f-854e-1522d3e63fcd"
}
]
},
{
"title": "Diagnostic Results",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "30954-2",
"display": "Relevant diagnostic tests/laboratory data Narrative"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Diagnostic Results: Observations</caption><thead><tr><th>Code</th><th>Result</th><th>Unit</th><th>Interpretation</th><th>Reference Range</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Observation-urn:uuid:6d20b8a3-d164-4118-9179-ad6bd3802153\"><td> Sodium [Moles/volume] in Blood </td><td> 138 </td><td> mmol/l </td><td></td><td> 136-146 </td><td></td><td> Sat Jun 12 11:15:00 UTC 2021 </td></tr><tr id=\"Observation-urn:uuid:e4f6a4ac-1c07-4779-9581-d4a0201c41a5\"><td> Hepatitis A virus IgM Ab [Presence] in Serum </td><td> hepatitis A-test negatief </td><td></td><td></td><td></td><td></td><td> Mon Jan 16 10:12:00 UTC 2012 </td></tr><tr id=\"Observation-urn:uuid:eace9807-27e7-4678-bdee-26fd9501b9a5\"><td> Hemoglobine </td><td> 11.5 </td><td> mmol/l </td><td> Onder referentiebereik </td><td> 12.0-16.0 </td><td></td><td> Sun Jan 02 11:00:00 UTC 2022 </td></tr><tr id=\"Observation-urn:uuid:cdf7de10-e357-47f1-9943-df12a07baa7d\"><td> Hematocriet </td><td> 45 </td><td> % </td><td></td><td> 39-51 </td><td></td><td> Sun Jan 02 11:00:02 UTC 2022 </td></tr><tr id=\"Observation-urn:uuid:a01671ef-c342-49ba-b136-61317e9235e6\"><td> hemoglobine & hematocriet panel </td><td></td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table><table class=\"hapiPropertyTable\"><caption>Diagnostic Results: Diagnostic Reports</caption><thead><tr><th>Code</th><th>Date</th></tr></thead><tbody></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:6d20b8a3-d164-4118-9179-ad6bd3802153"
},
{
"reference": "urn:uuid:e4f6a4ac-1c07-4779-9581-d4a0201c41a5"
},
{
"reference": "urn:uuid:eace9807-27e7-4678-bdee-26fd9501b9a5"
},
{
"reference": "urn:uuid:cdf7de10-e357-47f1-9943-df12a07baa7d"
},
{
"reference": "urn:uuid:a01671ef-c342-49ba-b136-61317e9235e6"
}
]
},
{
"title": "Vital Signs",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "8716-3",
"display": "Vital signs"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Vital Signs</caption><thead><tr><th>Code</th><th>Result</th><th>Unit</th><th>Interpretation</th><th>Comments</th><th>Date</th></tr></thead><tbody><tr id=\"Observation-urn:uuid:df810fa6-672f-4f99-a486-af377fb3fa10\"><td> Blood pressure panel with all children optional </td><td></td><td></td><td></td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:693c48cc-9999-4ec3-80ee-45b35adee6f4\"><td> Body height </td><td> 153 </td><td> cm </td><td> Met schoenen aan </td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:6dcaa528-3206-49a4-8197-75270744aad7\"><td> Body temperature <br/> Tympanische temperatuur </td><td> 38.6 </td><td> Cel </td><td> Voeten voelen heel koud aan </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:f7a75155-0956-4936-9730-a4d678295d52\"><td> Body weight </td><td> 2400 </td><td> gram </td><td> Luier woog 320 gram </td><td> Wed Feb 06 00:00:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:657f29e3-3f2b-4c25-88a7-f3a390dc1760\"><td> Head Occipital-frontal circumference </td><td> 41 </td><td> cm </td><td> Gemeten bij 3 maanden </td><td> Tue Jun 22 00:00:00 UTC 2021 </td></tr><tr id=\"Observation-urn:uuid:26e3f779-2306-400e-a0e7-6ec4b96ca9e2\"><td> Heart rate </td><td> 126 </td><td> /min </td><td> Misschien bigeminie? </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:32df6424-3501-49e9-86a6-03726ffdfd94\"><td> Oxygen saturation in Arterial blood <br/> Oxygen saturation in Arterial blood by Pulse oximetry </td><td> 92 </td><td> % </td><td> Stijgt snel bij aanspreken </td><td> Fri Feb 08 04:43:00 UTC 2013 </td></tr><tr id=\"Observation-urn:uuid:b4b9e6e6-ee8a-4190-93eb-0e784ddfc0d0\"><td> Heart rate Peripheral artery by palpation </td><td> 50 </td><td> /min </td><td> Sportvrouw </td><td> Fri Feb 08 05:43:00 UTC 2013 </td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:df810fa6-672f-4f99-a486-af377fb3fa10"
},
{
"reference": "urn:uuid:693c48cc-9999-4ec3-80ee-45b35adee6f4"
},
{
"reference": "urn:uuid:6dcaa528-3206-49a4-8197-75270744aad7"
},
{
"reference": "urn:uuid:f7a75155-0956-4936-9730-a4d678295d52"
},
{
"reference": "urn:uuid:657f29e3-3f2b-4c25-88a7-f3a390dc1760"
},
{
"reference": "urn:uuid:26e3f779-2306-400e-a0e7-6ec4b96ca9e2"
},
{
"reference": "urn:uuid:32df6424-3501-49e9-86a6-03726ffdfd94"
},
{
"reference": "urn:uuid:b4b9e6e6-ee8a-4190-93eb-0e784ddfc0d0"
}
]
},
{
"title": "History of Past Illness",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "11348-0",
"display": "History of Past illness Narrative"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><h4>Condition</h4><ul><li>Onder toezichtstelling (ots)</li><li>Bewindvoering</li><li>irritatief contacteczeem door incontinentie</li><li>urine-incontinentie</li></ul></div>"
},
"entry": [
{
"reference": "urn:uuid:b6f54ce1-76d3-4f69-a130-8209fe818794"
},
{
"reference": "urn:uuid:4c61a4af-3ddd-4a9f-9f80-24948cada6ff"
},
{
"reference": "urn:uuid:1949d5b8-6504-431b-905e-e8778628fe67"
},
{
"reference": "urn:uuid:8b96b92e-5d54-4e5c-a9a0-ef0ca2e1dd94"
}
]
},
{
"title": "Advance Directives",
"code": {
"coding": [
{
"system": "http://loinc.org",
"code": "42348-3",
"display": "Advance directives"
}
]
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><table class=\"hapiPropertyTable\"><caption>Advance Directives</caption><thead><tr><th>Scope</th><th>Status</th><th>Action Controlled</th><th>Date</th></tr></thead><tbody><tr id=\"Consent-urn:uuid:24a4ce03-010c-4738-a52e-a2ffd5da99e3\"><td> Advanced Care Directive </td><td>Active</td><td></td><td>Mon Aug 15 00:00:00 UTC 2011</td></tr><tr id=\"Consent-urn:uuid:52908a34-bb07-45ae-b076-407571e8c155\"><td> Advanced Care Directive </td><td>Active</td><td></td><td>Thu May 06 00:00:00 UTC 2010</td></tr></tbody></table></div>"
},
"entry": [
{
"reference": "urn:uuid:24a4ce03-010c-4738-a52e-a2ffd5da99e3"
},
{
"reference": "urn:uuid:52908a34-bb07-45ae-b076-407571e8c155"
}
]
}
]
}
},
{
"fullUrl": "urn:uuid:1691dac6-9e84-4767-8b4f-7b151539d755",
"resource": {
"resourceType": "Patient",
"meta": {
"versionId": "1",
"lastUpdated": "2023-09-11T20:58:54.273+00:00",
"source": "#yw4EdgA8Jtd8r12v"
},
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\"><div class=\"hapiHeaderText\">Johanna Petronella Maria <b>VAN PUTTEN-VAN DER GIESSEN </b></div><table class=\"hapiPropertyTable\"><tbody><tr><td>Identifier</td><td>111222333</td></tr><tr><td>Address</td><td><span>1e Jacob van Campenstr 15 </span><br/><span>Hoogmade </span><span>Nederland </span></td></tr><tr><td>Date of birth</td><td><span>28 April 1934</span></td></tr></tbody></table></div>"
},
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-nationality",
"extension": [
{
"url": "code",
"valueCodeableConcept": {
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.2.4.4.16.32",
"code": "0001",
"display": "Nederlandse"
}
]
}
}
]
}
],
"identifier": [
{
"system": "http://fhir.nl/fhir/NamingSystem/bsn",
"value": "111222333"
}
],
"name": [
{
"use": "official",
"text": "Johanna Petronella Maria (Jo) van Putten-van der Giessen",
"family": "van Putten-van der Giessen",
"_family": {
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
"valueString": "van"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
"valueString": "Putten"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
"valueString": "van der"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
"valueString": "Giessen"
}
]
},
"given": [
"Johanna",
"Petronella",
"Maria"
],
"_given": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "BR"
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "BR"
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "BR"
}
]
}
]
},
{
"use": "usual",
"given": [
"Jo"
]
}
],
"telecom": [
{
"system": "phone",
"_system": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-AddressUse",
"code": "MC",
"display": "Mobile Phone"
}
]
}
}
]
},
"value": "+31611234567"
},
{
"system": "email",
"value": "giesput@myweb.nl",
"use": "home"
}
],
"gender": "female",
"_gender": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender",
"code": "F",
"display": "Female"
}
]
}
}
]
},
"birthDate": "1934-04-28",
"deceasedBoolean": false,
"address": [
{
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-AddressInformation.AddressType",
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-AddressUse",
"code": "HP",
"display": "Primary Home"
}
]
}
}
],
"use": "home",
"type": "both",
"line": [
"1e Jacob van Campenstr 15"
],
"_line": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName",
"valueString": "1e Jacob van Campenstr"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber",
"valueString": "15"
}
]
}
],
"city": "Hoogmade",
"district": "Kaag en Braassem",
"postalCode": "1012 NX",
"country": "Nederland",
"_country": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "urn:iso:std:iso:3166",
"version": "2020-10-26T00:00:00",
"code": "NL",
"display": "Nederland"
}
]
}
}
]
}
}
],
"maritalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus",
"code": "D",
"display": "Divorced"
}
]
},
"multipleBirthBoolean": true,
"contact": [
{
"relationship": [
{
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.2.4.3.11.22.472",
"code": "01",
"display": "Eerste relatie/contactpersoon"
}
]
},
{
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.2.4.3.11.22.472",
"code": "07",
"display": "Hulpverlener"
}
]
}
],
"name": {
"use": "official",
"text": "J.P.M. van Putten-van der Giessen",
"family": "van Putten-van der Giessen",
"_family": {
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
"valueString": "van"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-own-name",
"valueString": "Putten"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix",
"valueString": "van der"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/humanname-partner-name",
"valueString": "Giessen"
}
]
},
"given": [
"J.",
"P.",
"M."
],
"_given": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "IN"
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "IN"
}
]
},
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier",
"valueCode": "IN"
}
]
}
]
},
"telecom": [
{
"system": "phone",
"_system": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-AddressUse",
"code": "MC",
"display": "Mobile Phone"
}
]
}
}
]
},
"value": "+31611234567"
},
{
"system": "email",
"value": "giesput@myweb.nl",
"use": "work"
}
],
"address": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-AddressInformation.AddressType",
"valueCodeableConcept": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/v3-AddressUse",
"code": "HP",
"display": "Primary Home"
}
]
}
}
],
"use": "home",
"type": "both",
"line": [
"1e Jacob van Campenstr 15"
],
"_line": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName",
"valueString": "1e Jacob van Campenstr"
},
{
"url": "http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber",
"valueString": "15"
}
]
}
],
"city": "Hoogmade",
"district": "Kaag en Braassem",
"postalCode": "1012 NX",
"country": "Nederland",
"_country": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.2.4.4.16.34",
"version": "2020-04-01T00:00:00",
"code": "6030",
"display": "Nederland"
}
]
}
}
]
}
}
}
],
"communication": [
{
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-proficiency",
"extension": [
{
"url": "level",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency",
"code": "G",
"display": "Good"
}
},
{
"url": "type",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode",
"code": "RSP",
"display": "Received spoken"
}
}
]
},
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-proficiency",
"extension": [
{
"url": "level",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency",
"code": "F",
"display": "Fair"
}
},
{
"url": "type",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode",
"code": "ESP",
"display": "Expressed spoken"
}
}
]
},
{
"url": "http://hl7.org/fhir/StructureDefinition/patient-proficiency",
"extension": [
{
"url": "level",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityProficiency",
"code": "G",
"display": "Good"
}
},
{
"url": "type",
"valueCoding": {
"system": "http://terminology.hl7.org/CodeSystem/v3-LanguageAbilityMode",
"code": "RWR",
"display": "Received written"
}
}
]
},
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-Comment",
"valueString": "Bij gesprek met arts zoon uitnodigen voor vertalen"
}
],
"language": {
"coding": [
{
"system": "urn:oid:1.0.639.1",
"code": "nl",
"display": "Nederlands"
}
]
}
}
]
}
},
{
"fullUrl": "urn:uuid:a680e936-a35a-4c07-97ef-a403034ef88a",
"resource": {
"resourceType": "AllergyIntolerance",
"meta": {
"versionId": "1",
"lastUpdated": "2023-09-11T21:20:31.983+00:00",
"source": "#Y0JCfUMYOcjxIAUp"
},
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/narrativeLink",
"valueUrl": "urn:uuid:3898688c-df30-4d56-9c70-022e8a5cab0e#AllergyIntolerance-urn:uuid:a680e936-a35a-4c07-97ef-a403034ef88a"
}
],
"clinicalStatus": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical",
"code": "active",
"display": "Active"
}
]
},
"category": [
"medication"
],
"_category": [
{
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "419511003",
"display": "Neiging tot ongewenste reactie op geneesmiddel"
}
]
}
}
]
}
],
"criticality": "high",
"_criticality": {
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-CodeSpecification",
"valueCodeableConcept": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "24484000",
"display": "Ernstig"
}
]
}
}
]
},
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "764146007",
"display": "Penicilline"
}
]
},
"patient": {
"reference": "urn:uuid:1691dac6-9e84-4767-8b4f-7b151539d755",
"type": "Patient",
"display": "Patient, Johanna Petronella Maria J.P.M. Jo van Putten van der Giessen"
},
"onsetDateTime": "1995-01-01",
"lastOccurrence": "1998-06-02",
"note": [
{
"text": "test toelichting"
}
],
"reaction": [
{
"substance": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "764146007",
"display": "Penicilline"
}
]
},
"manifestation": [
{
"coding": [
{
"system": "http://snomed.info/sct",
"code": "271807003",
"display": "Exantheem"
}
]
}
],
"description": "rode huiduitslag op armen",
"onset": "1998-06-02",
"severity": "moderate"
}
]
}
},
{
"fullUrl": "urn:uuid:848c2cfb-0560-4761-8745-e0120ee296c4",
"resource": {
"resourceType": "MedicationStatement",
"meta": {
"versionId": "1",
"lastUpdated": "2023-09-14T20:36:23.884+00:00",
"source": "#4gj8py0qpup4JnZp",
"profile": [
"http://nictiz.nl/fhir/StructureDefinition/nl-core-MedicationUse2"
]
},
"extension": [
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-RenderedDosageInstruction",
"valueString": "Vanaf 1 september 2012 gedurende 5 dagen 1x per dag om 8uur 40 mg (=1 st)"
},
{
"url": "http://nictiz.nl/fhir/StructureDefinition/ext-MedicationUse2.AsAgreedIndicator",
"valueBoolean": true
},
{
"url": "http://hl7.org/fhir/StructureDefinition/narrativeLink",
"valueUrl": "urn:uuid:3898688c-df30-4d56-9c70-022e8a5cab0e#MedicationStatement-urn:uuid:848c2cfb-0560-4761-8745-e0120ee296c4"
}
],
"status": "active",
"category": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "422979000",
"display": "bevinding betreffende gedrag met betrekking tot medicatieregime"
}
]
},
"medicationReference": {
"reference": "urn:uuid:723180fd-dec8-4488-a618-9cc5ad1c9109",
"type": "Medication",
"display": "PANTOPRAZOL 40MG INJPDR"
},
"subject": {
"reference": "urn:uuid:1691dac6-9e84-4767-8b4f-7b151539d755",
"type": "Patient",
"display": "Patient, Johanna Petronella Maria (Jo) van Putten-van der Giessen"
},
"reasonCode": [
{
"text": "Ulcusprofylaxe"
}
],
"dosage": [
{
"timing": {
"repeat": {
"extension": [
{
"url": "http://hl7.org/fhir/StructureDefinition/timing-exact",
"valueBoolean": true
}
],
"frequency": 1,
"period": 1,
"periodUnit": "d",
"timeOfDay": [
"08:00:00"
]
}
},
"doseAndRate": [
{
"doseQuantity": {
"value": 40,
"unit": "mg",
"system": "http://unitsofmeasure.org",
"code": "mg"
}
}
]
}
]
}
},