# Verify Consignment Product Slot Lines

> Perform Verify Consignment Product Slot Lines through Consignment Intake.

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

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

- Handler: `verify_consignment_product_slot_lines`

## Inputs

- `packet_fields` — Packet Fields (json, required)
  Required JSON value.
- `document_text` — Document Text (expression)
  Optional literal value or workflow expression.
- `prior_order_write_status` — Prior Order Write Status (expression)
  Optional literal value or workflow expression.

## Outputs

- `success` — Success
- `cleared` — Cleared
- `outcome` — Outcome
- `filled_slot_count` — Filled Slot Count
- `document_slot_count` — Document Slot Count
- `extracted_line_count` — Extracted Line Count
- `dropped_line_count` — Dropped Line Count
- `unexpected_line_count` — Unexpected Line Count
- `product_slot_line_verification` — Product Slot Line Verification
- `review_required` — Review Required
- `review_reason` — Review Reason
- `review_reasons` — Review Reasons

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_fields"
  ],
  "properties": {
    "document_text": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    },
    "packet_fields": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "prior_order_write_status": {
      "description": "Optional literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "cleared": {},
    "outcome": {},
    "success": {},
    "review_reason": {},
    "review_reasons": {},
    "review_required": {},
    "filled_slot_count": {},
    "dropped_line_count": {},
    "document_slot_count": {},
    "extracted_line_count": {},
    "unexpected_line_count": {},
    "product_slot_line_verification": {}
  },
  "additionalProperties": true
}
```
