Persist Inbox Document
Perform Persist Inbox Document through Parachute Health.
parachute_persist_inbox_documentwriteparachute
Inputs
- Inbox Document Id
inbox_document_idtextrequiredRequired text value.
- Documents
documentsexpressionrequiredRequired literal value or workflow expression.
Outputs
document_idDocument Idpage_countPage Countsource_document_countSource Document CountsuccessSuccesserrorErrorfailure_categoryFailure Category
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": [
"inbox_document_id",
"documents"
],
"properties": {
"documents": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"inbox_document_id": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"page_count": {},
"document_id": {},
"failure_category": {},
"source_document_count": {}
},
"additionalProperties": true
}