Post PCP Auth Missing Alert
Perform Post PCP Auth Missing Alert through eClinicalWorks.
ecw_post_pcp_auth_missing_alertwriteeclinicalworks
Inputs
- Patient Id
patient_idtextrequiredRequired text value.
- Dos
dosdaterequiredRequired date in YYYY-MM-DD format.
- Visit Type
visit_typetextOptional text value.
Outputs
successSuccesshaltedHalted
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",
"dos"
],
"properties": {
"dos": {
"type": "string",
"format": "date",
"description": "Required date in YYYY-MM-DD format.",
"x-workflow-field-type": "date"
},
"patient_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"visit_type": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"halted": {},
"success": {}
},
"additionalProperties": true
}