canvas 0.3.0__py3-none-any.whl → 0.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of canvas might be problematic. Click here for more details.
- {canvas-0.3.0.dist-info → canvas-0.3.1.dist-info}/METADATA +1 -1
- {canvas-0.3.0.dist-info → canvas-0.3.1.dist-info}/RECORD +80 -9
- canvas_cli/apps/emit/__init__.py +3 -0
- canvas_cli/apps/emit/emit.py +67 -0
- canvas_cli/apps/emit/event_fixtures/ALLERGY_INTOLERANCE_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/ALLERGY_INTOLERANCE_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CANCELED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CHECKED_IN.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_NO_SHOWED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_RESCHEDULED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_RESTORED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/APPOINTMENT_UPDATED.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__CONDITION_SELECTED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_COMMIT.ndjson +3 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_ORIGINATE.ndjson +4 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_UPDATE.ndjson +5 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_COMMIT.ndjson +3 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_ORIGINATE.ndjson +4 -0
- canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_UPDATE.ndjson +5 -0
- canvas_cli/apps/emit/event_fixtures/BILLING_LINE_ITEM_CREATED.ndjson +3 -0
- canvas_cli/apps/emit/event_fixtures/BILLING_LINE_ITEM_UPDATED.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/CONDITION_ASSESSED.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/CONDITION_CREATED.ndjson +4 -0
- canvas_cli/apps/emit/event_fixtures/CONDITION_UPDATED.ndjson +5 -0
- canvas_cli/apps/emit/event_fixtures/CRON.ndjson +3 -0
- canvas_cli/apps/emit/event_fixtures/ENCOUNTER_CREATED.ndjson +3 -0
- canvas_cli/apps/emit/event_fixtures/ENCOUNTER_UPDATED.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_STATEMENT_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_STATEMENT_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/INTERVIEW_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/INTERVIEW_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/LAB_ORDER_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/LAB_ORDER_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_LIST_ITEM_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_LIST_ITEM_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_COMMIT.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_UPDATE.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_COMMIT.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_UPDATE.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT__MEDICATION__POST_SEARCH.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/PATIENT_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/PATIENT_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/PLAN_COMMAND__POST_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/PLAN_COMMAND__PRE_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_COMMIT.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_UPDATE.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_COMMIT.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_ORIGINATE.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_UPDATE.ndjson +2 -0
- canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE__QUESTIONNAIRE__POST_SEARCH.ndjson +4 -0
- canvas_cli/apps/emit/event_fixtures/TASK_COMMENT_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/TASK_CREATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/TASK_UPDATED.ndjson +1 -0
- canvas_cli/apps/emit/event_fixtures/VITAL_SIGN_CREATED.ndjson +14 -0
- canvas_cli/apps/emit/event_fixtures/VITAL_SIGN_UPDATED.ndjson +364 -0
- canvas_cli/apps/run_plugins/__init__.py +3 -0
- canvas_cli/apps/run_plugins/run_plugins.py +16 -0
- canvas_cli/main.py +8 -38
- canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/README.md +0 -1
- canvas_generated/messages/events_pb2.py +2 -2
- canvas_generated/messages/events_pb2.pyi +8 -0
- canvas_sdk/v1/data/base.py +1 -1
- canvas_sdk/v1/data/command.py +27 -0
- canvas_sdk/v1/data/device.py +44 -0
- canvas_sdk/v1/data/observation.py +117 -0
- plugin_runner/__init__.py +0 -0
- plugin_runner/authentication.py +48 -0
- plugin_runner/plugin_runner.py +338 -0
- plugin_runner/plugin_synchronizer.py +87 -0
- plugin_runner/sandbox.py +273 -0
- pubsub/__init__.py +0 -0
- pubsub/pubsub.py +38 -0
- {canvas-0.3.0.dist-info → canvas-0.3.1.dist-info}/WHEEL +0 -0
- {canvas-0.3.0.dist-info → canvas-0.3.1.dist-info}/entry_points.txt +0 -0
|
@@ -3,16 +3,77 @@ canvas_cli/apps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
3
3
|
canvas_cli/apps/auth/__init__.py,sha256=gIwJ2qWvRlLqbiRkudrGqTKV-orlb8OTkG487qoRda4,105
|
|
4
4
|
canvas_cli/apps/auth/tests.py,sha256=WK7hSLTK95gEweMRaj3RdPC-qSwjnuulxMUg6D0bY_k,4528
|
|
5
5
|
canvas_cli/apps/auth/utils.py,sha256=IH5oZB3pdlb4_FRfCZKkNTncx_kdKagpiBqlhtM8h2U,5434
|
|
6
|
+
canvas_cli/apps/emit/__init__.py,sha256=Fvv6SIbeGV2S5NkigQtamcRwJXIT1n7UcM-wrQoYsRQ,64
|
|
7
|
+
canvas_cli/apps/emit/emit.py,sha256=zM0mRimaaU7zqUZvIGFoyPmiljKcsxsNIHRRGyUxnss,2652
|
|
8
|
+
canvas_cli/apps/emit/event_fixtures/ALLERGY_INTOLERANCE_CREATED.ndjson,sha256=C0mKBU_zP19WAn3EVRArQ7Pl3FBCyHXOmE9x7ZIKTss,110
|
|
9
|
+
canvas_cli/apps/emit/event_fixtures/ALLERGY_INTOLERANCE_UPDATED.ndjson,sha256=P2TpFVC13fgg9fFPjfY-NX-hYdXLN-jOE0fmwDY9aMk,110
|
|
10
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CANCELED.ndjson,sha256=5E0JNrfdJfVlW24xkwanHkxUvbMukcdmYpv4OvLqRkI,103
|
|
11
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CHECKED_IN.ndjson,sha256=S4Ve-Kl57V5Qu1K36iPvS0DfyGMZTLFT99nRhZ4ffss,105
|
|
12
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_CREATED.ndjson,sha256=GzsW7iteoD3wzNHZpqn6j_I7t7Z7Yf9yDbNJ7A1aurY,102
|
|
13
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_NO_SHOWED.ndjson,sha256=6vqCPU-SBeq1kj1pUbDgrv902PbFyf2HyBmj8zXR--Y,104
|
|
14
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_RESCHEDULED.ndjson,sha256=zJ0eb7cJB2Z7IyhkJ5Imk-IauM5T3ULa-uOvWP0bHy0,106
|
|
15
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_RESTORED.ndjson,sha256=g7zk3pgYeVFfD0f3yCSnmnKlZkMc0LgWDA1yN5S8Evw,103
|
|
16
|
+
canvas_cli/apps/emit/event_fixtures/APPOINTMENT_UPDATED.ndjson,sha256=oXXVRGy1HCHLjqPrGZCzhPR8IDBhMxE10f90EMSrFZo,204
|
|
17
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__CONDITION_SELECTED.ndjson,sha256=Qh0h65WSNMcceZoMjjN8mJLr4JIJFQJyPzuerr3HZ8c,746
|
|
18
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_COMMIT.ndjson,sha256=-Xf4n0wTX9JxtQD20eNOIzP3L7vrUEqdr6W_5qIMCo0,1324
|
|
19
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_ORIGINATE.ndjson,sha256=6p5Ma5fkghfF8daFu-bi9-j0Shn10K_emzMnZoW6Q9Y,1587
|
|
20
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__POST_UPDATE.ndjson,sha256=Zb6IJzwp_JQinLuR02_dsi9wirkcFBJdiRJFW85bFv8,2232
|
|
21
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_COMMIT.ndjson,sha256=kj85pDsY-BUxTFlDg0RguNcZyIPVq7IjQKi4gUYnd_o,1321
|
|
22
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_ORIGINATE.ndjson,sha256=l2Q4ADORAv77Ei0DjueDSgtqeCCX13uNSJ7YsiLbQ24,1241
|
|
23
|
+
canvas_cli/apps/emit/event_fixtures/ASSESS_COMMAND__PRE_UPDATE.ndjson,sha256=yzYIZHrPM73HJBJPxNvrZFxV1iS6SvbX-TR9Au33Io8,2053
|
|
24
|
+
canvas_cli/apps/emit/event_fixtures/BILLING_LINE_ITEM_CREATED.ndjson,sha256=7Qa82dT1sow7EDjvlZdqvUuIvJJJ3v-i6blvT34NUY0,324
|
|
25
|
+
canvas_cli/apps/emit/event_fixtures/BILLING_LINE_ITEM_UPDATED.ndjson,sha256=B-4HZ5sz40p4G8qkqtkPfa2rIGsIOJm05XfUyURaZcw,216
|
|
26
|
+
canvas_cli/apps/emit/event_fixtures/CONDITION_ASSESSED.ndjson,sha256=Q7VYb0Vet4bwNRf3mLivkRC6kYcoWvz6uT1n5AFio2M,202
|
|
27
|
+
canvas_cli/apps/emit/event_fixtures/CONDITION_CREATED.ndjson,sha256=z4jm1LDjOLKwkB-FeWjMWKwEwgow2L3--b7wVd_9DtQ,400
|
|
28
|
+
canvas_cli/apps/emit/event_fixtures/CONDITION_UPDATED.ndjson,sha256=ODdKV8ZRUu0045Y4BvBybEsVIYb7xWUqWU5RV8GRT_Y,500
|
|
29
|
+
canvas_cli/apps/emit/event_fixtures/CRON.ndjson,sha256=5YyAR47FuV87cOH_fQMJYXMa-bo-3TQEcsfTExs6Kck,228
|
|
30
|
+
canvas_cli/apps/emit/event_fixtures/ENCOUNTER_CREATED.ndjson,sha256=xdBOBs9v9up8uP8bpAOBAiiMJzRBXsDMKo6U261hDsM,300
|
|
31
|
+
canvas_cli/apps/emit/event_fixtures/ENCOUNTER_UPDATED.ndjson,sha256=UMsXuALbsOXxmtg23rtdiJu9zlKRaD-iakn2drRwGMU,200
|
|
32
|
+
canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_CREATED.ndjson,sha256=aGbB9aKAe9Sq6mISc1UFFt29yyugek5qm_rkB7C8YoE,103
|
|
33
|
+
canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_STATEMENT_CREATED.ndjson,sha256=8tskLYvbTsFHlN-npTPDB_MXwMM5pjWR5pRicpa6BEM,113
|
|
34
|
+
canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_STATEMENT_UPDATED.ndjson,sha256=zvg2rObIqH9gaai7McFxVDbB7uh902ZX_ns7rjS5ot0,113
|
|
35
|
+
canvas_cli/apps/emit/event_fixtures/IMMUNIZATION_UPDATED.ndjson,sha256=r0YKj80DVfW4i3UZbf_xnLWhVQNVzOjMQmviT0MWjSg,103
|
|
36
|
+
canvas_cli/apps/emit/event_fixtures/INTERVIEW_CREATED.ndjson,sha256=u3p96MPCbWnr1_HewGBSJe1k1i8zNH2AM3dWSzeDWag,100
|
|
37
|
+
canvas_cli/apps/emit/event_fixtures/INTERVIEW_UPDATED.ndjson,sha256=J9EIEiABOLTEWvuTpolFHy8R8Dhq1NgoBpySgI6DXM4,100
|
|
38
|
+
canvas_cli/apps/emit/event_fixtures/LAB_ORDER_CREATED.ndjson,sha256=EwGre_GdzTzLIONjnAE3et3DlXfPjfLYGFONOQkP5Hs,100
|
|
39
|
+
canvas_cli/apps/emit/event_fixtures/LAB_ORDER_UPDATED.ndjson,sha256=cC8F23tegjZRJqGIiLxus2cPCBjC6oPCwUCy7MNM8GM,100
|
|
40
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_LIST_ITEM_CREATED.ndjson,sha256=hg9UIHLu1USD5RFwdqG-ZnJDX4yLAjNFj39oA3vEYHA,111
|
|
41
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_LIST_ITEM_UPDATED.ndjson,sha256=zigB2pHaAe4t45iVu2LVW6f6Y0Kk7XDq0I7yRNZRqUk,111
|
|
42
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_COMMIT.ndjson,sha256=E42RFdzWdfBkOI9g8ATtQSFA6fBHZ4_2CrQJwCILico,627
|
|
43
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_ORIGINATE.ndjson,sha256=k8-TaZwu8rJLmQcPsYPC2vwyCqSfCyFc_tRqBksRSOE,242
|
|
44
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__POST_UPDATE.ndjson,sha256=J_v2AEoNhf5vZaF90KSeBvMMOJj8-rMNhCfrAtXa2s8,1244
|
|
45
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_COMMIT.ndjson,sha256=RD6XyElQ-xkpBGi101FQLE2s0liwIDM7lgXG42fZFIE,626
|
|
46
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_ORIGINATE.ndjson,sha256=XaVcd-NWYJlJL8rifogFSPTtzcXpySx6UAPVAzU2QCI,142
|
|
47
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT_COMMAND__PRE_UPDATE.ndjson,sha256=pJ9_PflSWjTtYmq3ARP8KWxbFNUWhXvGbP-SxpESc0E,854
|
|
48
|
+
canvas_cli/apps/emit/event_fixtures/MEDICATION_STATEMENT__MEDICATION__POST_SEARCH.ndjson,sha256=-ZASLNhp6niQlZtgIgj9TsDp_bUOGG8cwgIVrAO42K8,14039
|
|
49
|
+
canvas_cli/apps/emit/event_fixtures/PATIENT_CREATED.ndjson,sha256=Mml8ypqKItKjEljqwwyttEz4Oy6Zh093qCQhnfYUO5Q,94
|
|
50
|
+
canvas_cli/apps/emit/event_fixtures/PATIENT_UPDATED.ndjson,sha256=SV3lFeXzBa5twRRPDyQoUvC755-HdlSMOcrM97BiedQ,94
|
|
51
|
+
canvas_cli/apps/emit/event_fixtures/PLAN_COMMAND__POST_ORIGINATE.ndjson,sha256=XX1WO5yBfPhH8brS92-s2DTDR6xDPAUhjOEyqWnyjDI,215
|
|
52
|
+
canvas_cli/apps/emit/event_fixtures/PLAN_COMMAND__PRE_ORIGINATE.ndjson,sha256=hqI1Aeg4KNmd8xs1TRtifC2ZsaB2_E3DzjfC4xg3z5g,150
|
|
53
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_COMMIT.ndjson,sha256=s7AOup-1OictTS9zcWlPfiXGDBjYazhubwCdP-Y5mKQ,2571
|
|
54
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_ORIGINATE.ndjson,sha256=VPNA-4yY6AnrpJ1SiBPf2_KBnl_dVMrG3CoDdtTrPBI,241
|
|
55
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__POST_UPDATE.ndjson,sha256=yGkMIrpGZTgELXU1p0j4MN4BYK4dj6E5IojKYTpA5NU,4749
|
|
56
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_COMMIT.ndjson,sha256=0TShGPx2KGjDfXgduJ-8hzjaBLBG4kiSZiE7T1mku_A,2570
|
|
57
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_ORIGINATE.ndjson,sha256=4oOBZ173NZZopuNxDh1JPF9rGqdwXx6yy5fJwuGXgoo,135
|
|
58
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE_COMMAND__PRE_UPDATE.ndjson,sha256=g3utbEETwp_RkkFy33WH1MRc7ghj8yQ2WkY9fCsZPGY,2414
|
|
59
|
+
canvas_cli/apps/emit/event_fixtures/QUESTIONNAIRE__QUESTIONNAIRE__POST_SEARCH.ndjson,sha256=dcMBEin9oHukNV8CTG0M8NCxyclZgo6jmuFkuJ8xYmo,19831
|
|
60
|
+
canvas_cli/apps/emit/event_fixtures/TASK_COMMENT_CREATED.ndjson,sha256=LezbPEkB_vFy4slmdDfPARV_HJDXAo_zMg65m8DcPDc,103
|
|
61
|
+
canvas_cli/apps/emit/event_fixtures/TASK_CREATED.ndjson,sha256=ZcbWwjjKay5pDgH4UolRzaHkWX0oy54OMjzl4lOQHAk,95
|
|
62
|
+
canvas_cli/apps/emit/event_fixtures/TASK_UPDATED.ndjson,sha256=5K0x5fjO7fwDVvvppLZHtlF0L0MLTGlDWVmn7h4SlOE,95
|
|
63
|
+
canvas_cli/apps/emit/event_fixtures/VITAL_SIGN_CREATED.ndjson,sha256=p5XQozktqGA9-C6HDXJ3cxDmrYe4p705WdrWE-2R9Dk,1414
|
|
64
|
+
canvas_cli/apps/emit/event_fixtures/VITAL_SIGN_UPDATED.ndjson,sha256=Er0aUWIYkqbL9JdCaiNBuzizuHiOmFQr5Q2uYTtWj8I,36764
|
|
6
65
|
canvas_cli/apps/logs/__init__.py,sha256=ehY9SRb6nBw81xZF50yyBlUZJtNR2VeVSNI5sFuWJ7o,64
|
|
7
66
|
canvas_cli/apps/logs/logs.py,sha256=Ixue8Z1wgxABunVIx6TzmsH6oZ0FPf2H51Sd3nFUnAI,1969
|
|
8
67
|
canvas_cli/apps/plugin/__init__.py,sha256=G_nLsu6cdko5OjatnbqUyEboGcNlGGLwpZmCBxMKdfo,236
|
|
9
68
|
canvas_cli/apps/plugin/plugin.py,sha256=9U-lvAVdPbHdUKkOaYO2OwjwY-XHDB9oHFjkTkJyV38,14228
|
|
10
69
|
canvas_cli/apps/plugin/tests.py,sha256=nH-LunSfkpFIvcONVeJxr8JQ-z5vZmuZFaZJanB2m2s,2661
|
|
70
|
+
canvas_cli/apps/run_plugins/__init__.py,sha256=iAMgX_6D3CdjQodGx_azwhSjouaxquOm8Z8QVXnlTFE,117
|
|
71
|
+
canvas_cli/apps/run_plugins/run_plugins.py,sha256=qsf6-UhFAZpIL-1C50fzSoIwXMsZISxg2fxzM46UHTA,384
|
|
11
72
|
canvas_cli/conftest.py,sha256=pGvVS6VT0Zll_Lp3ezLh2jykOk-2HTBVH8RP5FwLUVw,930
|
|
12
|
-
canvas_cli/main.py,sha256=
|
|
73
|
+
canvas_cli/main.py,sha256=X-ziOQzEEd58asH9PZatQJ79SaLuNAGV_sf9e6lw5sM,2759
|
|
13
74
|
canvas_cli/templates/plugins/default/cookiecutter.json,sha256=dWEB3wJ8U4bko8jX26PgLLg_jgWlafLTNqsGnY1PUcg,124
|
|
14
75
|
canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/CANVAS_MANIFEST.json,sha256=9N0u5hN0GqjPvUh_B3YHtvyntEvxUGbInbQeprU0TS0,787
|
|
15
|
-
canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/README.md,sha256=
|
|
76
|
+
canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/README.md,sha256=3QKoJQq3YmdplGnDOBMsLCJ3Ya1_aKjoz-QiWc4QfjA,291
|
|
16
77
|
canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/protocols/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
78
|
canvas_cli/templates/plugins/default/{{ cookiecutter.__project_slug }}/protocols/my_protocol.py,sha256=liFrvx-5NRfeODOBbRNB1Cg0P04UvxpAkkLtAiEmckQ,2252
|
|
18
79
|
canvas_cli/tests.py,sha256=64aAOgHrC09UeWqsFo__K3zmSHrXHCtMJAc1rE7ziTc,5916
|
|
@@ -33,8 +94,8 @@ canvas_cli/utils/validators/validators.py,sha256=lrUBQ0sF7seTe_pNGsNgASdr2BGp6g-
|
|
|
33
94
|
canvas_generated/messages/effects_pb2.py,sha256=2ie5j_MhD4boYsIZiDIWE30xSCXl4nunXcuQcMUkzTY,7800
|
|
34
95
|
canvas_generated/messages/effects_pb2.pyi,sha256=ecDvQX8UYu0rb-4g6QVSgNWMT9v2WOJwiBdJ0JpU-IU,13349
|
|
35
96
|
canvas_generated/messages/effects_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
36
|
-
canvas_generated/messages/events_pb2.py,sha256=
|
|
37
|
-
canvas_generated/messages/events_pb2.pyi,sha256=
|
|
97
|
+
canvas_generated/messages/events_pb2.py,sha256=lI_tOobXO_vzNq9pH1AK1t-sAzV5HYzxdeP3p_3WcJA,33380
|
|
98
|
+
canvas_generated/messages/events_pb2.pyi,sha256=O-43KWoy8NwWkwUZu9CBbYhlnTaPtwk41dKUkHiOU3Q,59296
|
|
38
99
|
canvas_generated/messages/events_pb2_grpc.py,sha256=1oboBPFxaTEXt9Aw7EAj8gXHDCNMhZD2VXqocC9l_gk,159
|
|
39
100
|
canvas_generated/messages/plugins_pb2.py,sha256=j2yt9uoSlVMtWg-cAoOmxiT-XWbBrqqCBZXOxEz7z4g,1271
|
|
40
101
|
canvas_generated/messages/plugins_pb2.pyi,sha256=G1seqytP8GlJJh-AL2CJ0VyUNlReEvK61C-Oh8QuGiE,501
|
|
@@ -110,10 +171,13 @@ canvas_sdk/utils/tests.py,sha256=t3MScbIfzXkQttMIvj0dRzJlFVS8LFU8WgWRrChM-H0,193
|
|
|
110
171
|
canvas_sdk/v1/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
111
172
|
canvas_sdk/v1/data/__init__.py,sha256=LWAcICOx4fWea_lp_yNt0UIuhgjZMoNOaWx-7ZuM-dg,132
|
|
112
173
|
canvas_sdk/v1/data/allergy_intolerance.py,sha256=KJg7UR8BJMuASWL5zXZ57JTmC0TQT7FAnODPvdq2mFg,2093
|
|
113
|
-
canvas_sdk/v1/data/base.py,sha256=
|
|
174
|
+
canvas_sdk/v1/data/base.py,sha256=6JgLZsl9NRRS6s9-jjJM8Opxk_SI_sGkyokKIGPCoWI,3504
|
|
175
|
+
canvas_sdk/v1/data/command.py,sha256=z9LHw95Vq8efZE5y9r-Ei-Yzt8qj-o-BE3x9BBb4yPQ,945
|
|
114
176
|
canvas_sdk/v1/data/condition.py,sha256=hJ3APJvRh-dKYwujujdo5kugnc6YXBES7YpUIKUTjhI,1525
|
|
177
|
+
canvas_sdk/v1/data/device.py,sha256=uxeQRT8ljzBmDwsARFDB9MZKAVAKOA-pu4nAa6fcHeU,1655
|
|
115
178
|
canvas_sdk/v1/data/lab.py,sha256=Ni_yTcye_GeDZGTVFU3ENHBA1LzOqrO1-B6Rd8Vk5Bw,3754
|
|
116
179
|
canvas_sdk/v1/data/medication.py,sha256=XbV_iYgt40n8Q1IcVPtsinW2v-VJEms4T13cFNquBRE,1798
|
|
180
|
+
canvas_sdk/v1/data/observation.py,sha256=BftaK7tOZaTlfUKoTH_A-X23J4DUFRVWpvZhkBJ1DJg,3710
|
|
117
181
|
canvas_sdk/v1/data/patient.py,sha256=6tMNSpuzYCe_wZ-7rogz_pPVtT0KN3_nHW00_0LMPuI,1837
|
|
118
182
|
canvas_sdk/v1/data/questionnaire.py,sha256=kG707mDOLbvpZYdK7WyVUlaGK_0XySi2sgRwAHvhdsE,6773
|
|
119
183
|
canvas_sdk/v1/data/user.py,sha256=DmA8fNNGwiNOmuR-RYxQw1NpxN5yYhgwtRtRBRJ_22g,309
|
|
@@ -138,8 +202,15 @@ canvas_sdk/value_set/value_set.py,sha256=1SID9g4M6BsfVLNawI-96Tu33mAFGOj4wwHOinP
|
|
|
138
202
|
canvas_sdk/views/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
203
|
logger/__init__.py,sha256=9o2iRCjzFEhfULgXvrrECRFK-4IslWJTqKKjTCEUbq8,61
|
|
140
204
|
logger/logger.py,sha256=axf7UffBJtETjwDCtmi1IaaJKsvcFj8zaLfouGsq68A,1847
|
|
205
|
+
plugin_runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
206
|
+
plugin_runner/authentication.py,sha256=_lChLl8XMqDME6NlnXm6S6-9LUac4poE5XU1YTJWldg,1236
|
|
207
|
+
plugin_runner/plugin_runner.py,sha256=YTxW9neu0YSGydXbONgNxMTtyAi-szbbPColdV71RVs,11389
|
|
208
|
+
plugin_runner/plugin_synchronizer.py,sha256=t3zzfDw-bDK_hvUDQ434qaQuKLGgBGndzaCRAnSpuTU,2554
|
|
209
|
+
plugin_runner/sandbox.py,sha256=mBmd1tMKYm5Ji-MKavTIH13Yh76S-IOm8yrQiTAJbZA,8968
|
|
210
|
+
pubsub/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
+
pubsub/pubsub.py,sha256=pyTW0JU8mtaqiAV6g6xjZwel1CVy2EonPMU-_vkmhUM,1044
|
|
141
212
|
settings.py,sha256=aKySQIXYBQLu06zJKiGSln12w3th3mbB_11VFMGDsm8,1480
|
|
142
|
-
canvas-0.3.
|
|
143
|
-
canvas-0.3.
|
|
144
|
-
canvas-0.3.
|
|
145
|
-
canvas-0.3.
|
|
213
|
+
canvas-0.3.1.dist-info/METADATA,sha256=jaAhqcRKlp_zCaX5LAIVwsLtVPwJ-wRvV1p_zv2Wf8M,4500
|
|
214
|
+
canvas-0.3.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
215
|
+
canvas-0.3.1.dist-info/entry_points.txt,sha256=VSmSo1IZ3aEfL7enmLmlWSraS_IIkoXNVeyXzgRxFiY,46
|
|
216
|
+
canvas-0.3.1.dist-info/RECORD,,
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import json
|
|
2
|
+
import random
|
|
3
|
+
from pathlib import Path
|
|
4
|
+
from typing import Annotated
|
|
5
|
+
|
|
6
|
+
import grpc
|
|
7
|
+
import typer
|
|
8
|
+
|
|
9
|
+
from canvas_generated.messages.events_pb2 import Event as PluginRunnerEvent
|
|
10
|
+
from canvas_generated.messages.events_pb2 import EventType as PluginRunnerEventType
|
|
11
|
+
from canvas_generated.services.plugin_runner_pb2_grpc import PluginRunnerStub
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def emit(
|
|
15
|
+
event_fixture: str,
|
|
16
|
+
plugin_runner_port: Annotated[
|
|
17
|
+
str, typer.Option(help="Port of your locally running plugin runner")
|
|
18
|
+
] = "50051",
|
|
19
|
+
) -> None:
|
|
20
|
+
"""
|
|
21
|
+
Send an event fixture to your locally running plugin-runner process, and print any resultant effects.
|
|
22
|
+
|
|
23
|
+
Valid fixture files are newline-delimited JSON, with each containing the keys `EventType`, `target`, and `context`. Some fixture files are included in the canvas-plugins repo.
|
|
24
|
+
"""
|
|
25
|
+
# If an event fixture file exists at the specified path, use it.
|
|
26
|
+
# Otherwise, see if it represents an event that we have a Canvas-provided
|
|
27
|
+
# fixture for and use that.
|
|
28
|
+
event_fixture_path = Path(event_fixture)
|
|
29
|
+
|
|
30
|
+
if not event_fixture_path.exists():
|
|
31
|
+
candidate_built_in_fixture_path = (
|
|
32
|
+
Path(__file__).resolve().parent / "event_fixtures" / f"{event_fixture}.ndjson"
|
|
33
|
+
)
|
|
34
|
+
if candidate_built_in_fixture_path.exists():
|
|
35
|
+
event_fixture_path = candidate_built_in_fixture_path
|
|
36
|
+
else:
|
|
37
|
+
print(f"ERROR: No file found at location {event_fixture}.")
|
|
38
|
+
print(f"ERROR: No built-in fixture file found named {event_fixture}.ndjson.")
|
|
39
|
+
return
|
|
40
|
+
|
|
41
|
+
# Grab a random event from the fixture file ndjson
|
|
42
|
+
lines = event_fixture_path.read_text().splitlines()
|
|
43
|
+
myline = random.choice(lines)
|
|
44
|
+
event_data = json.loads(myline)
|
|
45
|
+
event = PluginRunnerEvent(
|
|
46
|
+
type=PluginRunnerEventType.Value(event_data["EventType"]),
|
|
47
|
+
target=event_data["target"],
|
|
48
|
+
context=event_data["context"],
|
|
49
|
+
)
|
|
50
|
+
with grpc.insecure_channel(f"localhost:{plugin_runner_port}") as channel:
|
|
51
|
+
stub = PluginRunnerStub(channel)
|
|
52
|
+
responses = stub.HandleEvent(event)
|
|
53
|
+
|
|
54
|
+
at_least_one_effect = False
|
|
55
|
+
try:
|
|
56
|
+
for response in responses:
|
|
57
|
+
for effect in response.effects:
|
|
58
|
+
at_least_one_effect = True
|
|
59
|
+
print(effect)
|
|
60
|
+
|
|
61
|
+
if not at_least_one_effect:
|
|
62
|
+
print("SUCCESS: No effects returned.")
|
|
63
|
+
except grpc.RpcError as e:
|
|
64
|
+
if e.code() == grpc.StatusCode.UNAVAILABLE:
|
|
65
|
+
print(
|
|
66
|
+
f"ERROR: Couldn't make a connection to a plugin runner process at localhost:{plugin_runner_port}. Is it running?"
|
|
67
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "ALLERGY_INTOLERANCE_CREATED", "target": "4bbdb87a-3f97-4374-81e6-1e8ce5d3c121", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "ALLERGY_INTOLERANCE_UPDATED", "target": "4bbdb87a-3f97-4374-81e6-1e8ce5d3c121", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_CANCELED", "target": "dceb23ed-5ab2-4505-ad65-f6bec10c956f", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_CHECKED_IN", "target": "dceb23ed-5ab2-4505-ad65-f6bec10c956f", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_CREATED", "target": "2a660120-7284-45cf-9700-08c004cef781", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_NO_SHOWED", "target": "dceb23ed-5ab2-4505-ad65-f6bec10c956f", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_RESCHEDULED", "target": "dceb23ed-5ab2-4505-ad65-f6bec10c956f", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "APPOINTMENT_RESTORED", "target": "dceb23ed-5ab2-4505-ad65-f6bec10c956f", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__CONDITION_SELECTED", "target": "72943f6d-fa4b-49e7-b92b-64975b516d0a", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter (W56.21XA)\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": null, \"value\": 25}, \"background\": \"\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"0c81daca-cf89-4f9b-bc3d-6f1ae0644f27\"}, \"data\": {\"condition\": {\"codings\": [{\"code\": \"404684003\", \"system\": \"http://snomed.info/sct\", \"display\": \"Bitten by orca, initial encounter\"}, {\"code\": \"W5621XA\", \"system\": \"ICD-10\", \"display\": \"Bitten by orca, initial encounter\"}], \"id\": \"6dfcc4b4-1ede-4d6d-a89a-1c847fecb9f0\"}}}"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__POST_COMMIT", "target": "c7f437b1-d216-4840-9db0-32cd6cec3a7d", "context": "{\"fields\": {\"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"possibly psychosomatic\", \"status\": \"improved\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__POST_COMMIT", "target": "29a556cc-bd21-4615-b6dd-45ef4f381f76", "context": "{\"fields\": {\"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"possibly psychosomatic\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__POST_COMMIT", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"orca jumped into the boat and CHOMP\", \"status\": \"stable\", \"narrative\": \"YIKES\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__POST_ORIGINATE", "target": "c7f437b1-d216-4840-9db0-32cd6cec3a7d", "context": "{\"fields\": {\"condition\": {\"text\": \"Lyme disease, unspecified\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": null, \"value\": 24}, \"background\": \"possibly psychosomatic\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__POST_ORIGINATE", "target": "29a556cc-bd21-4615-b6dd-45ef4f381f76", "context": "{\"fields\": {\"condition\": {\"text\": \"Lyme disease, unspecified\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": null, \"value\": 24}, \"background\": \"possibly psychosomatic\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__POST_ORIGINATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": null, \"value\": 25}, \"background\": \"orca jumped into the boat and CHOMP\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
4
|
+
{"EventType": "ASSESS_COMMAND__POST_ORIGINATE", "target": "72943f6d-fa4b-49e7-b92b-64975b516d0a", "context": "{\"fields\": {\"condition\": null, \"background\": \"\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"0c81daca-cf89-4f9b-bc3d-6f1ae0644f27\"}}"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__POST_UPDATE", "target": "c7f437b1-d216-4840-9db0-32cd6cec3a7d", "context": "{\"fields\": {\"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"possibly psychosomatic\", \"status\": \"improved\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__POST_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"orca jumped into the boat and CHOMP\", \"status\": \"stable\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__POST_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"orca jumped into the boat and CHOMP\", \"status\": \"stable\", \"narrative\": \"T\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
4
|
+
{"EventType": "ASSESS_COMMAND__POST_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"background\": \"orca jumped into the boat and CHOMP\", \"status\": \"stable\", \"narrative\": \"YIKES\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
5
|
+
{"EventType": "ASSESS_COMMAND__POST_UPDATE", "target": "72943f6d-fa4b-49e7-b92b-64975b516d0a", "context": "{\"fields\": {\"condition\": {\"text\": \"Bitten by orca, initial encounter (W56.21XA)\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": null, \"value\": 25}, \"background\": \"\", \"status\": \"\", \"narrative\": \"\"}, \"note\": {\"uuid\": \"0c81daca-cf89-4f9b-bc3d-6f1ae0644f27\"}}"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__PRE_COMMIT", "target": "c7f437b1-d216-4840-9db0-32cd6cec3a7d", "context": "{\"fields\": {\"status\": \"improved\", \"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"\", \"background\": \"possibly psychosomatic\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__PRE_COMMIT", "target": "29a556cc-bd21-4615-b6dd-45ef4f381f76", "context": "{\"fields\": {\"status\": \"\", \"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"\", \"background\": \"possibly psychosomatic\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__PRE_COMMIT", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"status\": \"stable\", \"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"YIKES\", \"background\": \"orca jumped into the boat and CHOMP\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__PRE_ORIGINATE", "target": "3a8b0bad-a93a-4862-b6ef-482a4680bf52", "context": "{\"fields\": {\"patient\": 3, \"background\": \"possibly psychosomatic\", \"condition\": \"{\\\"text\\\":\\\"Lyme disease, unspecified\\\",\\\"disabled\\\":false,\\\"description\\\":null,\\\"annotations\\\":null,\\\"extra\\\":null,\\\"value\\\":24}\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__PRE_ORIGINATE", "target": "dad98453-57b6-49e9-a17e-9fb2baf317eb", "context": "{\"fields\": {\"patient\": 3, \"background\": \"possibly psychosomatic\", \"condition\": \"{\\\"text\\\":\\\"Lyme disease, unspecified\\\",\\\"disabled\\\":false,\\\"description\\\":null,\\\"annotations\\\":null,\\\"extra\\\":null,\\\"value\\\":24}\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__PRE_ORIGINATE", "target": "855793e6-0fe3-4c75-8f51-ca381c57e9b0", "context": "{\"fields\": {\"patient\": 4, \"background\": \"orca jumped into the boat and CHOMP\", \"condition\": \"{\\\"text\\\":\\\"Bitten by orca, initial encounter\\\",\\\"disabled\\\":false,\\\"description\\\":null,\\\"annotations\\\":null,\\\"extra\\\":null,\\\"value\\\":25}\"}}"}
|
|
4
|
+
{"EventType": "ASSESS_COMMAND__PRE_ORIGINATE", "target": "fc3a3b89-8e4a-4b08-9501-30378079e1fc", "context": "{\"fields\": {}}"}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"EventType": "ASSESS_COMMAND__PRE_UPDATE", "target": "c7f437b1-d216-4840-9db0-32cd6cec3a7d", "context": "{\"fields\": {\"status\": \"\", \"condition\": {\"text\": \"Lyme disease, unspecified\", \"extra\": null, \"value\": 24, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"\", \"background\": \"possibly psychosomatic\"}, \"note\": {\"uuid\": \"36eab35a-9484-459a-aa49-166caccbf9d8\"}}"}
|
|
2
|
+
{"EventType": "ASSESS_COMMAND__PRE_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"status\": \"\", \"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"\", \"background\": \"orca jumped into the boat and CHOMP\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
3
|
+
{"EventType": "ASSESS_COMMAND__PRE_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"status\": \"stable\", \"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"\", \"background\": \"orca jumped into the boat and CHOMP\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
4
|
+
{"EventType": "ASSESS_COMMAND__PRE_UPDATE", "target": "d5f111bf-ade2-4d94-b0c7-5d90f8a15adc", "context": "{\"fields\": {\"status\": \"stable\", \"condition\": {\"text\": \"Bitten by orca, initial encounter\", \"extra\": null, \"value\": 25, \"disabled\": false, \"annotations\": null, \"description\": null}, \"narrative\": \"T\", \"background\": \"orca jumped into the boat and CHOMP\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
5
|
+
{"EventType": "ASSESS_COMMAND__PRE_UPDATE", "target": "72943f6d-fa4b-49e7-b92b-64975b516d0a", "context": "{\"fields\": {\"status\": \"\", \"condition\": null, \"narrative\": \"\", \"background\": \"\"}, \"note\": {\"uuid\": \"0c81daca-cf89-4f9b-bc3d-6f1ae0644f27\"}}"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"EventType": "BILLING_LINE_ITEM_CREATED", "target": "f45eb4a7-911e-441c-8ccb-444646122f8c", "context": ""}
|
|
2
|
+
{"EventType": "BILLING_LINE_ITEM_CREATED", "target": "3fe32af0-d16e-4aff-8a46-b48a12add1bd", "context": ""}
|
|
3
|
+
{"EventType": "BILLING_LINE_ITEM_CREATED", "target": "a3ee0a47-bb58-483f-a9e6-aa4fbd949705", "context": ""}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
{"EventType": "CONDITION_CREATED", "target": "6dfcc4b4-1ede-4d6d-a89a-1c847fecb9f0", "context": ""}
|
|
2
|
+
{"EventType": "CONDITION_CREATED", "target": "1b0909c8-b27e-40ed-911b-a09a842af357", "context": ""}
|
|
3
|
+
{"EventType": "CONDITION_CREATED", "target": "46b7a314-216d-45dd-9084-f3e2b2a4e514", "context": ""}
|
|
4
|
+
{"EventType": "CONDITION_CREATED", "target": "2a384fec-5d21-4860-96b6-6a88c9b97a32", "context": ""}
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
{"EventType": "CONDITION_UPDATED", "target": "c17f6cda-9482-4e98-9b52-3f8690149d94", "context": ""}
|
|
2
|
+
{"EventType": "CONDITION_UPDATED", "target": "6dfcc4b4-1ede-4d6d-a89a-1c847fecb9f0", "context": ""}
|
|
3
|
+
{"EventType": "CONDITION_UPDATED", "target": "1b0909c8-b27e-40ed-911b-a09a842af357", "context": ""}
|
|
4
|
+
{"EventType": "CONDITION_UPDATED", "target": "46b7a314-216d-45dd-9084-f3e2b2a4e514", "context": ""}
|
|
5
|
+
{"EventType": "CONDITION_UPDATED", "target": "2a384fec-5d21-4860-96b6-6a88c9b97a32", "context": ""}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
{"EventType": "ENCOUNTER_CREATED", "target": "c0fb801b-9c3e-4652-bef9-6e27cafa4408", "context": ""}
|
|
2
|
+
{"EventType": "ENCOUNTER_CREATED", "target": "0003ecf0-7976-4477-98c1-e83ae6037b76", "context": ""}
|
|
3
|
+
{"EventType": "ENCOUNTER_CREATED", "target": "9dabf973-8563-4c32-a2eb-7d1baa9095e7", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "IMMUNIZATION_CREATED", "target": "daef72f4-746f-4513-97a1-10e3c41d4d54", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "IMMUNIZATION_STATEMENT_CREATED", "target": "ee55b27a-7b35-4e37-bd81-c6dde9dc58bb", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "IMMUNIZATION_STATEMENT_UPDATED", "target": "ee55b27a-7b35-4e37-bd81-c6dde9dc58bb", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "IMMUNIZATION_UPDATED", "target": "daef72f4-746f-4513-97a1-10e3c41d4d54", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "INTERVIEW_CREATED", "target": "14361270-5d7a-47b9-9b49-eeaaf27c4179", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "INTERVIEW_UPDATED", "target": "14361270-5d7a-47b9-9b49-eeaaf27c4179", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "LAB_ORDER_CREATED", "target": "495353d8-8b86-465c-92fc-2c71651a7d10", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "LAB_ORDER_UPDATED", "target": "495353d8-8b86-465c-92fc-2c71651a7d10", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_LIST_ITEM_CREATED", "target": "80bdb886-bd67-49f3-ac85-4d0a0833b53a", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_LIST_ITEM_UPDATED", "target": "80bdb886-bd67-49f3-ac85-4d0a0833b53a", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__POST_COMMIT", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"medication\": {\"text\": \"Aller-Tec 10 mg tablet\", \"extra\": {\"coding\": [{\"code\": 554704, \"system\": \"http://www.fdbhealth.com/\", \"display\": \"Aller-Tec 10 mg tablet\"}, {\"code\": \"1014678\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\", \"display\": \"Aller-Tec 10 mg tablet\"}]}, \"value\": 554704, \"disabled\": false, \"annotations\": null, \"description\": null}, \"sig\": \"once a day\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__POST_ORIGINATE", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"medication\": null, \"sig\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__POST_UPDATE", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"medication\": {\"text\": \"Aller-Tec 10 mg tablet\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554704, \"display\": \"Aller-Tec 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"Aller-Tec 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}, \"value\": 554704}, \"sig\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
2
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__POST_UPDATE", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"medication\": {\"text\": \"Aller-Tec 10 mg tablet\", \"extra\": {\"coding\": [{\"code\": 554704, \"system\": \"http://www.fdbhealth.com/\", \"display\": \"Aller-Tec 10 mg tablet\"}, {\"code\": \"1014678\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\", \"display\": \"Aller-Tec 10 mg tablet\"}]}, \"value\": 554704, \"disabled\": false, \"annotations\": null, \"description\": null}, \"sig\": \"once a day\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__PRE_COMMIT", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"sig\": \"once a day\", \"medication\": {\"text\": \"Aller-Tec 10 mg tablet\", \"extra\": {\"coding\": [{\"code\": 554704, \"system\": \"http://www.fdbhealth.com/\", \"display\": \"Aller-Tec 10 mg tablet\"}, {\"code\": \"1014678\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\", \"display\": \"Aller-Tec 10 mg tablet\"}]}, \"value\": 554704, \"disabled\": false, \"annotations\": null, \"description\": null}}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__PRE_ORIGINATE", "target": "6c6eca6f-2e92-436b-a78f-88f619bf0436", "context": "{\"fields\": {}}"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__PRE_UPDATE", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"sig\": \"\", \"medication\": null}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
2
|
+
{"EventType": "MEDICATION_STATEMENT_COMMAND__PRE_UPDATE", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"fields\": {\"sig\": \"\", \"medication\": {\"text\": \"Aller-Tec 10 mg tablet\", \"extra\": {\"coding\": [{\"code\": 554704, \"system\": \"http://www.fdbhealth.com/\", \"display\": \"Aller-Tec 10 mg tablet\"}, {\"code\": \"1014678\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\", \"display\": \"Aller-Tec 10 mg tablet\"}]}, \"value\": 554704, \"disabled\": false, \"annotations\": null, \"description\": null}}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"EventType": "MEDICATION_STATEMENT__MEDICATION__POST_SEARCH", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"search_term\": \"\", \"results\": []}"}
|
|
2
|
+
{"EventType": "MEDICATION_STATEMENT__MEDICATION__POST_SEARCH", "target": "a2f51df6-860c-47d8-9ff3-f8eeb11661a9", "context": "{\"search_term\": \"zyr\", \"results\": [{\"text\": \"Zyrtec 10 mg tablet\", \"value\": 199378, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 199378, \"display\": \"Zyrtec 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"Zyrtec 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Zyrtec 10 mg capsule\", \"value\": 560604, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 560604, \"display\": \"Zyrtec 10 mg capsule\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014675\", \"display\": \"Zyrtec 10 mg capsule\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Aller-Tec 10 mg tablet\", \"value\": 554704, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554704, \"display\": \"Aller-Tec 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"Aller-Tec 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 5 mg tablet\", \"value\": 172912, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 172912, \"display\": \"cetirizine 5 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014676\", \"display\": \"cetirizine 5 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 10 mg tablet\", \"value\": 170282, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 170282, \"display\": \"cetirizine 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"cetirizine 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 10 mg capsule\", \"value\": 560597, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 560597, \"display\": \"cetirizine 10 mg capsule\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014675\", \"display\": \"cetirizine 10 mg capsule\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"24Hour Allergy 10 mg tablet\", \"value\": 591062, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 591062, \"display\": \"24Hour Allergy 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"24Hour Allergy 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Zyrtec 10 mg chewable tablet\", \"value\": 467730, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 467730, \"display\": \"Zyrtec 10 mg chewable tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014674\", \"display\": \"Zyrtec 10 mg chewable tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 5 mg chewable tablet\", \"value\": 467722, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 467722, \"display\": \"cetirizine 5 mg chewable tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014643\", \"display\": \"cetirizine 5 mg chewable tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 10 mg chewable tablet\", \"value\": 467723, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 467723, \"display\": \"cetirizine 10 mg chewable tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014674\", \"display\": \"cetirizine 10 mg chewable tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 1 mg/mL oral solution\", \"value\": 554828, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554828, \"display\": \"cetirizine 1 mg/mL oral solution\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014673\", \"display\": \"cetirizine 1 mg/mL oral solution\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Wal-Zyr (cetirizine) 10 mg tablet\", \"value\": 554341, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554341, \"display\": \"Wal-Zyr (cetirizine) 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"Wal-Zyr (cetirizine) 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 5 mg/5 mL oral solution\", \"value\": 559488, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 559488, \"display\": \"cetirizine 5 mg/5 mL oral solution\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014673\", \"display\": \"cetirizine 5 mg/5 mL oral solution\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Wal-Zyr (cetirizine) 10 mg capsule\", \"value\": 582234, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 582234, \"display\": \"Wal-Zyr (cetirizine) 10 mg capsule\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014675\", \"display\": \"Wal-Zyr (cetirizine) 10 mg capsule\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Zyrtec 10 mg disintegrating tablet\", \"value\": 563140, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 563140, \"display\": \"Zyrtec 10 mg disintegrating tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1011482\", \"display\": \"Zyrtec 10 mg disintegrating tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"ketotifen 0.025 % (0.035 %) eye drops\", \"value\": 176726, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 176726, \"display\": \"ketotifen 0.025 % (0.035 %) eye drops\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"311237\", \"display\": \"ketotifen 0.025 % (0.035 %) eye drops\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 10 mg disintegrating tablet\", \"value\": 563097, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 563097, \"display\": \"cetirizine 10 mg disintegrating tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1011482\", \"display\": \"cetirizine 10 mg disintegrating tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Allergy Relief (cetirizine) 10 mg tablet\", \"value\": 554632, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554632, \"display\": \"Allergy Relief (cetirizine) 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"Allergy Relief (cetirizine) 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Wal-Zyr 10 mg chewable tablet\", \"value\": 561000, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 561000, \"display\": \"Children's Wal-Zyr 10 mg chewable tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014674\", \"display\": \"Children's Wal-Zyr 10 mg chewable tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Wal-Zyr 1 mg/mL oral solution\", \"value\": 563721, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 563721, \"display\": \"Children's Wal-Zyr 1 mg/mL oral solution\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014673\", \"display\": \"Children's Wal-Zyr 1 mg/mL oral solution\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"All Day Allergy (cetirizine) 10 mg tablet\", \"value\": 554011, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 554011, \"display\": \"All Day Allergy (cetirizine) 10 mg tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014678\", \"display\": \"All Day Allergy (cetirizine) 10 mg tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Allergy Relief (cetirizine) 10 mg capsule\", \"value\": 577960, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 577960, \"display\": \"Allergy Relief (cetirizine) 10 mg capsule\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014675\", \"display\": \"Allergy Relief (cetirizine) 10 mg capsule\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"All Day Allergy (cetirizine) 10 mg capsule\", \"value\": 578983, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 578983, \"display\": \"All Day Allergy (cetirizine) 10 mg capsule\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014675\", \"display\": \"All Day Allergy (cetirizine) 10 mg capsule\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Wal-Zyr (cetirizine) 1 mg/mL oral solution\", \"value\": 556540, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 556540, \"display\": \"Wal-Zyr (cetirizine) 1 mg/mL oral solution\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014673\", \"display\": \"Wal-Zyr (cetirizine) 1 mg/mL oral solution\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Zyrtec-D 5 mg-120 mg tablet,extended release\", \"value\": 165435, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 165435, \"display\": \"Zyrtec-D 5 mg-120 mg tablet,extended release\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014571\", \"display\": \"Zyrtec-D 5 mg-120 mg tablet,extended release\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Wal-Zyr D 5 mg-120 mg tablet,extended release\", \"value\": 555098, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 555098, \"display\": \"Wal-Zyr D 5 mg-120 mg tablet,extended release\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014571\", \"display\": \"Wal-Zyr D 5 mg-120 mg tablet,extended release\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Wal-Zyr 10 mg disintegrating tablet\", \"value\": 615465, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 615465, \"display\": \"Children's Wal-Zyr 10 mg disintegrating tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1011482\", \"display\": \"Children's Wal-Zyr 10 mg disintegrating tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Zyrtec Allergy 1 mg/mL oral solution\", \"value\": 559019, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 559019, \"display\": \"Children's Zyrtec Allergy 1 mg/mL oral solution\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014673\", \"display\": \"Children's Zyrtec Allergy 1 mg/mL oral solution\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Wal-Zyr (ketotifen) 0.025 % (0.035 %) eye drops\", \"value\": 561662, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 561662, \"display\": \"Wal-Zyr (ketotifen) 0.025 % (0.035 %) eye drops\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"311237\", \"display\": \"Wal-Zyr (ketotifen) 0.025 % (0.035 %) eye drops\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Zyrtec Allergy 2.5 mg chewable tablet\", \"value\": 614808, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 614808, \"display\": \"Children's Zyrtec Allergy 2.5 mg chewable tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"2558501\", \"display\": \"Children's Zyrtec Allergy 2.5 mg chewable tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"Children's Zyrtec Allergy 10 mg disintegrating tablet\", \"value\": 581238, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 581238, \"display\": \"Children's Zyrtec Allergy 10 mg disintegrating tablet\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1011482\", \"display\": \"Children's Zyrtec Allergy 10 mg disintegrating tablet\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}, {\"text\": \"cetirizine 5 mg-pseudoephedrine ER 120 mg tablet,extended release,12hr\", \"value\": 151114, \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"coding\": [{\"code\": 151114, \"display\": \"cetirizine 5 mg-pseudoephedrine ER 120 mg tablet,extended release,12hr\", \"system\": \"http://www.fdbhealth.com/\"}, {\"code\": \"1014571\", \"display\": \"cetirizine 5 mg-pseudoephedrine ER 120 mg tablet,extended release,12hr\", \"system\": \"http://www.nlm.nih.gov/research/umls/rxnorm\"}]}}]}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "PATIENT_CREATED", "target": "701fb70ab94047999e57769c52317006", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "PATIENT_UPDATED", "target": "701fb70ab94047999e57769c52317006", "context": ""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "PLAN_COMMAND__POST_ORIGINATE", "target": "a0f9faee-d7b3-4faa-a3d7-e70c7ee9042c", "context": "{\"fields\": {\"narrative\": \"zebra\"}, \"note\": {\"uuid\": \"0c81daca-cf89-4f9b-bc3d-6f1ae0644f27\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "PLAN_COMMAND__PRE_ORIGINATE", "target": "a0f9faee-d7b3-4faa-a3d7-e70c7ee9042c", "context": "{\"fields\": {\"narrative\": \"zebra\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__POST_COMMIT", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"questionnaire\": {\"text\": \"Tobacco\", \"extra\": {\"pk\": 3, \"name\": \"Tobacco\", \"prologue\": \"\", \"questions\": [{\"pk\": 9, \"name\": \"question-9\", \"type\": \"SING\", \"label\": \"Tobacco status\", \"coding\": {\"code\": \"39240-7\", \"system\": \"LOINC\"}, \"options\": [{\"pk\": 25, \"code\": \"266919005\", \"label\": \"Never user\", \"value\": \"0\"}, {\"pk\": 26, \"code\": \"8517006\", \"label\": \"Former user\", \"value\": \"1\"}, {\"pk\": 27, \"code\": \"449868002\", \"label\": \"Current every day user\", \"value\": \"3\"}, {\"pk\": 28, \"code\": \"428041000124106\", \"label\": \"Current some day user\", \"value\": \"2\"}, {\"pk\": 29, \"code\": \"428071000124103\", \"label\": \"Current Heavy tobacco user\", \"value\": \"5\"}, {\"pk\": 30, \"code\": \"428061000124105\", \"label\": \"Current Light tobacco user\", \"value\": \"3\"}, {\"pk\": 31, \"code\": \"77176002\", \"label\": \"Tobacco user, current status unknown\", \"value\": \"3\"}, {\"pk\": 32, \"code\": \"266927001\", \"label\": \"Unknown if ever used tobacco\", \"value\": \"0\"}]}, {\"pk\": 10, \"name\": \"question-10\", \"type\": \"MULT\", \"label\": \"Tobacco type\", \"coding\": {\"code\": \"711013002\", \"system\": \"SNOMED\"}, \"options\": [{\"pk\": 33, \"code\": \"722496004\", \"label\": \"Cigarettes\", \"value\": \"\"}, {\"pk\": 34, \"code\": \"722498003\", \"label\": \"eCigarette\", \"value\": \"\"}, {\"pk\": 35, \"code\": \"713914004\", \"label\": \"Smokeless\", \"value\": \"\"}, {\"pk\": 36, \"code\": \"72249700\", \"label\": \"Cigar/Pipe\", \"value\": \"\"}]}, {\"pk\": 11, \"name\": \"question-11\", \"type\": \"TXT\", \"label\": \"Tobacco comment\", \"coding\": {\"code\": \"QUES_TOBACCO_Q3\", \"system\": \"INTERNAL\"}, \"options\": [{\"pk\": 37, \"code\": \"QUES_TOBACCO_A1\", \"label\": \"Tobacco comment\", \"value\": \"\"}]}], \"carry_forward_on_init\": false}, \"value\": 3, \"disabled\": false, \"annotations\": null, \"description\": null}, \"result\": \"\", \"question-9\": 25, \"question-10\": [{\"text\": \"Cigarettes\", \"value\": 33, \"comment\": \"\", \"selected\": false}, {\"text\": \"eCigarette\", \"value\": 34, \"comment\": \"\", \"selected\": false}, {\"text\": \"Smokeless\", \"value\": 35, \"comment\": \"\", \"selected\": false}, {\"text\": \"Cigar/Pipe\", \"value\": 36, \"comment\": \"\", \"selected\": false}], \"question-11\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__POST_ORIGINATE", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"questionnaire\": null, \"result\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__POST_UPDATE", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"questionnaire\": {\"text\": \"Tobacco\", \"disabled\": false, \"description\": null, \"annotations\": null, \"extra\": {\"name\": \"Tobacco\", \"prologue\": \"\", \"pk\": 3, \"carry_forward_on_init\": false, \"questions\": [{\"pk\": 9, \"name\": \"question-9\", \"label\": \"Tobacco status\", \"type\": \"SING\", \"coding\": {\"system\": \"LOINC\", \"code\": \"39240-7\"}, \"options\": [{\"pk\": 25, \"label\": \"Never user\", \"code\": \"266919005\", \"value\": \"0\"}, {\"pk\": 26, \"label\": \"Former user\", \"code\": \"8517006\", \"value\": \"1\"}, {\"pk\": 27, \"label\": \"Current every day user\", \"code\": \"449868002\", \"value\": \"3\"}, {\"pk\": 28, \"label\": \"Current some day user\", \"code\": \"428041000124106\", \"value\": \"2\"}, {\"pk\": 29, \"label\": \"Current Heavy tobacco user\", \"code\": \"428071000124103\", \"value\": \"5\"}, {\"pk\": 30, \"label\": \"Current Light tobacco user\", \"code\": \"428061000124105\", \"value\": \"3\"}, {\"pk\": 31, \"label\": \"Tobacco user, current status unknown\", \"code\": \"77176002\", \"value\": \"3\"}, {\"pk\": 32, \"label\": \"Unknown if ever used tobacco\", \"code\": \"266927001\", \"value\": \"0\"}]}, {\"pk\": 10, \"name\": \"question-10\", \"label\": \"Tobacco type\", \"type\": \"MULT\", \"coding\": {\"system\": \"SNOMED\", \"code\": \"711013002\"}, \"options\": [{\"pk\": 33, \"label\": \"Cigarettes\", \"code\": \"722496004\", \"value\": \"\"}, {\"pk\": 34, \"label\": \"eCigarette\", \"code\": \"722498003\", \"value\": \"\"}, {\"pk\": 35, \"label\": \"Smokeless\", \"code\": \"713914004\", \"value\": \"\"}, {\"pk\": 36, \"label\": \"Cigar/Pipe\", \"code\": \"72249700\", \"value\": \"\"}]}, {\"pk\": 11, \"name\": \"question-11\", \"label\": \"Tobacco comment\", \"type\": \"TXT\", \"coding\": {\"system\": \"INTERNAL\", \"code\": \"QUES_TOBACCO_Q3\"}, \"options\": [{\"pk\": 37, \"label\": \"Tobacco comment\", \"code\": \"QUES_TOBACCO_A1\", \"value\": \"\"}]}]}, \"value\": 3}, \"result\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
2
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__POST_UPDATE", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"questionnaire\": {\"text\": \"Tobacco\", \"extra\": {\"pk\": 3, \"name\": \"Tobacco\", \"prologue\": \"\", \"questions\": [{\"pk\": 9, \"name\": \"question-9\", \"type\": \"SING\", \"label\": \"Tobacco status\", \"coding\": {\"code\": \"39240-7\", \"system\": \"LOINC\"}, \"options\": [{\"pk\": 25, \"code\": \"266919005\", \"label\": \"Never user\", \"value\": \"0\"}, {\"pk\": 26, \"code\": \"8517006\", \"label\": \"Former user\", \"value\": \"1\"}, {\"pk\": 27, \"code\": \"449868002\", \"label\": \"Current every day user\", \"value\": \"3\"}, {\"pk\": 28, \"code\": \"428041000124106\", \"label\": \"Current some day user\", \"value\": \"2\"}, {\"pk\": 29, \"code\": \"428071000124103\", \"label\": \"Current Heavy tobacco user\", \"value\": \"5\"}, {\"pk\": 30, \"code\": \"428061000124105\", \"label\": \"Current Light tobacco user\", \"value\": \"3\"}, {\"pk\": 31, \"code\": \"77176002\", \"label\": \"Tobacco user, current status unknown\", \"value\": \"3\"}, {\"pk\": 32, \"code\": \"266927001\", \"label\": \"Unknown if ever used tobacco\", \"value\": \"0\"}]}, {\"pk\": 10, \"name\": \"question-10\", \"type\": \"MULT\", \"label\": \"Tobacco type\", \"coding\": {\"code\": \"711013002\", \"system\": \"SNOMED\"}, \"options\": [{\"pk\": 33, \"code\": \"722496004\", \"label\": \"Cigarettes\", \"value\": \"\"}, {\"pk\": 34, \"code\": \"722498003\", \"label\": \"eCigarette\", \"value\": \"\"}, {\"pk\": 35, \"code\": \"713914004\", \"label\": \"Smokeless\", \"value\": \"\"}, {\"pk\": 36, \"code\": \"72249700\", \"label\": \"Cigar/Pipe\", \"value\": \"\"}]}, {\"pk\": 11, \"name\": \"question-11\", \"type\": \"TXT\", \"label\": \"Tobacco comment\", \"coding\": {\"code\": \"QUES_TOBACCO_Q3\", \"system\": \"INTERNAL\"}, \"options\": [{\"pk\": 37, \"code\": \"QUES_TOBACCO_A1\", \"label\": \"Tobacco comment\", \"value\": \"\"}]}], \"carry_forward_on_init\": false}, \"value\": 3, \"disabled\": false, \"annotations\": null, \"description\": null}, \"result\": \"\", \"question-9\": 25, \"question-10\": [{\"text\": \"Cigarettes\", \"value\": 33, \"selected\": false, \"comment\": \"\"}, {\"text\": \"eCigarette\", \"value\": 34, \"selected\": false, \"comment\": \"\"}, {\"text\": \"Smokeless\", \"value\": 35, \"selected\": false, \"comment\": \"\"}, {\"text\": \"Cigar/Pipe\", \"value\": 36, \"selected\": false, \"comment\": \"\"}], \"question-11\": \"\"}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__PRE_COMMIT", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"result\": \"\", \"question-9\": 25, \"question-10\": [{\"text\": \"Cigarettes\", \"value\": 33, \"comment\": \"\", \"selected\": false}, {\"text\": \"eCigarette\", \"value\": 34, \"comment\": \"\", \"selected\": false}, {\"text\": \"Smokeless\", \"value\": 35, \"comment\": \"\", \"selected\": false}, {\"text\": \"Cigar/Pipe\", \"value\": 36, \"comment\": \"\", \"selected\": false}], \"question-11\": \"\", \"questionnaire\": {\"text\": \"Tobacco\", \"extra\": {\"pk\": 3, \"name\": \"Tobacco\", \"prologue\": \"\", \"questions\": [{\"pk\": 9, \"name\": \"question-9\", \"type\": \"SING\", \"label\": \"Tobacco status\", \"coding\": {\"code\": \"39240-7\", \"system\": \"LOINC\"}, \"options\": [{\"pk\": 25, \"code\": \"266919005\", \"label\": \"Never user\", \"value\": \"0\"}, {\"pk\": 26, \"code\": \"8517006\", \"label\": \"Former user\", \"value\": \"1\"}, {\"pk\": 27, \"code\": \"449868002\", \"label\": \"Current every day user\", \"value\": \"3\"}, {\"pk\": 28, \"code\": \"428041000124106\", \"label\": \"Current some day user\", \"value\": \"2\"}, {\"pk\": 29, \"code\": \"428071000124103\", \"label\": \"Current Heavy tobacco user\", \"value\": \"5\"}, {\"pk\": 30, \"code\": \"428061000124105\", \"label\": \"Current Light tobacco user\", \"value\": \"3\"}, {\"pk\": 31, \"code\": \"77176002\", \"label\": \"Tobacco user, current status unknown\", \"value\": \"3\"}, {\"pk\": 32, \"code\": \"266927001\", \"label\": \"Unknown if ever used tobacco\", \"value\": \"0\"}]}, {\"pk\": 10, \"name\": \"question-10\", \"type\": \"MULT\", \"label\": \"Tobacco type\", \"coding\": {\"code\": \"711013002\", \"system\": \"SNOMED\"}, \"options\": [{\"pk\": 33, \"code\": \"722496004\", \"label\": \"Cigarettes\", \"value\": \"\"}, {\"pk\": 34, \"code\": \"722498003\", \"label\": \"eCigarette\", \"value\": \"\"}, {\"pk\": 35, \"code\": \"713914004\", \"label\": \"Smokeless\", \"value\": \"\"}, {\"pk\": 36, \"code\": \"72249700\", \"label\": \"Cigar/Pipe\", \"value\": \"\"}]}, {\"pk\": 11, \"name\": \"question-11\", \"type\": \"TXT\", \"label\": \"Tobacco comment\", \"coding\": {\"code\": \"QUES_TOBACCO_Q3\", \"system\": \"INTERNAL\"}, \"options\": [{\"pk\": 37, \"code\": \"QUES_TOBACCO_A1\", \"label\": \"Tobacco comment\", \"value\": \"\"}]}], \"carry_forward_on_init\": false}, \"value\": 3, \"disabled\": false, \"annotations\": null, \"description\": null}}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__PRE_ORIGINATE", "target": "5e2fde0f-099d-4f8e-a2b9-41dacc877bd3", "context": "{\"fields\": {}}"}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__PRE_UPDATE", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"result\": \"\", \"questionnaire\": null}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|
|
2
|
+
{"EventType": "QUESTIONNAIRE_COMMAND__PRE_UPDATE", "target": "6f3dfeda-7c9a-466e-9f8a-dc5fe062b446", "context": "{\"fields\": {\"result\": \"\", \"questionnaire\": {\"text\": \"Tobacco\", \"extra\": {\"pk\": 3, \"name\": \"Tobacco\", \"prologue\": \"\", \"questions\": [{\"pk\": 9, \"name\": \"question-9\", \"type\": \"SING\", \"label\": \"Tobacco status\", \"coding\": {\"code\": \"39240-7\", \"system\": \"LOINC\"}, \"options\": [{\"pk\": 25, \"code\": \"266919005\", \"label\": \"Never user\", \"value\": \"0\"}, {\"pk\": 26, \"code\": \"8517006\", \"label\": \"Former user\", \"value\": \"1\"}, {\"pk\": 27, \"code\": \"449868002\", \"label\": \"Current every day user\", \"value\": \"3\"}, {\"pk\": 28, \"code\": \"428041000124106\", \"label\": \"Current some day user\", \"value\": \"2\"}, {\"pk\": 29, \"code\": \"428071000124103\", \"label\": \"Current Heavy tobacco user\", \"value\": \"5\"}, {\"pk\": 30, \"code\": \"428061000124105\", \"label\": \"Current Light tobacco user\", \"value\": \"3\"}, {\"pk\": 31, \"code\": \"77176002\", \"label\": \"Tobacco user, current status unknown\", \"value\": \"3\"}, {\"pk\": 32, \"code\": \"266927001\", \"label\": \"Unknown if ever used tobacco\", \"value\": \"0\"}]}, {\"pk\": 10, \"name\": \"question-10\", \"type\": \"MULT\", \"label\": \"Tobacco type\", \"coding\": {\"code\": \"711013002\", \"system\": \"SNOMED\"}, \"options\": [{\"pk\": 33, \"code\": \"722496004\", \"label\": \"Cigarettes\", \"value\": \"\"}, {\"pk\": 34, \"code\": \"722498003\", \"label\": \"eCigarette\", \"value\": \"\"}, {\"pk\": 35, \"code\": \"713914004\", \"label\": \"Smokeless\", \"value\": \"\"}, {\"pk\": 36, \"code\": \"72249700\", \"label\": \"Cigar/Pipe\", \"value\": \"\"}]}, {\"pk\": 11, \"name\": \"question-11\", \"type\": \"TXT\", \"label\": \"Tobacco comment\", \"coding\": {\"code\": \"QUES_TOBACCO_Q3\", \"system\": \"INTERNAL\"}, \"options\": [{\"pk\": 37, \"code\": \"QUES_TOBACCO_A1\", \"label\": \"Tobacco comment\", \"value\": \"\"}]}], \"carry_forward_on_init\": false}, \"value\": 3, \"disabled\": false, \"annotations\": null, \"description\": null}}, \"note\": {\"uuid\": \"521454d8-3969-43bd-ac23-1325fc6950ea\"}}"}
|