# Validate Consignment Order Prerequisites

> Perform Validate Consignment Order Prerequisites through Consignment Intake.

Source: [https://genhealth.ai/docs/workflows/integrations/consignment-intake/validate_consignment_order_create_prerequisites](https://genhealth.ai/docs/workflows/integrations/consignment-intake/validate_consignment_order_create_prerequisites)

Integration: [Consignment Intake](https://genhealth.ai/docs/workflows/integrations/consignment-intake.md)

- Handler: `validate_consignment_order_create_prerequisites`

## Inputs

- `packet_context` — Packet Context (json, required)
  Required JSON value.
- `billing_location_ids` — Billing Location Ids (json, required)
  Required JSON value.
- `order_defaults` — Order Defaults (json, required)
  Required JSON value.

## Outputs

- `success` — Success
- `ready_for_patient_insurance_write` — Ready For Patient Insurance Write
- `review_required` — Review Required
- `review_reason` — Review Reason
- `review_reasons` — Review Reasons
- `error` — Error
- `error_kind` — Error 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

```json
{
  "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

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "success": {},
    "error_kind": {},
    "review_reason": {},
    "review_reasons": {},
    "review_required": {},
    "ready_for_patient_insurance_write": {}
  },
  "additionalProperties": true
}
```
