Stream: cds hooks
Topic: sprint 1
Josh Mandel (Mar 21 2016 at 18:41):
I've added https://github.com/cds-hooks/cds-hooks/issues/10 to the list of issues for Sprint 1. In short: it's an API design question about how to convey metadata.
Josh Mandel (Mar 21 2016 at 18:42):
I've implemented both in my test services. The test harness currently has a "quick-add" button that uses$cds-hook-metadata
.
Josh Mandel (Mar 21 2016 at 18:42):
I kind of like it better than hooking into the conformance statement and using extensions (I think the operation is shorter and more to the point), but I'd like feedback on this.
Kevin Shekleton (Mar 21 2016 at 19:54):
Deciding on the metadata API is good though I'd really like to look at the APIs & terminology holistically. Some of this I covered in my huge mailing list thread (don't bother responding there, I can move portions of that to a github issue).
Kevin Shekleton (Mar 21 2016 at 20:20):
Not to keep piling on work in sprint 1, but I've logged (what I hope) is a quick terminology proposal (activity -> hook) in https://github.com/cds-hooks/cds-hooks/issues/13
Kalyani Yerra (Mar 21 2016 at 22:07):
@Josh Mandel Thank you for the test harness / Quick Add button. When I send multiple activities/hooks as part of my metadata, I am only seeing one hook configured? Multiple activities should be part of the metadata. correct?
{
"resourceType":"Parameters",
"parameter":[
{
"name":"name",
"valueString":"Premier AKI CDS Hook Service"
},
{
"name":"description",
"valueString":"CDS Hook Service to evaluate a patient's AKI risk"
},
{
"name":"activity",
"valueCoding":{
"system":"http://cds-hooks.smarthealthit.org/activity",
"code":"patient-view"
}
},
{
"name":"activity",
"valueCoding":{
"system":"http://cds-hooks.smarthealthit.org/activity",
"code":"medication-prescribe"
}
}
]
}
Josh Mandel (Mar 21 2016 at 22:14):
Currently the quick add button implements the "cds-hook-metadata" spec, which only includes a single activity. We'll align/fix this when we resolve #10.
Last updated: Apr 12 2022 at 19:14 UTC