Build Consignment Sender Reply Plans
Perform Build Consignment Sender Reply Plans through Consignment Intake.
build_consignment_sender_reply_planswrite
Inputs
- Group Email
group_emailtextrequiredRequired text value.
- Attachment Collection
attachment_collectionjsonrequiredRequired JSON value.
- Subject Metadata
subject_metadatajsonrequiredRequired JSON value.
- Message Fetch Results
message_fetch_resultsjsonrequiredRequired JSON value.
- Status Summary
status_summaryjsonrequiredRequired JSON value.
- Document Loop Results
document_loop_resultsjsonrequiredRequired JSON value.
- Targeted Reprocess
targeted_reprocessbooleanrequiredRequired true-or-false value.
Outputs
successSuccessreply_plansReply Plansreply_countReply Countsuppressed_countSuppressed CounterrorError
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": [
"group_email",
"attachment_collection",
"subject_metadata",
"message_fetch_results",
"status_summary",
"document_loop_results",
"targeted_reprocess"
],
"properties": {
"group_email": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"status_summary": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"subject_metadata": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"targeted_reprocess": {
"type": "boolean",
"description": "Required true-or-false value.",
"x-workflow-field-type": "boolean"
},
"attachment_collection": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"document_loop_results": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"message_fetch_results": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"reply_count": {},
"reply_plans": {},
"suppressed_count": {}
},
"additionalProperties": true
}