acknowledge_alert
Mark clinical alerts as reviewed to maintain accurate patient care tracking and ensure timely follow-up on important healthcare notifications.
Instructions
Acknowledge a clinical alert
Input Schema
Name | Required | Description | Default |
---|---|---|---|
acknowledged_by | Yes | User acknowledging the alert | |
alert_id | Yes | Alert ID |
Input Schema (JSON Schema)
{
"properties": {
"acknowledged_by": {
"description": "User acknowledging the alert",
"type": "string"
},
"alert_id": {
"description": "Alert ID",
"type": "string"
}
},
"required": [
"alert_id",
"acknowledged_by"
],
"type": "object"
}