Ensure Patient Alert
Perform Ensure Patient Alert through ClaimSoft.
claimsoft_ensure_patient_alertwriteclaimsoft
Inputs
- Patient Id
patient_idexpressionrequiredRequired literal value or workflow expression.
- Alert Type Id
alert_type_idtextrequiredRequired text value.
- Comment Marker
comment_markertextrequiredRequired text value.
- Comment Text
comment_texttextrequiredRequired text value.
- Document Id
document_idtextOptional text value.
Outputs
successSuccesserrorError
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- No
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"required": [
"patient_id",
"alert_type_id",
"comment_marker",
"comment_text"
],
"properties": {
"patient_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_id": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"comment_text": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"alert_type_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"comment_marker": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {}
},
"additionalProperties": true
}