Add Episode Note
Perform Add Episode Note through CareWebQI.
carewebqi_add_episode_notewritecarewebqi
Inputs
- Episode Id
episode_idexpressionrequiredRequired literal value or workflow expression.
- Subject
subjectselectrequireddynamic optionsRequired selected identifier or value. Retrieve allowed values from the dynamic options endpoint.
- Note Text
note_texttextarearequiredRequired text value.
- Include Discharged
include_dischargedbooleanOptional true-or-false value.
Default:
true
Outputs
successSuccesssavedSavedexitedExitedepisode_idEpisode IdsubjectSubjectsubject_codeSubject Codenote_updated_atNote Updated Atnote_authorNote AuthorerrorError
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": [
"episode_id",
"subject",
"note_text"
],
"properties": {
"subject": {
"type": "string",
"description": "Required selected identifier or value. Retrieve allowed values from the dynamic options endpoint.",
"x-dynamic-options": true,
"x-workflow-field-type": "select"
},
"note_text": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "textarea"
},
"episode_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"include_discharged": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"saved": {},
"exited": {},
"subject": {},
"success": {},
"episode_id": {},
"note_author": {},
"subject_code": {},
"note_updated_at": {}
},
"additionalProperties": true
}