Ensure Global Comment
Perform Ensure Global Comment through Parachute Health.
parachute_ensure_global_commentwriteparachute
Inputs
- Order Id
order_idexpressionrequiredRequired literal value or workflow expression.
- Supplier Id
supplier_idexpressionOptional literal value or workflow expression.
- Content
contenttextarearequiredRequired text value.
- Require Completed Signature
require_completed_signaturebooleanOptional true-or-false value.
Default:
false
Outputs
successSuccessorder_idOrder Idsupplier_idSupplier IdcontentContentcreatedCreatedalready_existsAlready Existscomment_idComment Idmatched_atMatched Atchecked_event_countChecked Event Countglobal_comment_countGlobal Comment 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": [
"order_id",
"content"
],
"properties": {
"content": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "textarea"
},
"order_id": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"supplier_id": {
"description": "Optional literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"require_completed_signature": {
"type": "boolean",
"default": false,
"description": "Optional true-or-false value.",
"x-workflow-field-type": "boolean"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"content": {},
"created": {},
"success": {},
"order_id": {},
"comment_id": {},
"matched_at": {},
"supplier_id": {},
"error_message": {},
"already_exists": {},
"checked_event_count": {},
"global_comment_count": {}
},
"additionalProperties": true
}