Difference between revisions of "Operations"
From Hiasobi - FHIR
(→Patient) |
Brett Esler (Talk | contribs) |
||
Line 6: | Line 6: | ||
<tr><td><b>$everything</b><br>Retrieve a complete patient summary as a bundle for a specific patient.<br>As per http://hl7.org/implement/standards/FHIR-Develop/patient-operations.html - now includes selected observations from history. Blood Pressure, Height, Weight, BMI, Waist Circumference and Lipids. | <tr><td><b>$everything</b><br>Retrieve a complete patient summary as a bundle for a specific patient.<br>As per http://hl7.org/implement/standards/FHIR-Develop/patient-operations.html - now includes selected observations from history. Blood Pressure, Height, Weight, BMI, Waist Circumference and Lipids. | ||
− | <pre>[base]/Patient/[id]/$everything</pre> | + | <pre>GET [base]/Patient/[id]/$everything</pre> |
</td></tr> | </td></tr> | ||
Line 13: | Line 13: | ||
* patient has any of the conditions provided | * patient has any of the conditions provided | ||
* last visit occurs before or after (as specified) date | * last visit occurs before or after (as specified) date | ||
− | <pre>[base]/Patient/[id]/$nps_current_patient?current_practitioner=<id>[&current_condition=<code> [,<code> [,..]]][&last_visit=[<][<=][>][>=]<yyyy-MM-dd>]</pre> | + | <pre>GET [base]/Patient/[id]/$nps_current_patient?current_practitioner=<id>[&current_condition=<code> [,<code> [,..]]][&last_visit=[<][<=][>][>=]<yyyy-MM-dd>]</pre> |
</td></tr> | </td></tr> | ||
+ | </table> | ||
+ | |||
+ | ==Questionnaire== | ||
+ | |||
+ | <table border="1" cellpadding=10> | ||
+ | <tr><td><b>$populate</b> generates a QuestionnaireResponse based on the Questionnaire content and content in the clinical system.<br> | ||
+ | <pre>POST [base]/[id]/$populate</pre> | ||
+ | </td></tr> | ||
+ | <tr><td></td></tr> | ||
</table> | </table> |
Revision as of 09:25, 11 March 2016
Operations are query/procedures that can be performed on the servers
Patient
$everything Retrieve a complete patient summary as a bundle for a specific patient. As per http://hl7.org/implement/standards/FHIR-Develop/patient-operations.html - now includes selected observations from history. Blood Pressure, Height, Weight, BMI, Waist Circumference and Lipids. GET [base]/Patient/[id]/$everything |
$nps_current_patient Custom NPS active patient that 'belongs-to' the practitioner - custom query; candidate for a general population query
GET [base]/Patient/[id]/$nps_current_patient?current_practitioner=<id>[¤t_condition=<code> [,<code> [,..]]][&last_visit=[<][<=][>][>=]<yyyy-MM-dd>] |
Questionnaire
$populate generates a QuestionnaireResponse based on the Questionnaire content and content in the clinical system.POST [base]/[id]/$populate |