get_patient_procedures
Retrieve detailed records of procedures performed on a patient within a specified date range and status using Google Cloud Healthcare API. Ideal for tracking clinical interventions and patient care history efficiently.
Instructions
Get procedures performed on a patient
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dateFrom | No | YYYY-MM-DD | |
dateTo | No | YYYY-MM-DD | |
patientId | Yes | ||
status | No |
Input Schema (JSON Schema)
{
"properties": {
"dateFrom": {
"description": "YYYY-MM-DD",
"type": "string"
},
"dateTo": {
"description": "YYYY-MM-DD",
"type": "string"
},
"patientId": {
"type": "string"
},
"status": {
"enum": [
"preparation",
"in-progress",
"completed",
"entered-in-error"
],
"type": "string"
}
},
"required": [
"patientId"
],
"type": "object"
}