Select Order Candidates
Perform Select Order Candidates through Parachute Health.
parachute_select_order_candidateswriteparachute
Inputs
- Orders
ordersexpressionrequiredRequired literal value or workflow expression.
- Max Orders
max_ordersnumberOptional numeric value.
Default:
1 - Max Scan
max_scannumberOptional numeric value.
Default:
50 - Order Created Marker Template
order_created_marker_templatetextrequiredRequired text value.
- Action Required Marker Template
action_required_marker_templatetextrequiredRequired text value.
- Retry Marker Template
retry_marker_templatetextrequiredRequired text value.
- Legacy Processed Marker Template
legacy_processed_marker_templatetextrequiredRequired text value.
Outputs
ordersOrdersselected_countSelected Countscanned_countScanned Countskipped_state_countsSkipped State Counts
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": [
"orders",
"order_created_marker_template",
"action_required_marker_template",
"retry_marker_template",
"legacy_processed_marker_template"
],
"properties": {
"orders": {
"description": "Required literal value or workflow expression.",
"x-workflow-field-type": "expression"
},
"max_scan": {
"type": "number",
"default": 50,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"max_orders": {
"type": "number",
"default": 1,
"description": "Optional numeric value.",
"x-workflow-field-type": "number"
},
"retry_marker_template": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"order_created_marker_template": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"action_required_marker_template": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
},
"legacy_processed_marker_template": {
"type": "string",
"description": "Required text value.",
"x-workflow-field-type": "text"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"orders": {},
"scanned_count": {},
"selected_count": {},
"skipped_state_counts": {}
},
"additionalProperties": true
}