# Hydrate Consignment Reprocess Context

> Perform Hydrate Consignment Reprocess Context through Consignment Intake.

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

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

- Handler: `hydrate_consignment_reprocess_context`

## Inputs

- `document_id` — Document Id (expression, required)
  Required literal value or workflow expression.

## Outputs

- `success` — Success
- `parent_document_id` — Parent Document Id
- `child_document_id` — Child Document Id
- `order_identity_version` — Order Identity Version
- `order_identity_document_id` — Order Identity Document Id
- `content_sha256` — Content Sha256
- `packet_index` — Packet Index
- `category` — Category
- `title` — Title
- `split_review_required` — Split Review Required
- `split_review_reason` — Split Review Reason
- `email_body_salesperson` — Email Body Salesperson
- `email_inventory_source` — Email Inventory Source
- `order_write_status` — Order Write Status
- `error` — Error

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

### Output schema

```json
{
  "type": "object",
  "properties": {
    "error": {},
    "title": {},
    "success": {},
    "category": {},
    "packet_index": {},
    "content_sha256": {},
    "child_document_id": {},
    "order_write_status": {},
    "parent_document_id": {},
    "split_review_reason": {},
    "split_review_required": {},
    "email_body_salesperson": {},
    "email_inventory_source": {},
    "order_identity_version": {},
    "order_identity_document_id": {}
  },
  "additionalProperties": true
}
```
