Summarize Intake Batch
Perform Summarize Intake Batch through GenHealth.
intake_summarize_batchwrite
Inputs
- Selection Payload
selection_payloadjsonOptional JSON value.
- Loop Results
loop_resultsjsonOptional JSON value.
- Dispatch Payload
dispatch_payloadjsonOptional JSON value.
- Dry Run
dry_runbooleanOptional true-or-false value.
Default:
false - Notify
notifybooleanOptional true-or-false value.
Default:
true - Channel
channeltextOptional text value.
- Output Path
output_pathtextOptional text value.
- To Emails
to_emailstextOptional text value.
Outputs
statusStatushtmlHtmloutput_pathOutput Pathemailed_toEmailed Toemail_subjectEmail Subjectslack_messageSlack Messagefound_countFound Countskipped_countSkipped Countprocessed_countProcessed Countready_countReady Countneeds_review_countNeeds Review Countfailed_countFailed Countdispatch_countDispatch Countremaining_countRemaining Countslack_sentSlack Sentslack_skippedSlack Skipped
Output schema completeness: best_effort_declared
Safety
- External effect
- write
- Confirmation recommended
- No
- Retry safe
- No
- Dry run supported
- Yes
Schemas
These schemas are first-pass authoring guidance. Runtime validation remains authoritative.
Input schema
{
"type": "object",
"properties": {
"notify": {
"type": "boolean",
"default": true,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"channel": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"dry_run": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
},
"to_emails": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"output_path": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
},
"loop_results": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"dispatch_payload": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
},
"selection_payload": {
"description": "Optional JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"html": {},
"status": {},
"emailed_to": {},
"slack_sent": {},
"found_count": {},
"output_path": {},
"ready_count": {},
"failed_count": {},
"email_subject": {},
"skipped_count": {},
"slack_message": {},
"slack_skipped": {},
"dispatch_count": {},
"processed_count": {},
"remaining_count": {},
"needs_review_count": {}
},
"additionalProperties": true
}