Prepare Brightree Document Uploads
Perform Prepare Brightree Document Uploads through Tomorrow Health.
tomorrow_health_prepare_brightree_document_uploadswrite
Inputs
- Document Id
document_idexpressionrequiredRequired literal value or workflow expression.
- Patient Key
patient_keyexpressionOptional literal value or workflow expression.
- Source Document Ids
source_document_idsexpressionOptional literal value or workflow expression.
- Raw Document Ids
raw_document_idsexpressionOptional literal value or workflow expression.
- Document Type Override
document_type_overridetextOptional text value.
Outputs
successSuccessdocument_idDocument IddocumentsDocumentsdocument_countDocument Countskipped_countSkipped Countfailed_countFailed Counterror_messageError Message
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": [
"document_id"
],
"properties": {
"document_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"patient_key": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"raw_document_ids": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"source_document_ids": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"document_type_override": {
"type": "string",
"description": "Optional text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"success": {},
"documents": {},
"document_id": {},
"failed_count": {},
"error_message": {},
"skipped_count": {},
"document_count": {}
},
"additionalProperties": true
}