Validate Consignment Order Prerequisites
Perform Validate Consignment Order Prerequisites through Consignment Intake.
validate_consignment_order_create_prerequisiteswrite
Inputs
- Packet Context
packet_contextjsonrequiredRequired JSON value.
- Billing Location Ids
billing_location_idsjsonrequiredRequired JSON value.
- Order Defaults
order_defaultsjsonrequiredRequired JSON value.
Outputs
successSuccessready_for_patient_insurance_writeReady For Patient Insurance Writereview_requiredReview Requiredreview_reasonReview Reasonreview_reasonsReview ReasonserrorErrorerror_kindError Kind
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": [
"packet_context",
"billing_location_ids",
"order_defaults"
],
"properties": {
"order_defaults": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"packet_context": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
},
"billing_location_ids": {
"description": "Required JSON value.",
"x-workflow-field-type": "json"
}
},
"additionalProperties": false
}Output schema
{
"type": "object",
"properties": {
"error": {},
"success": {},
"error_kind": {},
"review_reason": {},
"review_reasons": {},
"review_required": {},
"ready_for_patient_insurance_write": {}
},
"additionalProperties": true
}