davinci_crd_test_kit 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +201 -0
- data/lib/davinci_crd_test_kit/card_responses/companions_prerequisites.json +58 -0
- data/lib/davinci_crd_test_kit/card_responses/create_update_coverage_information.json +20 -0
- data/lib/davinci_crd_test_kit/card_responses/external_reference.json +21 -0
- data/lib/davinci_crd_test_kit/card_responses/instructions.json +14 -0
- data/lib/davinci_crd_test_kit/card_responses/launch_smart_app.json +21 -0
- data/lib/davinci_crd_test_kit/card_responses/propose_alternate_request.json +71 -0
- data/lib/davinci_crd_test_kit/card_responses/request_form_completion.json +227 -0
- data/lib/davinci_crd_test_kit/cards_validation.rb +234 -0
- data/lib/davinci_crd_test_kit/client_fhir_api_group.rb +762 -0
- data/lib/davinci_crd_test_kit/client_hook_request_validation.rb +15 -0
- data/lib/davinci_crd_test_kit/client_hooks_group.rb +706 -0
- data/lib/davinci_crd_test_kit/client_tests/appointment_book_receive_request_test.rb +71 -0
- data/lib/davinci_crd_test_kit/client_tests/client_display_cards_attest.rb +48 -0
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_create_test.rb +40 -0
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_read_test.rb +39 -0
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_search_test.rb +232 -0
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_update_test.rb +40 -0
- data/lib/davinci_crd_test_kit/client_tests/client_fhir_api_validation_test.rb +60 -0
- data/lib/davinci_crd_test_kit/client_tests/decode_auth_token_test.rb +40 -0
- data/lib/davinci_crd_test_kit/client_tests/encounter_discharge_receive_request_test.rb +68 -0
- data/lib/davinci_crd_test_kit/client_tests/encounter_start_receive_request_test.rb +68 -0
- data/lib/davinci_crd_test_kit/client_tests/hook_request_optional_fields_test.rb +41 -0
- data/lib/davinci_crd_test_kit/client_tests/hook_request_required_fields_test.rb +40 -0
- data/lib/davinci_crd_test_kit/client_tests/hook_request_valid_context_test.rb +63 -0
- data/lib/davinci_crd_test_kit/client_tests/hook_request_valid_prefetch_test.rb +151 -0
- data/lib/davinci_crd_test_kit/client_tests/order_dispatch_receive_request_test.rb +79 -0
- data/lib/davinci_crd_test_kit/client_tests/order_select_receive_request_test.rb +76 -0
- data/lib/davinci_crd_test_kit/client_tests/order_sign_receive_request_test.rb +79 -0
- data/lib/davinci_crd_test_kit/client_tests/retrieve_jwks_test.rb +65 -0
- data/lib/davinci_crd_test_kit/client_tests/token_header_test.rb +34 -0
- data/lib/davinci_crd_test_kit/client_tests/token_payload_test.rb +61 -0
- data/lib/davinci_crd_test_kit/crd_client_suite.rb +156 -0
- data/lib/davinci_crd_test_kit/crd_jwks.json +59 -0
- data/lib/davinci_crd_test_kit/crd_options.rb +9 -0
- data/lib/davinci_crd_test_kit/crd_server_suite.rb +115 -0
- data/lib/davinci_crd_test_kit/ext/inferno_core/runnable.rb +22 -0
- data/lib/davinci_crd_test_kit/hook_request_field_validation.rb +410 -0
- data/lib/davinci_crd_test_kit/jwks.rb +25 -0
- data/lib/davinci_crd_test_kit/jwt_helper.rb +74 -0
- data/lib/davinci_crd_test_kit/mock_service_response.rb +421 -0
- data/lib/davinci_crd_test_kit/routes/cds-services.json +74 -0
- data/lib/davinci_crd_test_kit/routes/cds_services_discovery_handler.rb +18 -0
- data/lib/davinci_crd_test_kit/routes/hook_request_endpoint.rb +93 -0
- data/lib/davinci_crd_test_kit/routes/jwk_set_endpoint_handler.rb +15 -0
- data/lib/davinci_crd_test_kit/server_appointment_book_group.rb +173 -0
- data/lib/davinci_crd_test_kit/server_discovery_group.rb +59 -0
- data/lib/davinci_crd_test_kit/server_encounter_discharge_group.rb +144 -0
- data/lib/davinci_crd_test_kit/server_encounter_start_group.rb +144 -0
- data/lib/davinci_crd_test_kit/server_hook_request_validation.rb +15 -0
- data/lib/davinci_crd_test_kit/server_hooks_group.rb +69 -0
- data/lib/davinci_crd_test_kit/server_order_dispatch_group.rb +173 -0
- data/lib/davinci_crd_test_kit/server_order_select_group.rb +169 -0
- data/lib/davinci_crd_test_kit/server_order_sign_group.rb +198 -0
- data/lib/davinci_crd_test_kit/server_required_card_response_validation_group.rb +23 -0
- data/lib/davinci_crd_test_kit/server_tests/additional_orders_validation_test.rb +70 -0
- data/lib/davinci_crd_test_kit/server_tests/card_optional_fields_validation_test.rb +47 -0
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_across_hooks_validation_test.rb +32 -0
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_received_test.rb +58 -0
- data/lib/davinci_crd_test_kit/server_tests/coverage_information_system_action_validation_test.rb +121 -0
- data/lib/davinci_crd_test_kit/server_tests/create_or_update_coverage_info_response_validation_test.rb +72 -0
- data/lib/davinci_crd_test_kit/server_tests/discovery_endpoint_test.rb +88 -0
- data/lib/davinci_crd_test_kit/server_tests/discovery_services_validation_test.rb +65 -0
- data/lib/davinci_crd_test_kit/server_tests/external_reference_card_across_hooks_validation_test.rb +28 -0
- data/lib/davinci_crd_test_kit/server_tests/external_reference_card_validation_test.rb +36 -0
- data/lib/davinci_crd_test_kit/server_tests/form_completion_response_validation_test.rb +79 -0
- data/lib/davinci_crd_test_kit/server_tests/instructions_card_received_across_hooks_test.rb +25 -0
- data/lib/davinci_crd_test_kit/server_tests/instructions_card_received_test.rb +28 -0
- data/lib/davinci_crd_test_kit/server_tests/launch_smart_app_card_validation_test.rb +38 -0
- data/lib/davinci_crd_test_kit/server_tests/propose_alternate_request_card_validation_test.rb +65 -0
- data/lib/davinci_crd_test_kit/server_tests/service_call_test.rb +86 -0
- data/lib/davinci_crd_test_kit/server_tests/service_request_context_validation_test.rb +30 -0
- data/lib/davinci_crd_test_kit/server_tests/service_request_optional_fields_validation_test.rb +41 -0
- data/lib/davinci_crd_test_kit/server_tests/service_request_required_fields_validation_test.rb +43 -0
- data/lib/davinci_crd_test_kit/server_tests/service_response_validation_test.rb +82 -0
- data/lib/davinci_crd_test_kit/suggestion_actions_validation.rb +123 -0
- data/lib/davinci_crd_test_kit/tags.rb +8 -0
- data/lib/davinci_crd_test_kit/test_helper.rb +23 -0
- data/lib/davinci_crd_test_kit/urls.rb +52 -0
- data/lib/davinci_crd_test_kit/version.rb +3 -0
- data/lib/davinci_crd_test_kit.rb +2 -0
- metadata +170 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: e150fcac95cd36535cfe8a971c0049eabdfd089190ff4333d2133d8bcf0492eb
|
4
|
+
data.tar.gz: a9b089cca45e92021ac6f2d45073674884713778275fb52d6e102178d2756271
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 73225d0988962c7cdb0cfcd12defc5cb6e82319e151bf87f7c426611c4687228bef32bc3a5d429a72135a244394f906b657714ed4a74447e97ee1e1b22146bf8
|
7
|
+
data.tar.gz: cc40a88091ae745d6d7e6579e42b47fb6cd262778efcd89a22391f410ffc2b1a450564806c0b45308d8b39e0f8a48fe1e3b4cefb36c56ebddda604eaa489a71e
|
data/LICENSE
ADDED
@@ -0,0 +1,201 @@
|
|
1
|
+
Apache License
|
2
|
+
Version 2.0, January 2004
|
3
|
+
http://www.apache.org/licenses/
|
4
|
+
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
6
|
+
|
7
|
+
1. Definitions.
|
8
|
+
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
11
|
+
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
13
|
+
the copyright owner that is granting the License.
|
14
|
+
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
16
|
+
other entities that control, are controlled by, or are under common
|
17
|
+
control with that entity. For the purposes of this definition,
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
19
|
+
direction or management of such entity, whether by contract or
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
22
|
+
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
24
|
+
exercising permissions granted by this License.
|
25
|
+
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
27
|
+
including but not limited to software source code, documentation
|
28
|
+
source, and configuration files.
|
29
|
+
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
31
|
+
transformation or translation of a Source form, including but
|
32
|
+
not limited to compiled object code, generated documentation,
|
33
|
+
and conversions to other media types.
|
34
|
+
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
36
|
+
Object form, made available under the License, as indicated by a
|
37
|
+
copyright notice that is included in or attached to the work
|
38
|
+
(an example is provided in the Appendix below).
|
39
|
+
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
46
|
+
the Work and Derivative Works thereof.
|
47
|
+
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
49
|
+
the original version of the Work and any modifications or additions
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
61
|
+
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
64
|
+
subsequently incorporated within the Work.
|
65
|
+
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
72
|
+
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
78
|
+
where such license applies only to those patent claims licensable
|
79
|
+
by such Contributor that are necessarily infringed by their
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
82
|
+
institute patent litigation against any entity (including a
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
85
|
+
or contributory patent infringement, then any patent licenses
|
86
|
+
granted to You under this License for that Work shall terminate
|
87
|
+
as of the date such litigation is filed.
|
88
|
+
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
91
|
+
modifications, and in Source or Object form, provided that You
|
92
|
+
meet the following conditions:
|
93
|
+
|
94
|
+
(a) You must give any other recipients of the Work or
|
95
|
+
Derivative Works a copy of this License; and
|
96
|
+
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
98
|
+
stating that You changed the files; and
|
99
|
+
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
102
|
+
attribution notices from the Source form of the Work,
|
103
|
+
excluding those notices that do not pertain to any part of
|
104
|
+
the Derivative Works; and
|
105
|
+
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
108
|
+
include a readable copy of the attribution notices contained
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
111
|
+
of the following places: within a NOTICE text file distributed
|
112
|
+
as part of the Derivative Works; within the Source form or
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
114
|
+
within a display generated by the Derivative Works, if and
|
115
|
+
wherever such third-party notices normally appear. The contents
|
116
|
+
of the NOTICE file are for informational purposes only and
|
117
|
+
do not modify the License. You may add Your own attribution
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
120
|
+
that such additional attribution notices cannot be construed
|
121
|
+
as modifying the License.
|
122
|
+
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
124
|
+
may provide additional or different license terms and conditions
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
128
|
+
the conditions stated in this License.
|
129
|
+
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
133
|
+
this License, without any additional terms or conditions.
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
135
|
+
the terms of any separate license agreement you may have executed
|
136
|
+
with Licensor regarding such Contributions.
|
137
|
+
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
140
|
+
except as required for reasonable and customary use in describing the
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
142
|
+
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
152
|
+
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
158
|
+
incidental, or consequential damages of any character arising as a
|
159
|
+
result of this License or out of the use or inability to use the
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
162
|
+
other commercial damages or losses), even if such Contributor
|
163
|
+
has been advised of the possibility of such damages.
|
164
|
+
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
168
|
+
or other liability obligations and/or rights consistent with this
|
169
|
+
License. However, in accepting such obligations, You may act only
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
174
|
+
of your accepting any such warranty or additional liability.
|
175
|
+
|
176
|
+
END OF TERMS AND CONDITIONS
|
177
|
+
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
179
|
+
|
180
|
+
To apply the Apache License to your work, attach the following
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "{}"
|
182
|
+
replaced with your own identifying information. (Don't include
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
184
|
+
comment syntax for the file format. We also recommend that a
|
185
|
+
file or class name and description of purpose be included on the
|
186
|
+
same "printed page" as the copyright notice for easier
|
187
|
+
identification within third-party archives.
|
188
|
+
|
189
|
+
Copyright {yyyy} {name of copyright owner}
|
190
|
+
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
192
|
+
you may not use this file except in compliance with the License.
|
193
|
+
You may obtain a copy of the License at
|
194
|
+
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
196
|
+
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
200
|
+
See the License for the specific language governing permissions and
|
201
|
+
limitations under the License.
|
@@ -0,0 +1,58 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Additional Orders As Companions/Prerequisites Card",
|
3
|
+
"detail": "This is a Companions/Prerequisites Card that recommends the introduction of additional orders",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"selectionBehavior": "any",
|
15
|
+
"suggestions": [
|
16
|
+
{
|
17
|
+
"label": "Add monthly physical assessment for the first 3 months",
|
18
|
+
"actions": [
|
19
|
+
{
|
20
|
+
"type": "create",
|
21
|
+
"description": "Add order for physical assessment",
|
22
|
+
"resource": {
|
23
|
+
"resourceType": "ServiceRequest",
|
24
|
+
"status": "draft",
|
25
|
+
"intent": "order",
|
26
|
+
"category": [
|
27
|
+
{
|
28
|
+
"coding": [
|
29
|
+
{
|
30
|
+
"system": "http://snomed.info/sct",
|
31
|
+
"code": "409063005",
|
32
|
+
"display": "Counselling"
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"code": {
|
38
|
+
"coding": [
|
39
|
+
{
|
40
|
+
"system": "http://snomed.info/sct",
|
41
|
+
"code": "225885004",
|
42
|
+
"display": "Health assessment (procedure)"
|
43
|
+
}
|
44
|
+
]
|
45
|
+
},
|
46
|
+
"subject": {
|
47
|
+
"reference": "http://example.org/fhir/Patient/example"
|
48
|
+
},
|
49
|
+
"authoredOn": "2019-02-15",
|
50
|
+
"requester": {
|
51
|
+
"reference": "http://example.org/fhir/PractitionerRole/example"
|
52
|
+
}
|
53
|
+
}
|
54
|
+
}
|
55
|
+
]
|
56
|
+
}
|
57
|
+
]
|
58
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Create/Update Coverage Information Card",
|
3
|
+
"detail": "This is a Create/Update Coverage Information Card which is sent when the CRD server is aware of additional coverage that is relevant to the current/proposed activity or has updates/corrections to make to the information held by the CRD Client",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"selectionBehavior": "any",
|
15
|
+
"suggestions": [
|
16
|
+
{
|
17
|
+
"label": "Create/Update coverage information"
|
18
|
+
}
|
19
|
+
]
|
20
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{
|
2
|
+
"summary": "External Reference Card",
|
3
|
+
"detail": "This is an External Reference Card containing one or more links to external web pages, PDFs, or other resources that provide relevant coverage information.",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "guideline",
|
11
|
+
"display": "Guideline"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"links": [
|
15
|
+
{
|
16
|
+
"label": "CRD IG External Reference Card Info",
|
17
|
+
"url": "https://build.fhir.org/ig/HL7/davinci-crd/cards.html#external-reference",
|
18
|
+
"type": "absolute"
|
19
|
+
}
|
20
|
+
]
|
21
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Instructions Card",
|
3
|
+
"detail": "This is an Instructions card containing textual guidance to display to the user making the decisions.",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Launch SMART Application Card",
|
3
|
+
"detail": "This is a Launch SMART Application Card which can cause the launching of SMART apps to occur in the context in which they are relevant to patient care and/or to payment-related decision-making.",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"links": [
|
15
|
+
{
|
16
|
+
"label": "Inferno",
|
17
|
+
"url": "INFERNO_PLACEHOLDER",
|
18
|
+
"type": "smart"
|
19
|
+
}
|
20
|
+
]
|
21
|
+
}
|
@@ -0,0 +1,71 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Propose Alternate Request Card",
|
3
|
+
"detail": "This is a Propose Alternate Request Card which contains suggested alternatives to the current proposed therapy",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"selectionBehavior": "any",
|
15
|
+
"suggestions": [
|
16
|
+
{
|
17
|
+
"label": "Replace order with a health assessment first",
|
18
|
+
"actions": [
|
19
|
+
{
|
20
|
+
"type": "create",
|
21
|
+
"description": "Order for patient health assessment",
|
22
|
+
"resource": {
|
23
|
+
"resourceType": "ServiceRequest",
|
24
|
+
"status": "draft",
|
25
|
+
"intent": "order",
|
26
|
+
"category": [
|
27
|
+
{
|
28
|
+
"coding": [
|
29
|
+
{
|
30
|
+
"system": "http://snomed.info/sct",
|
31
|
+
"code": "409063005",
|
32
|
+
"display": "Counselling"
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
36
|
+
],
|
37
|
+
"code": {
|
38
|
+
"coding": [
|
39
|
+
{
|
40
|
+
"system": "http://snomed.info/sct",
|
41
|
+
"code": "225885004",
|
42
|
+
"display": "Health assessment (procedure)"
|
43
|
+
}
|
44
|
+
]
|
45
|
+
},
|
46
|
+
"subject": {
|
47
|
+
"reference": "http://example.org/fhir/Patient/123"
|
48
|
+
},
|
49
|
+
"occurrenceTiming": {
|
50
|
+
"repeat": {
|
51
|
+
"boundsDuration": {
|
52
|
+
"value": 3,
|
53
|
+
"unit": "months",
|
54
|
+
"system": "http://unitsofmeasure.org",
|
55
|
+
"code": "mo"
|
56
|
+
},
|
57
|
+
"frequency": 1,
|
58
|
+
"period": 1,
|
59
|
+
"periodUnit": "mo"
|
60
|
+
}
|
61
|
+
},
|
62
|
+
"authoredOn": "2019-02-15",
|
63
|
+
"requester": {
|
64
|
+
"reference": "http://example.org/fhir/PractitionerRole/987"
|
65
|
+
}
|
66
|
+
}
|
67
|
+
}
|
68
|
+
]
|
69
|
+
}
|
70
|
+
]
|
71
|
+
}
|
@@ -0,0 +1,227 @@
|
|
1
|
+
{
|
2
|
+
"summary": "Request Form Completion Card",
|
3
|
+
"detail": "This is a Request Form Completion Card which indicates that there are forms that need to be completed.",
|
4
|
+
"indicator": "info",
|
5
|
+
"source": {
|
6
|
+
"label": "Inferno",
|
7
|
+
"url": "https://inferno.healthit.gov/",
|
8
|
+
"topic": {
|
9
|
+
"system": "http://hl7.org/fhir/us/davinci-crd/CodeSystem/temp",
|
10
|
+
"code": "coverage-info",
|
11
|
+
"display": "Coverage Information"
|
12
|
+
}
|
13
|
+
},
|
14
|
+
"selectionBehavior": "any",
|
15
|
+
"suggestions": [
|
16
|
+
{
|
17
|
+
"label" : "Add 'completion of the ABC form' to your task list (possibly for reassignment)",
|
18
|
+
"actions" : [
|
19
|
+
{
|
20
|
+
"type" : "create",
|
21
|
+
"description" : "Add version 2 of the XYZ form to the clinical system's repository (if it doesn't already exist)",
|
22
|
+
"resource" : {
|
23
|
+
"resourceType": "Questionnaire",
|
24
|
+
"id": "XYZ",
|
25
|
+
"url": "http://example.org/Questionnaire/XYZ",
|
26
|
+
"title": "Cancer Quality Forum Questionnaire XYZ",
|
27
|
+
"version": 2,
|
28
|
+
"status": "active",
|
29
|
+
"subjectType": [
|
30
|
+
"Patient"
|
31
|
+
],
|
32
|
+
"date": "2012-01",
|
33
|
+
"item": [
|
34
|
+
{
|
35
|
+
"linkId": "1",
|
36
|
+
"code": [
|
37
|
+
{
|
38
|
+
"system": "http://example.org/system/code/sections",
|
39
|
+
"code": "COMORBIDITY"
|
40
|
+
}
|
41
|
+
],
|
42
|
+
"type": "group",
|
43
|
+
"item": [
|
44
|
+
{
|
45
|
+
"linkId": "1.1",
|
46
|
+
"code": [
|
47
|
+
{
|
48
|
+
"system": "http://example.org/system/code/questions",
|
49
|
+
"code": "COMORB"
|
50
|
+
}
|
51
|
+
],
|
52
|
+
"prefix": "1",
|
53
|
+
"type": "choice",
|
54
|
+
"answerValueSet": "http://hl7.org/fhir/ValueSet/yesnodontknow",
|
55
|
+
"item": [
|
56
|
+
{
|
57
|
+
"linkId": "1.1.1",
|
58
|
+
"code": [
|
59
|
+
{
|
60
|
+
"system": "http://example.org/system/code/sections",
|
61
|
+
"code": "CARDIAL"
|
62
|
+
}
|
63
|
+
],
|
64
|
+
"type": "group",
|
65
|
+
"enableWhen": [
|
66
|
+
{
|
67
|
+
"question": "1.1",
|
68
|
+
"operator": "=",
|
69
|
+
"answerCoding": {
|
70
|
+
"system": "http://terminology.hl7.org/CodeSystem/v2-0136",
|
71
|
+
"code": "Y"
|
72
|
+
}
|
73
|
+
}
|
74
|
+
],
|
75
|
+
"item": [
|
76
|
+
{
|
77
|
+
"linkId": "1.1.1.1",
|
78
|
+
"code": [
|
79
|
+
{
|
80
|
+
"system": "http://example.org/system/code/questions",
|
81
|
+
"code": "COMORBCAR"
|
82
|
+
}
|
83
|
+
],
|
84
|
+
"prefix": "1.1",
|
85
|
+
"type": "choice",
|
86
|
+
"answerValueSet": "http://hl7.org/fhir/ValueSet/yesnodontknow",
|
87
|
+
"item": [
|
88
|
+
{
|
89
|
+
"linkId": "1.1.1.1.1",
|
90
|
+
"code": [
|
91
|
+
{
|
92
|
+
"system": "http://example.org/system/code/questions",
|
93
|
+
"code": "COMCAR00",
|
94
|
+
"display": "Angina Pectoris"
|
95
|
+
},
|
96
|
+
{
|
97
|
+
"system": "http://snomed.info/sct",
|
98
|
+
"code": "194828000",
|
99
|
+
"display": "Angina (disorder)"
|
100
|
+
}
|
101
|
+
],
|
102
|
+
"prefix": "1.1.1",
|
103
|
+
"type": "choice",
|
104
|
+
"answerValueSet": "http://hl7.org/fhir/ValueSet/yesnodontknow"
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"linkId": "1.1.1.1.2",
|
108
|
+
"code": [
|
109
|
+
{
|
110
|
+
"system": "http://snomed.info/sct",
|
111
|
+
"code": "22298006",
|
112
|
+
"display": "Myocardial infarction (disorder)"
|
113
|
+
}
|
114
|
+
],
|
115
|
+
"prefix": "1.1.2",
|
116
|
+
"type": "choice",
|
117
|
+
"answerValueSet": "http://hl7.org/fhir/ValueSet/yesnodontknow"
|
118
|
+
}
|
119
|
+
]
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"linkId": "1.1.1.2",
|
123
|
+
"code": [
|
124
|
+
{
|
125
|
+
"system": "http://example.org/system/code/questions",
|
126
|
+
"code": "COMORBVAS"
|
127
|
+
}
|
128
|
+
],
|
129
|
+
"prefix": "1.2",
|
130
|
+
"type": "choice",
|
131
|
+
"answerValueSet": "http://hl7.org/fhir/ValueSet/yesnodontknow"
|
132
|
+
}
|
133
|
+
]
|
134
|
+
}
|
135
|
+
]
|
136
|
+
}
|
137
|
+
]
|
138
|
+
},
|
139
|
+
{
|
140
|
+
"linkId": "2",
|
141
|
+
"code": [
|
142
|
+
{
|
143
|
+
"system": "http://example.org/system/code/sections",
|
144
|
+
"code": "HISTOPATHOLOGY"
|
145
|
+
}
|
146
|
+
],
|
147
|
+
"type": "group",
|
148
|
+
"item": [
|
149
|
+
{
|
150
|
+
"linkId": "2.1",
|
151
|
+
"code": [
|
152
|
+
{
|
153
|
+
"system": "http://example.org/system/code/sections",
|
154
|
+
"code": "ABDOMINAL"
|
155
|
+
}
|
156
|
+
],
|
157
|
+
"type": "group",
|
158
|
+
"item": [
|
159
|
+
{
|
160
|
+
"linkId": "2.1.2",
|
161
|
+
"code": [
|
162
|
+
{
|
163
|
+
"system": "http://example.org/system/code/questions",
|
164
|
+
"code": "STADPT",
|
165
|
+
"display": "pT category"
|
166
|
+
}
|
167
|
+
],
|
168
|
+
"type": "choice"
|
169
|
+
}
|
170
|
+
]
|
171
|
+
}
|
172
|
+
]
|
173
|
+
}
|
174
|
+
]
|
175
|
+
},
|
176
|
+
"extension": {
|
177
|
+
"davinci-crd.if-none-exist": "url=http://example.org/Questionnaire/XYZ&version=2"
|
178
|
+
}
|
179
|
+
},
|
180
|
+
{
|
181
|
+
"type" : "create",
|
182
|
+
"description" : "Add 'Complete ABC form' to the task list",
|
183
|
+
"resource" : {
|
184
|
+
"resourceType" : "Task",
|
185
|
+
"status" : "ready",
|
186
|
+
"intent" : "order",
|
187
|
+
"code" : {
|
188
|
+
"coding" : [
|
189
|
+
{
|
190
|
+
"system" : "http://hl7.org/fhir/uv/sdc/CodeSystem/temp",
|
191
|
+
"code" : "complete-questionnaire"
|
192
|
+
}
|
193
|
+
]
|
194
|
+
},
|
195
|
+
"description" : "Complete XYZ form for local retention",
|
196
|
+
"for" : {
|
197
|
+
"reference" : "http://example.org/fhir/Patient/123"
|
198
|
+
},
|
199
|
+
"authoredOn" : "2018-08-09",
|
200
|
+
"input" : [
|
201
|
+
{
|
202
|
+
"type" : {
|
203
|
+
"text" : "questionnaire"
|
204
|
+
},
|
205
|
+
"valueCanonical" : "http://example.org/Questionnaire/XYZ|2"
|
206
|
+
},
|
207
|
+
{
|
208
|
+
"type" : {
|
209
|
+
"text" : "afterCompletion"
|
210
|
+
},
|
211
|
+
"valueCodeableConcept" : {
|
212
|
+
"coding" : [
|
213
|
+
{
|
214
|
+
"system" : "http://example.org/fhir/CodeSystem/SomeCodes",
|
215
|
+
"code" : "987",
|
216
|
+
"display" : "Local Use"
|
217
|
+
}
|
218
|
+
]
|
219
|
+
}
|
220
|
+
}
|
221
|
+
]
|
222
|
+
}
|
223
|
+
}
|
224
|
+
]
|
225
|
+
}
|
226
|
+
]
|
227
|
+
}
|