# Extract Consignment Item Sizes

> Perform Extract Consignment Item Sizes through Consignment Intake.

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

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

- Handler: `extract_consignment_item_sizes`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.
- `item_codes` — Item Codes (json, required)
  Required JSON value.

## Outputs

- `outcome` — Outcome
- `size_box_count` — Size Box Count
- `paired_count` — Paired Count
- `unpaired_count` — Unpaired Count
- `sizes` — Sizes
- `item_sizes` — Item Sizes
- `apply_sizes` — Apply Sizes
- `mode` — Mode
- `shadow_mode` — Shadow Mode

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": [
    "document_id",
    "item_codes"
  ],
  "properties": {
    "item_codes": {
      "description": "Required JSON value.",
      "x-workflow-field-type": "json"
    },
    "document_id": {
      "description": "Required literal value or workflow expression.",
      "x-workflow-field-type": "expression"
    }
  },
  "additionalProperties": false
}
```

### Output schema

```json
{
  "type": "object",
  "properties": {
    "mode": {},
    "sizes": {},
    "outcome": {},
    "item_sizes": {},
    "apply_sizes": {},
    "shadow_mode": {},
    "paired_count": {},
    "size_box_count": {},
    "unpaired_count": {}
  },
  "additionalProperties": true
}
```
